Re: Header Processing

2001-08-09 Thread Matt Barnes
Javier A. Soltero Sent: Sunday, August 05, 2001 6:31 AM To: [EMAIL PROTECTED] Subject: Re: Header Processing You can use the SOAPContext on the server side to access the request object and from there get the header entries. To do this, you must add SOAPContext as the first parameter to the method

RE: Header Processing

2001-08-06 Thread Kartheek Hirode
http://marc.theaimsgroup.com/?l=soap-user&m=99064575801841&w=2 Regards, --KH -Original Message- From: Matt Barnes [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 04, 2001 8:55 AM To: [EMAIL PROTECTED] Subject: Header Processing If I'm writing a service on a Server, ho

Re: Header Processing

2001-08-05 Thread Javier A. Soltero
You can use the SOAPContext on the server side to access the request object and from there get the header entries. To do this, you must add SOAPContext as the first parameter to the method you're invoking through SOAP. See the documentation (I believe its the interoperability section) to see how t

Header Processing

2001-08-04 Thread Matt Barnes
If I'm writing a service on a Server, how do I access the header entries sent with the request? I understand how to set them and retrieve them on the Client side, but I don't see how the individual methods on my provider can do the same. Thanks! _