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

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

Re: Errnn238 after boot calling web services

2012-11-13 Thread Andreas Veithen
On Tue, Nov 13, 2012 at 9:46 AM, Oscar Rugama oscas...@hotmail.com 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

Restriction totalDigits

2012-11-13 Thread Carlos Emanuel Madruga de Sousa
Hi to all, I'm having problems with restriction totalDigits to type decimal. xsd:restriction base=xsd:decimal xsd:totalDigits value=13 / xsd:fractionDigits value=3 / /xsd:restriction By this restriction the minor valid number is 99.0 because the code generate by axis. On

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 should

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

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

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: xsd:restriction base=xsd:decimal xsd:totalDigits value=13 / xsd:fractionDigits value=3 / /xsd:restriction any number between 10^-12 and 10^13, as you said, *should* work. But, the code generated by axis,

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: xsd:restriction base=xsd:decimal xsd:totalDigits value=13 / xsd:fractionDigits value=3 / /xsd:restriction any number between 10^-12 and 10^13, as you said, *should* work. But, the code generated by axis,

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 some

RE: Axis SSL authentication help!

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