E
eric
Hi!
I have given a WSDL file to a bunch of Java and C# developers and wants to
access theire services by just changing the URL on the webservice object.
**********************
//Call a Java webservice
wolf1.TTicketService w = new wolf1.TTicketService();
w.Ticket("jfklsadfjsdlkfjsdlk");
//Change only the URL and call a .net webservice.
w.Url = "http://localhost/WebService5/Service1.asmx";
w.Ticket("klsdafjlkdsfjdslkfj");
*********************
This throws an exception:
'System.Web.Services.Protocols.SoapException' occurred in
system.web.services.dll
Additional information: Server did not recognize the value of HTTP Header
SOAPAction: .
I have noticed that the Java webservices doesn´t implement the same wsdl.
They say they can't. They use encoded when we use literal. My question is
How do I change my code so we can use rpc.Encoded?
/Eric
I have given a WSDL file to a bunch of Java and C# developers and wants to
access theire services by just changing the URL on the webservice object.
**********************
//Call a Java webservice
wolf1.TTicketService w = new wolf1.TTicketService();
w.Ticket("jfklsadfjsdlkfjsdlk");
//Change only the URL and call a .net webservice.
w.Url = "http://localhost/WebService5/Service1.asmx";
w.Ticket("klsdafjlkdsfjdslkfj");
*********************
This throws an exception:
'System.Web.Services.Protocols.SoapException' occurred in
system.web.services.dll
Additional information: Server did not recognize the value of HTTP Header
SOAPAction: .
I have noticed that the Java webservices doesn´t implement the same wsdl.
They say they can't. They use encoded when we use literal. My question is
How do I change my code so we can use rpc.Encoded?
/Eric