Currently JBossWS/CXF have the ability to configure a custom host and/or port to use when populating the soap:address and schemaLocation items in a WSDL. This request is to add the ability to configure a custom URL path in addition to the host and port.

            [JBWS-3750] Add ability to rewrite path in WSDL URL references

            r searls added a comment -

            Added test for wsdl-path-rewrite-rule test to (wfly) ./testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ws/WSAttributesChangesTestCase.java
            Submitted https://github.com/asoldano/wildfly/pull/14

            r searls added a comment - Added test for wsdl-path-rewrite-rule test to (wfly) ./testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ws/WSAttributesChangesTestCase.java Submitted https://github.com/asoldano/wildfly/pull/14

            r searls added a comment -

            Reverted commit in https://svn.jboss.org/repos/jbossws/container/wildfly80/branches/jbossws-wildfly800
            from revision 18824 back to 18812. New, "Committed revision 18832."

            r searls added a comment - Reverted commit in https://svn.jboss.org/repos/jbossws/container/wildfly80/branches/jbossws-wildfly800 from revision 18824 back to 18812. New, "Committed revision 18832."

            r searls added a comment -

            repo's spi and common's commit has been pushed to nexus so I made the cxf-tunk commit
            https://svn.jboss.org/repos/jbossws/stack/cxf/trunk
            Committed revision 18830.

            Also the needed addition to wfly ./build/src/main/resources/docs/schema/jboss-as-webservices_1_3.xsd was squashed in the the pull request.

            r searls added a comment - repo's spi and common's commit has been pushed to nexus so I made the cxf-tunk commit https://svn.jboss.org/repos/jbossws/stack/cxf/trunk Committed revision 18830. Also the needed addition to wfly ./build/src/main/resources/docs/schema/jboss-as-webservices_1_3.xsd was squashed in the the pull request.

            Thanks Rebecca for the documentation additions. I've reverted the change to the WFLY8 section as we won't have another WFLY 8.x version including JBossWS 5 series (the changes to the integration layer does not count here, the doc there is meant for vanilla WFLY 8 version)

            Alessio Soldano added a comment - Thanks Rebecca for the documentation additions. I've reverted the change to the WFLY8 section as we won't have another WFLY 8.x version including JBossWS 5 series (the changes to the integration layer does not count here, the doc there is meant for vanilla WFLY 8 version)

            r searls added a comment -

            r searls added a comment - Added documentation fragments to https://docs.jboss.org/author/display/WFLY8/Web+services+configuration and https://docs.jboss.org/author/display/WFLY9/Web+services+configuration

            r searls added a comment - - edited

            r searls added a comment - - edited Integration of code for jbws-cxf.5.0.0. The following repos with commits. https://source.jboss.org/changelog/JBossWS?cs=18822 (spi) https://source.jboss.org/changelog/JBossWS?cs=18823 (common) https://source.jboss.org/changelog/JBossWS?cs=18824 (800 ASIL) https://github.com/asoldano/wildfly/pull/9 (pull request)

            r searls added a comment -

            Documentation fragment to be added to on-line guides when feature becomes publicly available.

            r searls added a comment - Documentation fragment to be added to on-line guides when feature becomes publicly available.

            r searls added a comment -

            The CXF changes are available in version 3.0.1 and 2.7.12

            r searls added a comment - The CXF changes are available in version 3.0.1 and 2.7.12

            r searls added a comment -

            CXF has accepted the patch for CXF-5792 with some minor changes.
            The refactored WSDLGetUtils was accepted with minor changes.
            The proposed changes to WSDLGetInterceptor were not accepted. Instead
            WSDLGetInterceptor was changed to allow a custom WSDLGetUtils class to be passed
            in through a contextual property,
            WSDLGetUtils utils = (WSDLGetUtils)message.getContextualProperty(WSDLGetUtils.class.getName());
            These changes have been integrated into the CXF master branch.

            I have changed WSDLSoapAddressRewriteInterceptor, WSDLSoapAddressRewriteUtils and EndpointImpl in accordance
            with the CXF changes, confirmed they work, and check-in the code ( https://svn.jboss.org/repos/jbossws/stack/cxf/branches/rsearls).

            r searls added a comment - CXF has accepted the patch for CXF-5792 with some minor changes. The refactored WSDLGetUtils was accepted with minor changes. The proposed changes to WSDLGetInterceptor were not accepted. Instead WSDLGetInterceptor was changed to allow a custom WSDLGetUtils class to be passed in through a contextual property, WSDLGetUtils utils = (WSDLGetUtils)message.getContextualProperty(WSDLGetUtils.class.getName()); These changes have been integrated into the CXF master branch. I have changed WSDLSoapAddressRewriteInterceptor, WSDLSoapAddressRewriteUtils and EndpointImpl in accordance with the CXF changes, confirmed they work, and check-in the code ( https://svn.jboss.org/repos/jbossws/stack/cxf/branches/rsearls ).

            r searls added a comment -

            An enhancement request and patch file was filed in CXF. The patch was created against the
            CXF master branch (i.e., 3.0.1-SNAPSHOT) see
            https://issues.apache.org/jira/browse/CXF-5792 - WSDLGetUtils Customization

            r searls added a comment - An enhancement request and patch file was filed in CXF. The patch was created against the CXF master branch (i.e., 3.0.1-SNAPSHOT) see https://issues.apache.org/jira/browse/CXF-5792 - WSDLGetUtils Customization

            r searls added a comment -

            I don't think this enhancement is going to function the way you intend.
            The format for a URL/URI is [scheme:][//[host]:[port]][path][?query]fragment

            If I have the following services declared in a wsdl
            http://localhost:8080/jaxws-jbws2150/ValidURL
            http://localhost:8080/jaxws-jbws2150/InvalidURL

            then there are 2 unique paths, "jaxws-jbws2150/ValidURL" and "jaxws-jbws2150/InvalidURL".
            This enhancement replaces each path with a single custom path. If I set the custom
            path to "/my-custom-path/foo/bar" the 2 addresses above become
            http://localhost:8080/my-custom-path/foo/bar
            http://localhost:8080/my-custom-path/foo/bar

            Is this what is intended?

            r searls added a comment - I don't think this enhancement is going to function the way you intend. The format for a URL/URI is [scheme:] [// [host] : [port] ] [path] [?query] fragment If I have the following services declared in a wsdl http://localhost:8080/jaxws-jbws2150/ValidURL http://localhost:8080/jaxws-jbws2150/InvalidURL then there are 2 unique paths, "jaxws-jbws2150/ValidURL" and "jaxws-jbws2150/InvalidURL". This enhancement replaces each path with a single custom path. If I set the custom path to "/my-custom-path/foo/bar" the 2 addresses above become http://localhost:8080/my-custom-path/foo/bar http://localhost:8080/my-custom-path/foo/bar Is this what is intended?

            r searls added a comment -

            and needed https://issues.jboss.org/browse/JBWS-3750 for jbossws-wildfly800-server-integration*.jar

            r searls added a comment - and needed https://issues.jboss.org/browse/JBWS-3750 for jbossws-wildfly800-server-integration*.jar

            r searls added a comment -

            Code changes are required in artifacts, jbossws-common, jbossws-cxf-server, jbossws-spi
            and wildfly-webservices-server-integration.

            I've created the following branched repos for these changes.
            https://svn.jboss.org/repos/jbossws/common/branches/rsearls
            https://svn.jboss.org/repos/jbossws/spi/branches/rsearls
            https://svn.jboss.org/repos/jbossws/stack/cxf/branches/rsearls

            r searls added a comment - Code changes are required in artifacts, jbossws-common, jbossws-cxf-server, jbossws-spi and wildfly-webservices-server-integration. I've created the following branched repos for these changes. https://svn.jboss.org/repos/jbossws/common/branches/rsearls https://svn.jboss.org/repos/jbossws/spi/branches/rsearls https://svn.jboss.org/repos/jbossws/stack/cxf/branches/rsearls

            Alessio Soldano added a comment - - edited

            Rebecca, I'm not sure I follow your analysis here, perhaps you can clarify it a bit.

            My idea would be this new feature to be something in JBossWS / WFLY / EAP, possibly with no changes to CXF, unless that's strictly required. This would likely be an extension to the current address rewrite mechanism we have in JBossWS, see org.jboss.wsf.stack.cxf.metadata.MetadataBuilder#processAddressRewrite(...) method.
            If we had a "path" element in the ServerConfig that comes from the AS webservices subsystem management model, that could be used by the SoapAddressRewriteHelper to create the rewritten address. The problem I can see with this approach, atm, is that it won't work properly for the scenario in which auto rewrite is on (that is when the webservice host in the server config is "jbossws.undefined.host"), but we could probably accept this limitation.

            Alessio Soldano added a comment - - edited Rebecca, I'm not sure I follow your analysis here, perhaps you can clarify it a bit. My idea would be this new feature to be something in JBossWS / WFLY / EAP, possibly with no changes to CXF, unless that's strictly required. This would likely be an extension to the current address rewrite mechanism we have in JBossWS, see org.jboss.wsf.stack.cxf.metadata.MetadataBuilder#processAddressRewrite(...) method. If we had a "path" element in the ServerConfig that comes from the AS webservices subsystem management model, that could be used by the SoapAddressRewriteHelper to create the rewritten address. The problem I can see with this approach, atm, is that it won't work properly for the scenario in which auto rewrite is on (that is when the webservice host in the server config is "jbossws.undefined.host"), but we could probably accept this limitation.

            r searls added a comment -

            Location of code changes

            Following the JBossWS custom host and port implementation, org.apache.cxf.transports.http.configuration.HTTPClientPolicy is the location where the new property for custom URI_path should be added. This is a JAXB generated file. The source schema is declared in

            {http://svn.apache.org/repos/asf/cxf/trunk}

            /rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd The "customized path" substitution is best performed in org.apache.cxf.transport.http.HTTPConduit.

            references
            [1] http://www.ietf.org/rfc/rfc2396.txt

            r searls added a comment - Location of code changes Following the JBossWS custom host and port implementation, org.apache.cxf.transports.http.configuration.HTTPClientPolicy is the location where the new property for custom URI_path should be added. This is a JAXB generated file. The source schema is declared in {http://svn.apache.org/repos/asf/cxf/trunk} /rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd The "customized path" substitution is best performed in org.apache.cxf.transport.http.HTTPConduit. references [1] http://www.ietf.org/rfc/rfc2396.txt

              rsearls r searls
              rh-ee-klape Kyle Lape
              Votes:
              1 Vote for this issue
              Watchers:
              5 Start watching this issue

                Created:
                Updated:
                Resolved: