[
https://issues.apache.org/jira/browse/CMIS-908?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14503779#comment-14503779
]
Gregory Melahn commented on CMIS-908:
-------------------------------------
Thanks [~fmui] In our case the server supports soap 1.1 but we also have a
customer that would like to use soap 1.2 so this will help.
> Remove hard-coded references to soap 1.0
> -----------------------------------------
>
> Key: CMIS-908
> URL: https://issues.apache.org/jira/browse/CMIS-908
> Project: Chemistry
> Issue Type: Improvement
> Components: opencmis-client-bindings
> Affects Versions: OpenCMIS 0.12.0
> Reporter: Gregory Melahn
> Assignee: Florian Müller
>
> The method private URL getEndpointUrlFromWsdl(final String wsdlUrl, final
> CmisWebSerivcesService service) in
> org/apache/chemistry/opencmis/client/bindings/spi/webservices/AbstractPortProvider.java
> relies on a hardcoded reference to "http://schemas.xmlsoap.org/wsdl/soap/"
> which unfortunately means that it will fail with a server that is using
> soap12. It would be nice if it could also support soap12 with something
> like ...
> {code}
> NodeList addressList =
> port.getElementsByTagNameNS("http://schemas.xmlsoap.org/wsdl/soap/",
> "address");
> if (addressList.getLength() < 1) {
> addressList =
> port.getElementsByTagNameNS("http://schemas.xmlsoap.org/wsdl/soap12/",
> "address");
> }
> if (addressList.getLength() < 1) {
> throw new CmisRuntimeException("This service has no
> endpoint address: " + service.getServiceName());
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)