Re: java.lang.reflect.InvocationTargetException

2005-09-01 Thread A Yang
name is specified somewhere in the SOAP payload in order to trigger the service? I thought with Messaging style services, Axis just passed everything along. Thanks, Andy --- Guy Rixon <[EMAIL PROTECTED]> wrote: > On Wed, 31 Aug 2005, A Yang wrote: > > > What does the Invocation

java.lang.reflect.InvocationTargetException

2005-08-31 Thread A Yang
Hi there, I'm trying to create a very simple Message style service in Axis 1.2.1 running in Tomcat 5.5.9 and JDK 1.5.0_04-b05 on Windows XP. I have a simple class: package com.xyz.testbed; import javax.xml.soap.*; public class CheckValue { public void foo(SOAPEnvelope req, SOAPEnvelope res

[Axis2] Implementing Services

2005-08-23 Thread A Yang
Hi there, Axis 1 supports the following interfaces for me to implement: public Element [] method(Element [] bodies); public SOAPBodyElement [] method (SOAPBodyElement [] bodies); public Document method(Document body); public void method(SOAPEnvelope req, SOAPEnvelope resp); But the only anala

[Axis2] Service Interfaces

2005-08-01 Thread A Yang
Oops - didn't realize I should have flagged the subject as Axis2-specific. Apologies for the repost. Hi there, I'm just getting started with Axis 2 and I was wondering whether there were any other Service interfaces besides: public OMElement doSomething(OMElement element)? Axis 1 allows: publ

Service Interfaces

2005-07-31 Thread A Yang
Hi there, I'm just getting started with Axis 2 and I was wondering whether there were any other Service interfaces besides: public OMElement doSomething(OMElement element)? Axis 1 allows: public Element [] method(Element [] bodies); public SOAPBodyElement [] method (SOAPBodyElement [] bodies);