Re: Unable to compress message with GZIP in Axis 1.4

2006-08-11 Thread Cyrille Le Clerc
this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 8/10/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I am trying to use the out of the box axis compression to send a gzipped message with using Axis 1.4 as per the instructions outlined in http

Re: Commons HTTPClient, BASIC auth

2006-06-20 Thread Cyrille Le Clerc
CommonsHTTPSender to add this behavior. I attached a customized version of CommonsHttpSender to add this line of code. I advise you to create a bug in Jira ; we would then be able to propose a clean patch. Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] +33 6.61.33.69.86 On 6/20/06

Re: Commons HTTPClient, BASIC auth

2006-06-20 Thread Cyrille Le Clerc
A small mistake in the attached file. Here is the fixed version. By the way, I will propose a patch for AXIS-2506 soon, currently testing on my box. Cyrille. On 6/20/06, Cyrille Le Clerc [EMAIL PROTECTED] wrote: Hello Ronald, Preemptive authentication is an out-of-the-box

Re: [axis1] more stable version of axis

2006-06-19 Thread Cyrille Le Clerc
().gethelloWorldBinding(); // Time out after a minute binding.setTimeout(6); Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] +33 6.61.33.69.86 On 6/19/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: thanks, I think I will use the 1.4 then, I need just to be sure

Re: unknown certificate error.

2006-06-17 Thread Cyrille Le Clerc
Hello siddbob, Have you looked at http://wiki.apache.org/ws/FrontPage/Axis/AxisClientConfiguration/Ssl ? This page explains you how to use the SunFakeTrustSocketFactory that truts all the certificates. Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED

Re: Simple Question Axis

2006-06-12 Thread Cyrille Le Clerc
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Cyrille Le Clerc[EMAIL PROTECTED][EMAIL PROTECTED] +33 6.61.33.69.86

Re: Simple Question Axis

2006-06-12 Thread Cyrille Le Clerc
but no work any idea abaout this exception. Thanks... Nicolás G. Rico - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED

Re: Axis client thread safety

2006-06-10 Thread Cyrille Le Clerc
instead of plain HashMaps - synchronize internalRegister() method to ensure atomicity of access to maps in modification - synchronize access to namespaces variable in setSupportedEncodings to ensure atomicity of the clear-add sequence Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED

Re: Is client-side Axis ( 1.3 ) thread safe ?

2006-06-01 Thread Cyrille Le Clerc
factory) - to instantiate one new instance of the stub per session, perform the calls and then throw this instance away Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] +33 6.61.33.69.86 On 6/1/06, Jesus Salvo Jr. [EMAIL PROTECTED] wrote: I have a client classes

Re: where is this site maintained now?

2006-05-26 Thread Cyrille Le Clerc
disappeared, you should be able to compress your soap messages. Everything is explained on Axis' wiki : http://wiki.apache.org/ws/FrontPage/Axis/GzipCompression . Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] +33 6.61.33.69.86 On 5/26/06, Amjad Abu Zur - TusAlas

Re: Axis client with SSL

2006-04-19 Thread Cyrille Le Clerc
Hello Xinjun, Did you look at the wiki ? http://wiki.apache.org/ws/FrontPage/Axis/AxisClientConfiguration/Ssl Did you try to use the org.apache.axis.components.net.SunFakeTrustSocketFactory ? Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 4/17/06, Xinjun Chen

Re: when I type http://localhost:8080/axis I ge an error

2006-03-10 Thread Cyrille Le Clerc
Usually, you get this exception when the file (i18n.properties) is not under the folder WEB-INF/classes of YOUR web application. Can you confirm i18n.properties is under the folder WEB-INF/classes of your deployed application ? Cyrille PS : I will be on holidays for 5 days -- Cyrille Le Clerc

Re: Ploblem in deploying Axis1.3 document based web service over HTTPS

2006-03-09 Thread Cyrille Le Clerc
://wiki.apache.org/ws/FrontPage/Axis/AxisClientConfiguration/Ssl Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 3/9/06, Mohit_Goyal [EMAIL PROTECTED] wrote: Hi all, I developed a document based web service using Axis1.3 and it was working fine

Re: when I type http://localhost:8080/axis I ge an error

2006-03-09 Thread Cyrille Le Clerc
Hi Alasadi, A file called i18n.properties is missing in your classpath (ie /WEB-INF/classes/ ). You will find this file in axis distribution under axis-1_3/webapps/axis/WEB-INF/classes Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 3/9/06, Alasadi, Saad [EMAIL

Re: pls help to write Axis Client code for given WSDL from dotnet

2006-03-09 Thread Cyrille Le Clerc
-- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 3/9/06, Giri [EMAIL PROTECTED] wrote: pls Tell me if i use WSDL2java how do i write client, the schema is huge(very BIG) regards giri babu ?xml version=1.0 encoding=utf-8? wsdl:definitions xmlns:http=http://schemas.xmlsoap.org/wsdl

Re: compressing soap message before sending

2006-03-04 Thread Cyrille Le Clerc
Hello, Could Http gzip compression fit your needs ? Using it with Axis is documented on the wiki : http://wiki.apache.org/ws/FrontPage/Axis/GzipCompression Cyrille-- Cyrille Le Clerc[EMAIL PROTECTED][EMAIL PROTECTED] On 3/3/06, Plorks mail [EMAIL PROTECTED] wrote: hi,can anyone giveme or lead me

Re: DatabaseConnection

2006-02-18 Thread Cyrille Le Clerc
Hello Tomas, Getting a DataSource is not specific to Axis Web Application but is general to Servlet Containers. DataSources in Tomcat is documented here : http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL

Re: gzip and org.apache.axis.client.Call

2006-02-14 Thread Cyrille Le Clerc
/UsingCommandLineTools Once you have generated these stubs (including xxxBindingStub and xxxServiceLocator), you can follow the code sample described in http://wiki.apache.org/ws/FrontPage/Axis/GzipCompression Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 2/14/06, Amjad Abu Zur

Re: Extracting cookies from MessageContext

2006-02-14 Thread Cyrille Le Clerc
on the HttpSession ; I couldn't find Websphere SOAP library documentation to check. Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 2/14/06, prashanth shivakumar [EMAIL PROTECTED] wrote: Hi Cyrille, Thanks for your response. SInce iam using ejb endpoint[stateless

Re: gzip and org.apache.axis.client.Call

2006-02-13 Thread Cyrille Le Clerc
-- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 2/13/06, Amjad Abu Zur - TusAlas [EMAIL PROTECTED] wrote: Hi all, How can I send and receive GZIP webservices request and response with the class org.apache.axis.client.Call? with the method I have here should I trust that I

Re: retrieve port and host of webapp server

2006-02-09 Thread Cyrille Le Clerc
Hello Mathieu, You should get the HttpServletRequest. It will give you all these info.http://wiki.apache.org/ws/FrontPage/Axis/HttpRequest Cyrille-- Cyrille Le Clerc[EMAIL PROTECTED][EMAIL PROTECTED] On 2/9/06, Mathieu Hicauber [EMAIL PROTECTED] wrote: Hi,I need to implement a service

Re: HTTPS with Axis 1

2006-02-09 Thread Cyrille Le Clerc
, Cyrille Le Clerc [EMAIL PROTECTED] ha scritto:Hello Carmine,For the server side Axis, you just have to enable SSL in your server.For client side Axis SSL, here is a doc: http://wiki.apache.org/ws/FrontPage/Axis/AxisClientConfiguration/SslCyrille On 2/9/06, Carmine Gargiulo [EMAIL PROTECTED] wrote

Re: Document Literal vs Document Wrapped vs RPC Encoding

2006-02-02 Thread Cyrille Le Clerc
-16.html#refinement16448072 Unfortunately, I did not find in this spec any clear statement saying that document (in a wrapped style) is preferred to rpc. However, you will find many articles that say document is preferred to rpc. Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED

Re: WSDD Questions

2006-02-01 Thread Cyrille Le Clerc
/ path refid=axis.classpath / /classpath /java /target Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 2/1/06, Dov Rosenberg [EMAIL PROTECTED] wrote: We have started using Axis 1.2 to build and deploy some web services. I am a little confused

Re: WSDD Questions

2006-02-01 Thread Cyrille Le Clerc
and their methods. I am trying to set this up so all an end user needs to do is to install the WAR file and go. No separate deployment - it would autodeploy based on the server-config.wsdd On 2/1/06 4:18 PM, Cyrille Le Clerc [EMAIL PROTECTED] wrote: Hello Dov, SERVER-CONFIG.WSDD VS

Re: Generated code not Thread safe

2006-01-31 Thread Cyrille Le Clerc
should I check for that? Laheeb Alsarraf Contractor, AC Technologies E-mail: [EMAIL PROTECTED] Office: 301.451.1783 -Original Message- From: Cyrille Le Clerc [mailto:[EMAIL PROTECTED] Sent: Monday, January 30, 2006 1:06 PM To: axis-user@ws.apache.org Subject: Re: Generated code

Re: Generated code not Thread safe

2006-01-30 Thread Cyrille Le Clerc
Hello Laheeb, Could you generate a thread dump ? I searched for synchronized blocks or other tricks in the source code (1.3) and did not find anything. By the way, do you use HTTPSender or CommonsHTTPSender ? Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/30

Re: alternative configuration to server-config.wsdd ?

2006-01-26 Thread Cyrille Le Clerc
-INF arg value=server / arg value=${webapp.install}/wsdd/deploy.wsdd / classpath pathelement location=${build.dir}/classes/ path refid=axis.classpath/ /classpath /java Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/26/06, Tony

Re: Generated Stub Thread-safe?

2006-01-23 Thread Cyrille Le Clerc
in the Axis 1.X roadmap (remembering that Axis 2.0 is the major focus nowadays) ... Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] 06.61.33.69.86 On 1/22/06, Ferguson, Neil, VF-NZ [EMAIL PROTECTED] wrote: Hi guys. This is very useful, thanks

Re: Newbie help

2006-01-21 Thread Cyrille Le Clerc
-docs.bea.com/wls/docs91/webserv/data_types.html Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/22/06, Simon Nunn [EMAIL PROTECTED] wrote: I am running into the following error when running java2wsdl/wsdl2java ant tasks...how do I correct

Re: Generated Stub Thread-safe?

2006-01-19 Thread Cyrille Le Clerc
-- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/19/06, Ferguson, Neil, VF-NZ [EMAIL PROTECTED] wrote: Hi. I was wondering if anybody could give me a definitive answer on whether the stub generated by WSDL2Java (Axis 1.3) is thread-safe (i.e. it can safely be used by multiple

Re: WSDD file

2006-01-18 Thread Cyrille Le Clerc
Hello Stijn, I didn't find any information about hivemind-axis integration on hivemind web site (wiki + jira + mailing list). It seems that nobody has been working on this yet. You may suggest this integration on hivemind-user mailing list. Cyrille -- Cyrille Le Clerc [EMAIL

Re: WSDD file

2006-01-13 Thread Cyrille Le Clerc
You could contribute to the Hivemind-Axis integration :-) Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/13/06, Stijn Christiaens [EMAIL PROTECTED] wrote: Hello again Cyrille, your advice worked like a charm. Although I did not use the pico/nanocontainer

Re: WSDD file

2006-01-12 Thread Cyrille Le Clerc
-- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/12/06, Stijn Christiaens [EMAIL PROTECTED] wrote: Hello everybody, is there any way to do a special trick and let Axis not instantiate a webservice object through the no-argument constructor but for instance through a Factory or factory

Re: how to create axis client from XML Schema?

2006-01-10 Thread Cyrille Le Clerc
element). however, I never saw a case where it was useful. It think it is most of the time counter productive. Anyone to debate on this ? Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/9/06, Jay Glanville [EMAIL PROTECTED] wrote: Hello Cyrille Your statement about

Re: how to create axis client from XML Schema?

2006-01-09 Thread Cyrille Le Clerc
this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/9/06, Jay Glanville [EMAIL PROTECTED] wrote: Davanum, Thanks for the suggestions. Concerning the suggestion of writing my own WSDL document, I'd prefer it if I could codify the creation of the WSDL. That way I could

Re: Axis client using ssl

2006-01-05 Thread Cyrille Le Clerc
Hello, For the mailing list archive, the wiki has been updated on page http://wiki.apache.org/ws/FrontPage/Axis/AxisClientConfiguration/Ssl Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/2/06, Cyrille Le Clerc [EMAIL PROTECTED] wrote: Hello, Here are some

Re: Axis client using ssl

2006-01-02 Thread Cyrille Le Clerc
/JSSERefGuide.html - Axis pluggable components guide : http://ws.apache.org/axis/java/integration-guide.html#Components Cyrille PS : I would be glad to contribute to the wiki but I don't have access to it -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 1/2/06, rmkellogg [EMAIL PROTECTED

Re: QName Linkage Error

2005-11-30 Thread Cyrille Le Clerc
: websphere and axis - Date : 12 Oct 2005 - URL : http://groups.google.com/group/ibm.software.websphere.application-server/browse_frm/thread/07a1e2c80ea16bf9/389dd76307095a7f#389dd76307095a7f Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 11/5/05, vladimir

Re: Example on deploying Axis on Web Sphere Application Server

2005-11-04 Thread Cyrille Le Clerc
Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 11/4/05, Parikh,Pratik [EMAIL PROTECTED] wrote: Hi Everyone, Can someone point me to an article that describes deploying a Axis web service on Web Sphere Application Server. This is urgent any help will be appreciated!!! Thanks, Parikh

Re: [axis 1.x] Working with enumerations

2005-10-27 Thread Cyrille Le Clerc
constant naming convention (uppercase with underscore) for such variables as they are actual constants ? Cyrille PS : the method JavaEnumTypeWriter.getEnumValueIds() is in charge of getting names for these constants -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 10/27/05, Dovholuk, Clint

Re: Missing message attribute?

2005-10-25 Thread Cyrille Le Clerc
, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] 06.61.33.69.86 definitions xmlns=http://schemas.xmlsoap.org/wsdl/; xmlns:xs=http://www.w3.org/2001/XMLSchema; xmlns:at=http://foo.bar/namespaces/axistest; xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap

Re: custom HTTPSender

2005-10-20 Thread Cyrille Le Clerc
=java:org.apache.axis.transport.java.JavaSender/ /deployment Hope this helps, Cyrille -- Cyrille Le Clerc [EMAIL PROTECTED] [EMAIL PROTECTED] On 10/19/05, Christopher S. Johnson [EMAIL PROTECTED] wrote: All - Is it possible to override the current HTTPSender class just by extending the current HTTPSender class