Thanks for your fast answser. I´m creating a small QuizService (I´m quite new to axis2) and still have the following problem: My little webservice is based on POJO´s and I get the service running. But my problem is that Axis2 is "wrapping" my response objects. For example I defined a method getQuestion() which should deliver a QuizQuestion-Object. But when I´m using a client , the following is not possible: QuizService service = new QuizService(); QuizQuestion question = service.getQuestion();
instead I have to do the following: QuizService service = new QuizService(); QuizQuestion question = service.getQuestion().get_return(); This is quite a problem because I know it is possible with wsdl2java and the option -uw to generate a unwrapped stub but my .Net 2.0 Client doesn´t care about that. Is it possible to configure Axis2 to not show this behavior or do I have to create my own wsdl file ? Thanks --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
