WSDL capitalization
I created a web service on a dev machine running CF version 8,0,0,176276. I copied the exact file from dev to a live machine running CF version 8,0,1,195765. As a result, these differences occur:
Development WSDL | Production WSDL |
<complexType name="user"> | <complexType name="User"> |
<wsdl:portType name="wv_services2"> | <wsdl:portType name="Wv_services2"> |
<wsdl:service name="wv_services2Service"> | <wsdl:service name="Wv_services2Service"> |
The process that calls this web service is initiated by a client and cannot be modified. How can I override the initial caps behavior on the production server?
