RE: Getting the IP address from a SOAP request

2002-10-07 Thread Volanis, Alexander
Hi Nick, here is how I do it. // get Axis MessageContext MessageContext msgCtx = MessageContext.getCurrentContext(); // get Servlet request object HttpServletRequest httpReq = (HttpServletRequest) msgCtx.getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST); // get address of remote caller

RE: MessageContext.setMaintainSession

2002-09-30 Thread Volanis, Alexander
on for a SOAP client? Is this the extent of the session management in Axis? Thanks, Grant - Original Message ----- From: Volanis, Alexander To: '[EMAIL PROTECTED]' Sent: Friday, September 27, 2002 8:48 AM Subject: RE: MessageContext.setMaintainSe

RE: Error loading AXIS beta 3 in WebLogic 6.1 SP2

2002-07-17 Thread Volanis, Alexander
I believe this problem is related with '-' in jar filenames and the manifest file validation. SP3 for WL 6.1 corrects this problem. -Original Message- From: Jeff Drost [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 8:51 PM To: [EMAIL PROTECTED] Subject: Re: Error loading AXIS

RE: A critical problen

2002-06-12 Thread Volanis, Alexander
Hi, I have successfully used Axis in the way you describe and discovered that adding the javax.net.debug=ssl property can cause this error in Weblogic 6.1. It helped diagnose misconfiguration during setup but once all configuration/keystore problems were corrected it was actually causing a

RE: Java2WSDL problem in namespace for bindings

2002-05-24 Thread Volanis, Alexander
Hi, I reported the same thing in the axis-dev list but did not get any resolution. There was a bit of discussion on the subject. Look into the thread [BUG] Beta2 interop (was RE: Interoperability issue with MSVC++.Net). This seems to have changed in beta2. It was OK in beta1. -Original

RE: java2wsdl and style=document

2002-05-10 Thread Volanis, Alexander
Hi Neil, I had a similar problem and discovered that you must use the attribute style=document in the service element. In beta 1 Axis would not retain this attribute in server-config.wsdd. I had been editing the server-config.wsdd to add this after the service deployment. In beta 2 this seems to

Newbie question on document/literal service

2002-04-29 Thread Volanis, Alexander
All, This is a two part question. PART 1. I am trying to create a document/literal service using Axis and have not had much success. My service would have a single method with a signature like this: public class SAMLRequest { public Document SAMLAssertion( Document doc ) {