将服务移动到端口5000后,SOAP web请求不再工作

将服务移动到端口5000后,SOAP web请求不再工作,soap,service,wsdl,port,wsd,Soap,Service,Wsdl,Port,Wsd,我的客户机有一些外部服务,我们通过服务引用处理SOAP请求。它以前工作过(在测试环境中仍然工作),但在将生产服务从www6.client.org/services.client.org/Personify/CustomerInformation.svc移动到ww6.client.org:5000/services.client.org/Personify/CustomerInformation.svc后,它们不再工作: Error in OrganizationalLogin: There wa

我的客户机有一些外部服务,我们通过服务引用处理SOAP请求。它以前工作过(在测试环境中仍然工作),但在将生产服务从www6.client.org/services.client.org/Personify/CustomerInformation.svc移动到ww6.client.org:5000/services.client.org/Personify/CustomerInformation.svc后,它们不再工作:

Error in OrganizationalLogin: There was no endpoint listening at https://www6.client.org:5000/services.client.org/Personify/CustomerInformation.svc that could accept the message. 
This is often caused by an incorrect address or SOAP action. 
See InnerException, if present, for more details.; 
我能够在浏览器中点击URL,并且我看到列出了我尝试使用的方法:

<wsdl:operation name="AuthenticateUserByOrderNumber" parameterOrder="orderNumber status">
  <wsdl:input wsaw:Action="http//services.client.org/CustomerInformation/AuthenticateUserByOrderNumber" message="tns:CustomerInformation_AuthenticateUserByOrderNumber_InputMessage" />
  <wsdl:output wsaw:Action="http//services.client.org/CustomerInformation/AuthenticateUserByOrderNumber" message="tns:CustomerInformation_AuthenticateUserByOrderNumber_OutputMessage" />
</wsdl:operation>

<wsdl:operation name="AuthenticateUserByOrderNumber">
  <soap:operation soapAction="http//services.client.org/CustomerInformation/AuthenticateUserByOrderNumber" style="rpc" />
  <wsdl:input>
    <soap:body use="literal" namespace="http//services.client.org/CustomerInformation" />
  </wsdl:input>
  <wsdl:output>
    <soap:body use="literal" namespace="http//services.client.org/CustomerInformation" />
  </wsdl:output>
</wsdl:operation>

同样,和之间似乎没有任何区别,因此我想知道这是否是一个端口问题,以及如何解决它?

我很困惑。你说了两件事,
ww6.client.org
ww16.client.org
那是哪一件?鉴于这种差异,您是否使用了正确的主机和端口组合?它是
www16.client.org:5000
还是
ww6.client.org:5000
[System.ServiceModel.OperationContractAttribute(Action="http//services.client.org/CustomerInformation/AuthenticatUserByOrderNumber", ]
Client.Foundation.Membership.iftService.AuthenticateUserByOrderNumberResponse AuthenticateUserByOrderNumber(Client.Foundation.Membership.clientService.AuthenticateUserByOrderNumberRequest request);