Re: client session

2005-09-16 Thread csj
Frederic - You might find this of some use.. http://wiki.apache.org/ws/FrontPage/Axis/SessionSupport On Fri, 16 Sep 2005, Frederic D wrote: > Hi ! > > > > Is it possible to manage client session in a axis WS ? > > How to do it ? > > > > Thanks. > > > > > > > > > >

Re: Error with Tomcat 5.5.9 and Axis 1.2.1

2005-09-13 Thread csj
Danny - Sounds/looks as if you dont have xmlsec installed on the server http://www.ibiblio.org/maven2/xml-security/xmlsec/1.2.1/ ..Chris On Tue, 13 Sep 2005, Danny Garcia Hernandez wrote: > Hi List, i´m a beginner with tomcat and axis, i was looking on FAQ list > for someone with a same proble

Re: getting client DN in axis

2005-08-25 Thread csj
Tuan - To accomplish this you must first gain the access to the HTTPServletRequest then get the X509Certificate from the request then grab the DN. Something like this will do the trick... HttpServletRequest request = (HttpServletRequest)MessageContext.getCurrentContext().getProperty(HTTPConstant

Re: AW: Attachments/ Locked files?

2005-08-19 Thread csj
Ferruh - You can find the answers to several of your questions on the Axis website. See: http://ws.apache.org/axis/bugs.html Thanks ..Chris On Fri, 19 Aug 2005, Ferruh Zamangoer wrote: > Hello Davanum, > > first sorry for the cross post. Second where can I report the bug and when > does the

Re: How to add SSL/TLS compabiity into Axis Client

2005-08-15 Thread csj
Change the endpoint to https after the server is properly configured. ..Chris On Mon, 15 Aug 2005, Feng Xie (fxie) wrote: > > > Hi, > > I have been using a simple Axis Client over HTTP, which directly calls > the auto generated client side stubs ( assuming the web service is > called Foo, one th

Re: Get IP address of axis webservice clients?

2005-08-11 Thread csj
See: http://wiki.apache.org/ws/FrontPage/Axis/ClientIP ..Chris On Thu, 11 Aug 2005, Javier Gonzalez wrote: > Thanks! Yes, it revolves around getting access to the > HttpServletRequest object. Finally did it like this: > > String ipaddy = > ((HttpServletRequest)MessageContext.getCurrentContext().

Re: WSDL with attachments

2005-07-25 Thread csj
achments Profile for the standard way to define MIME > attachments in WSDL: > http://www.ws-i.org/Profiles/AttachmentsProfile-1.0-2004-08-24.html. > > Anne > > On 7/25/05, csj <[EMAIL PROTECTED]> wrote: > > Naresh > > > > From my understanding of WSDL there is no

Re: gaining socket information

2005-07-25 Thread csj
If I cant gain direct access to the socket, getting to the HttpServletRequest would work also.. On Mon, 25 Jul 2005, csj wrote: > All - > > How can I obtain information about the socket a client is connecting on > within Axis. > > For example gaining the clients IP address,

gaining socket information

2005-07-25 Thread csj
All - How can I obtain information about the socket a client is connecting on within Axis. For example gaining the clients IP address, port, session, etc... Any help would be great! Regards

Re: WSDL with attachments

2005-07-25 Thread csj
Naresh >From my understanding of WSDL there is no standard way to describe services that accept MIME/DIME attachments. The best way is to add a comment at the top of the WSDL stating which methods accept attachments in what encapsulation format. Regards On Mon, 25 Jul 2005, Agarwal, Naresh wro

Obtain sock information within BindingImpl

2005-07-22 Thread csj
All How can I obtain the socket that a client is using to connect to tomcat/axis within my BindingImpl Thanks

passing certificate information to axis

2005-05-12 Thread csj
All - Currently I have a service that requires ssl mutual authentication by the client to connect. For testing I had been using System.setProperty settings to give the JVM and Axis knowledge of client certificate this works great for basic testing but is not suitable for real world applications i

RE: expressing arrays in WSDL for interop

2005-04-24 Thread csj
Ivan - Try something like this... where xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; Hope this is of some help... ..Chris

nillable elements

2005-04-21 Thread csj
All - In my wsdl I define an element nillable="true" yet when I use WSDL2Java to make the classes axis still wont let me send that element as null, I get a soap fault back. Any help would be great. I'm using 1.2RC3 Thanks -cj