wsdl2java - targetNamespace becomes default package (no package) in eclipse

2009-08-06 Thread Martin Fernau
Hi, I currently try to generate server code for a wsdl-File I got from another person. In this wsdl-File it seems that all the defined elements without explicit NS-Prefixes (those which maps to the target namespace then?) are getting no package definition in java after code generation. Is

unknown error

2009-08-06 Thread Asma Maalej
hello every one Actually, i used to work with axis2, implementing web service and invoking them by a simple client and it worked usually fine. however, i was surprised by a throwed exception i don't know the reason below is the client code which was working fine: import

RE: unknown error

2009-08-06 Thread Martin Gainty
veuillez suivre cet exemple de fonctionnement d'ADBClient public class ADBClient{ public static void main(java.lang.String args[]){ try{ StockQuoteServiceStub stub = new StockQuoteServiceStub

Endpoint not found - friendly message

2009-08-06 Thread red dog
Hi Everyone, I have a quick question: is there a way in Axis 2 to present a friendly message back to the client (in my case the browser) in case one don't specify the correct endpoint for example? I currently get a message similar to the one bellow. I know there was a way of handling this in

RE: Endpoint not found - friendly message

2009-08-06 Thread Martin Gainty
//determine which version of SOAP your request supports: String version=req.setAttribute(soapdef, soapString); if (version.equals(SOAP1.1)) { System.err.println( SOAP1.1 supports only the Fault attributes of faultactor, faultstring, faultcode); } else { if(version.equals(SOAP1.2))