Author: kwright
Date: Fri Sep 13 15:02:32 2019
New Revision: 1866911
URL: http://svn.apache.org/viewvc?rev=1866911&view=rev
Log:
Append ?wsdl to all initial URLs to make one particular installation happy.
Modified:
manifoldcf/trunk/connectors/csws/connector/src/main/java/org/apache/manifoldcf/csws/CswsSession.java
Modified:
manifoldcf/trunk/connectors/csws/connector/src/main/java/org/apache/manifoldcf/csws/CswsSession.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/csws/connector/src/main/java/org/apache/manifoldcf/csws/CswsSession.java?rev=1866911&r1=1866910&r2=1866911&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/csws/connector/src/main/java/org/apache/manifoldcf/csws/CswsSession.java
(original)
+++
manifoldcf/trunk/connectors/csws/connector/src/main/java/org/apache/manifoldcf/csws/CswsSession.java
Fri Sep 13 15:02:32 2019
@@ -146,11 +146,11 @@ public class CswsSession
final ClassLoader savedCl = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader());
- this.authService = (authenticationServiceURL != null)?new
Authentication_Service(new URL(authenticationServiceURL), conduitFeature):null;
- this.documentManagementService = (documentManagementServiceURL !=
null)?new DocumentManagement_Service(new URL(documentManagementServiceURL),
conduitFeature):null;
- this.contentServiceService = (contentServiceServiceURL != null)?new
ContentService_Service(new URL(contentServiceServiceURL), conduitFeature):null;
- this.memberServiceService = (memberServiceServiceURL != null)?new
MemberService_Service(new URL(memberServiceServiceURL), conduitFeature):null;
- this.searchServiceService = (searchServiceServiceURL != null)?new
SearchService_Service(new URL(searchServiceServiceURL), conduitFeature):null;
+ this.authService = (authenticationServiceURL != null)?new
Authentication_Service(new URL(authenticationServiceURL + "?wsdl"),
conduitFeature):null;
+ this.documentManagementService = (documentManagementServiceURL !=
null)?new DocumentManagement_Service(new URL(documentManagementServiceURL +
"?wsdl"), conduitFeature):null;
+ this.contentServiceService = (contentServiceServiceURL != null)?new
ContentService_Service(new URL(contentServiceServiceURL + "?wsdl"),
conduitFeature):null;
+ this.memberServiceService = (memberServiceServiceURL != null)?new
MemberService_Service(new URL(memberServiceServiceURL + "?wsdl"),
conduitFeature):null;
+ this.searchServiceService = (searchServiceServiceURL != null)?new
SearchService_Service(new URL(searchServiceServiceURL + "?wsdl"),
conduitFeature):null;
} catch (javax.xml.ws.WebServiceException e) {
throw new ManifoldCFException("Error initializing web services:
"+e.getMessage(), e);
} catch (MalformedURLException e) {