Re: Axis2 w/ HttpClient

2008-06-03 Thread Jeff Garrett
Problem is solved. It can be done using an HTTP header. If anyone comes across this needing the solution, put the following line of code just before sending the request using the HttpClient, substitute the variables for your info. PostMethod post = new PostMethod(URL); post.setRequestEntity(new

Re: Axis2 w/ HttpClient

2008-06-02 Thread Jeff Garrett
tion (required by WS-addressing) as specified > into your services.xml. > > > Michele > > > On 2 Jun 2008, at 17:01, Jeff Garrett wrote: > > Sorry, the response didn't paste right and I over-looked it. >> >> Response is "The endpoint reference (EPR) for the

Re: Axis2 w/ HttpClient

2008-06-02 Thread Jeff Garrett
identifying the operation? Shouldn't Axis2 be able to figure that out from what is in the SOAP body? Thanks. Jeff On Mon, Jun 2, 2008 at 11:47 AM, Jeff Garrett <[EMAIL PROTECTED]> wrote: > Hi all. > I have deployed my web services using Axis2, from an in-house servet > design. I

Axis2 w/ HttpClient

2008-06-02 Thread Jeff Garrett
Hi all. I have deployed my web services using Axis2, from an in-house servet design. I understand I can use Wsdl2Java and create a stub client for each service, but I have an existing test package that I would like to keep as-is. In this test package, I use the Apache HttpClient to send my reques