AW: Errnn238 after boot calling web services

2012-11-13 Thread Stadelmann Josef
Maybe you need this as well -Dhttp.auth.preference=Basic depending on the negotiating schema your proxy is using. Josef Von: Oscar Rugama [mailto:oscas...@hotmail.com] Gesendet: Dienstag, 13. November 2012 08:12 An: java-user@axis.apache.org Betreff: RE: Errnn238 after boot calling web s

Re: Errnn238 after boot calling web services

2012-11-13 Thread Andreas Veithen
The problem is that Axis 1.4 caches the proxy settings. If after a restart of tomcat the application no longer works, then this would mean that the the system properties are not yet set when the very first Web service call is made. It should also be noted that setting system properties programmatic

RE: Errnn238 after boot calling web services

2012-11-13 Thread Oscar Rugama
Thanks Andreas, but i want to say that it no only fails at first Web Service call, after restarting Tomcat it fails forever until i undeploy and deploy again application. Also the properties file i know is loaded because it´s used to set data pool connection to Oracle and it works (if not loade

RE: AW: Errnn238 after boot calling web services

2012-11-13 Thread Oscar Rugama
How can u use this ' -Dhttp.auth.preference=Basic'? Thanks Oscar Subject: AW: Errnn238 after boot calling web services Date: Tue, 13 Nov 2012 09:21:12 +0100 From: josef.stadelm...@axa-winterthur.ch To: java-user@axis.apache.org Maybe you need this as well -Dhttp.auth.preference=Basicdepen

Re: Errnn238 after boot calling web services

2012-11-13 Thread Andreas Veithen
On Tue, Nov 13, 2012 at 9:46 AM, Oscar Rugama wrote: > Thanks Andreas, but i want to say that it no only fails at first Web Service > call, after restarting Tomcat it fails forever until i undeploy and deploy > again application. Also the properties file i know is loaded because it´s > used to set

Restriction totalDigits

2012-11-13 Thread Carlos Emanuel Madruga de Sousa
Hi to all, I'm having problems with restriction totalDigits to type decimal. By this restriction the minor valid number is 99.0 because the code generate by axis. On totalDigits restriction I understand that is valid any number between 0 and 10^13. Am I right? Or this restr

AW: AW: Errnn238 after boot calling web services

2012-11-13 Thread Stadelmann Josef
The VM of Tomcat must know about that; i.e. in Tomcat for Windows catalina.sh shows # CATALINA_OPTS (Optional) Java runtime options used when the "start", # "run" or "debug" command is executed. # Include here and not in JAVA_OPTS all options, that s

Problem with unsignedInt and unsignedShort

2012-11-13 Thread Rogelio Blanco
Hello everyone, I have the current Axis2 library version 1.6.2 and we need to import a xsd in the WSDL in order to support phone number formats. Here is the link if the xsd file: http://www.codesynthesis.com/projects/xsstl/xsstl/phone-number.xsd The issue with this XSD file is that in some prope

RE: AW: AW: Errnn238 after boot calling web services

2012-11-13 Thread Martin Gainty
Josef and Team I ran into the same exact error earlier this year..when I ran curl --trace LOG thru the proxy I could see that the proxy server was mangling the request Headers I was able to locate the Proxy documentation directives to disable Header Mangling and did so Once the headers transmi

Re: FW:

2012-11-13 Thread Carlos Emanuel Madruga de Sousa
Hi Martin, Thanks for your help. Based on your response, if I have the restriction: any number between 10^-12 and 10^13, as you said, *should* work. But, the code generated by axis, only numbers bigger than 99.0 is valid. The generated code is: java.lang.String totalDigi

Re: FW:

2012-11-13 Thread Carlos Emanuel Madruga de Sousa
Hi Martin, Thanks for your help. Based on your response, if I have the restriction: any number between 10^-12 and 10^13, as you said, *should* work. But, the code generated by axis, only numbers bigger than 99.0 is valid. The generated code is: java.lang.String totalDigi

Axis SSL authentication help!

2012-11-13 Thread am am
Hi, I am using Axis 1 and need to do SSL authentication of a web service. I found that I need to use: AxisProperties.setProperty("axis.socketSecureFactory","com.example.MySSLSocketFactory"); to set my custom factory and trust managers. Problem: I also need to skip any server authentication in som

RE: Axis SSL authentication help!

2012-11-13 Thread Martin Gainty
need to skip any server authentication in some requests (e.g. use SunFakeTrustSocketFactory). MG>you need to retask this to use 2 separate webapps MG>one which will authenticate your credentials with MySSLSocketFactory MG>one which not authenticate which will use SunFakeTrustSocketFactory MG>t

Re: Axis SSL authentication help!

2012-11-13 Thread am am
I can't upgrade to Axis 2 and one of the main reasons is that I am consuming a WSDL that use RPC-Encoding. As far as I know this is not supported in Axis2 right? So now I am in deadend? From: Martin Gainty To: java-user@axis.apache.org Sent: Wednesday, Novem

Re: Axis SSL authentication help!

2012-11-13 Thread am am
Also why are you mentioning about the refactoring to different web apps? I am asking about client side code From: Martin Gainty To: java-user@axis.apache.org Sent: Wednesday, November 14, 2012 4:03 AM Subject: RE: Axis SSL authentication help! need to sk