Re: exception when call.invoke

2005-04-27 Thread Bruno Gonçalves
is in ? In a standalone client or in an application server (which one?) Why don't you try using wsdl2java and create stub classes to use instead. It is far simpler. then your call to the web service just becomes: ret = echoWebService.test(code,utilizador_portal,password);

Re: exception when call.invoke

2005-04-27 Thread Bruno Gonçalves
rvice.test(code,utilizador_portal,password);   -Original Message- From: Bruno Gonçalves [mailto:[EMAIL PROTECTED]] Sent: Friday, April 15, 2005 5:37 AM To: axis-user@ws.apache.org Subject: exception when call.invoke Hi there!

Re: exception when call.invoke

2005-04-26 Thread Bruno Gonçalves
-user@ws.apache.org Subject: exception when call.invoke Hi there! I receive this exception: java.lang.ClassCastException: org.apache.axis.transport.http.HTTPSender ,when I execute this code:         try {             String endpoint = "http:/

RE: exception when call.invoke

2005-04-15 Thread ragade
What are you running this in ? In a standalone client or in an application server (which one?)   Why don't you try using wsdl2java and create stub classes to use instead. It is far simpler. then your call to the web service just becomes: ret = echoWebService.test(code,utilizador_portal,pas

exception when call.invoke

2005-04-15 Thread Bruno Gonçalves
Hi there! I receive this exception: java.lang.ClassCastException: org.apache.axis.transport.http.HTTPSender ,when I execute this code:         try {             String endpoint = "http://localhost:8080/axis/Echo.jws";             logger.info("DEBUG >>> 1");             Service service = ne