Hi all, first of all excuse me for my bad english, i'm not english. I'm tryng to develop my first web service using Axis. Basically my web service compose Google WS and Amazon WS to do some searches. If i use my java program without Axis, so as a pure client, i can run it and consume both google and amazon web services using their api. However when i want to make this program a web service in axis, i build the wsdl, build the stub classes, build the jar to put in WEB-INF/lib directory of axis, it will run only the google side. When i try to use my service deployed in axis from a trivial client, the amazon side crash. This is the first part of the code of amazon in the web service code:
AWSECommerceService service = new AWSECommerceServiceLocator(); try { port = service.getAWSECommerceServicePort(); } catch (javax.xml.rpc.ServiceException e) { e.printStackTrace(); } And i got the following error: AxisFault faultCode: ... Server.userException faultString: java.lang.reflect.InvocationTargetException .... Cause: null I really don't know what to do. If i'm wrong using Amazon in Axis this way, or if is simply a classpath problem or somethingelse. Thanks in advance for every answer. -- View this message in context: http://www.nabble.com/Web-service-composition-%28Google-%2B-Amazon%29-tf1938678.html#a5312540 Sent from the Axis - User forum at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]