Hide Forgot
Created attachment 796907 [details] deployed war with webservice Description of problem: CLI - undefine operation on wsdl-host attribute of webservices subsystem results in reload required but affects existing deployments immediately Version-Release number of selected component (if applicable): 6.2.0.ER1 How reproducible: always Steps to Reproduce: 1. start AS ./jboss-eap-6.1/bin/standalone.sh 2. modify wsdl host to use other value then default ./jboss-eap-6.1/bin/jboss-cli.sh -c "/subsystem=webservices/:write-attribute(name=wsdl-host,value=test.domain.com" 3. reload server as required by previous operation ./jboss-eap-6.1/bin/jboss-cli.sh -c "reload" 4. deploy war with web service ./jboss-eap-6.1/bin/jboss-cli.sh -c "deploy /tmp/CLIWebservicesWsdlPortTestCase.war" 5. undefine wsdl host ./jboss-eap-6.1/bin/jboss-cli.sh -c "/subsystem=webservices/:undefine-attribute(name=wsdl-host)" Actual results: Result {"outcome" => "success","response-headers" => {"operation-requires-reload" => true,"process-state" => "reload-required"}} soapAddress in generated wsdl <soap:address location="http://localhost:8080/CLIWebservicesWsdlPortTestCase/AnnotatedSecurityService"/>, Expected results: <soap:address location="http://test.domain.com:8080/CLIWebservicesWsdlPortTestCase/AnnotatedSecurityService"/>
Pull request: https://github.com/jbossas/jboss-eap/pull/479 Upstream JIRA: https://issues.jboss.org/browse/WFLY-1759 Upstream PRs: * https://github.com/wildfly/wildfly/pull/5118 * https://github.com/wildfly/wildfly/pull/5162
verified with procedure described in description that wsdl retrived from http://localhost:8080/CLIWebservicesWsdlPortTestCase/AnnotatedSecurityService?wsdl contains expected <soap:address location="http://test.domain.com:8080/CLIWebservicesWsdlPortTestCase/AnnotatedSecurityService"/>