Access to Soap message header data?

2001-12-21 Thread davout
>From a Java class instantiated by a SOAP service, how do I gain access to the SOAP message header data?

RE: Access to Soap message header data?

2001-12-21 Thread davout
51 To: [EMAIL PROTECTED] Subject: RE: Access to Soap message header data? Look at transport/http/SOAPHTTPConnection.java and grep for header. -Original Message- From: davout [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 1:49 PM To: [EMAIL PROTECTED] Subject: Access to Soap message h

RE: Access to Soap message header data?

2001-12-21 Thread davout
ow to get at the SOAP headers. Sorry for the confusion. -Original Message- From: davout [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 1:57 PM To: [EMAIL PROTECTED] Subject: RE: Access to Soap message header data? So where or how do I get hold of this SOAPHTTPConnection o

RE: Access to Soap message header data?

2001-12-22 Thread davout
usion. -Original Message- From: davout [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 1:57 PM To: [EMAIL PROTECTED] Subject: RE: Access to Soap message header data? So where or how do I get hold of this SOAPHTTPConnection object instance? Is there a factory class, or what?

java.lang.NoSuchMethodError

2001-12-24 Thread davout
I'm getting the error shown below whenever I try to access a registered SOAP service. Using the SOAP admin GUI I've checked to see that the method exists (it does). What else could be going wrong? The targeted method happens to be the second in a list of methods implemented by this service. It ha

Debug SOAP 2.2 service under JBuilder5 IDE?!?

2001-12-24 Thread davout
Does anybody know how to debug a Java web service running under Apache SOAP 2.2 in the JBuilder5 IDE?

Apache SOAP Deployment admin tool - where XML file?

2001-12-24 Thread davout
If I use the SOAP admin deployment form to define a web service, whereabouts does this create the resulting XML file?

RE: Access to Soap message header data?

2001-12-28 Thread davout
implements whatever convention you want for receiving the headers from the soap engine. The docs indicate how to write your own provider. Sanjiva. - Original Message ----- From: "davout" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, December 22, 2001 3:48 AM

RE: Access to Soap message header data?

2001-12-28 Thread davout
Axis is still in alpha. I'm reluctant to use anything that is pre-release. When is Axis due for formal release? -Original Message- From: Sam Ruby [mailto:[EMAIL PROTECTED]] Sent: 28 December 2001 11:26 To: [EMAIL PROTECTED] Subject: RE: Access to Soap message header data? &q

RE: Access to Soap message header data?

2001-12-28 Thread davout
Any guess-timate of when this will be? -Original Message- From: Sam Ruby [mailto:[EMAIL PROTECTED]] Sent: 28 December 2001 12:23 To: [EMAIL PROTECTED] Subject: RE: Access to Soap message header data? "davout" wrote: > > Axis is still in alpha. I'm reluctant to use

SOAP RPC service - method with int[] array parameter?!?

2001-12-28 Thread davout
Can anybody tell me how to prepare a client side call to a SOAP RPC service that has one parameter of type "int[]", like... public String[][] findNames(int[] anIDArray) How do I create the parameter instance? I've tried the following but it won't compile... fParams.addElement(new Param

Arrays as SOAP RPC input parameters and method results

2001-12-28 Thread davout
Can anybody give me some background on how to create SOAP calls that use arrays as both inputs and method results? Take the following example public String[][] findNames(int[] anIDs); This method receives an input of an array of ints and returns a two dimensional array of strings.

Passing SOAP msg header info to Java RPC by using new RPCJavaprovider?!?

2002-01-11 Thread davout
I'm running SOAP 2.2 against some Java based RPC classes. I've been informed elsewhere that in normal use a Java RPC class instantiated by SOAP 2.2 cannot access the SOAP message header. I'm wondering whether this gap can be covered by creating a new RPC provider that inherits from the standard

Newbie Soap 2.2/Axis - application level authentication - what to use?!?

2002-02-12 Thread davout
with some ideas on how to implement app level authentication? The options appear to be... * Including authentication ID's as part of the soap message * Making the first parameter in each soap class method an authentication ID * What else? TIA, davout P.S. my end product has to be c

Debug Apache Soap Services in JBuilder5 IDE

2002-04-04 Thread davout
Is it possible to debug/trace Soap2.2 Java web service execution inside the JBuilder5 IDE? If so how?