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 St

RE: MessageContext.setMaintainSession

2002-09-30 Thread Volanis, Alexander
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: MessageCont

RE: MessageContext.setMaintainSession

2002-09-27 Thread Volanis, Alexander
Title: Message The correct way to enable session management is in your deploy.wsdd file. Add to your service deployment. To get the desired effect your clients have to enable session management as well. Use ((org.apache.axis.client.Stub) ws).setMaintainSession(true) where "ws" is your serv

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 be

RE: Axis on WebLogic Server 6.1 sp2

2002-06-21 Thread Volanis, Alexander
Hi Joseph,   I had the same problem and called BEA support and here is what happens. In SP2 the introduced validation for manifest files (I cannot think why). This breaks some third party jars. In my case the problem seemed to go away once I split the jars cleanly between the main classpath

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 prob

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 Me

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 t

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 ) {