Re: Problem using an AXIS2 client on Oracle Application Server

2008-08-20 Thread Patrick Houbaux
y help on this but I too had the same issue when trying to do this and would love to learn the fix, thanks! Elton Patrick Houbaux wrote: Erratum: the correct version of OAS I'm using is 10.1.3.1.0 Patrick. Patrick Houbaux wrote: Hi all, I have genera

Re: Problem using an AXIS2 client on Oracle Application Server

2008-08-20 Thread Patrick Houbaux
More info on this: The very same .war deployed on Tomcat 6.0.13 works fine! Thanks for any help for making this working on OAS 10.1.3.1.0. Cheers, Patrick. Patrick Houbaux wrote: Hi all, I have generated a client stubs with AXIS2 1.4 (using xmlbeans) which work great when I use it from a

Re: Problem using an AXIS2 client on Oracle Application Server

2008-08-20 Thread Patrick Houbaux
Erratum: the correct version of OAS I'm using is 10.1.3.1.0 Patrick. Patrick Houbaux wrote: Hi all, I have generated a client stubs with AXIS2 1.4 (using xmlbeans) which work great when I use it from a java standalone application. I'm also calling the same piece of code from a js

Problem using an AXIS2 client on Oracle Application Server

2008-08-20 Thread Patrick Houbaux
Hi all, I have generated a client stubs with AXIS2 1.4 (using xmlbeans) which work great when I use it from a java standalone application. I'm also calling the same piece of code from a jsp which is part of a web application packaged in .war file and deployed on an Oracle Application Server 1

Re: Problem with AXIS2 client against an XFire server

2007-10-03 Thread Patrick Houbaux
.getOptions().setProperty(HTTPConstants.PROXY, pp); ResultUpdate_BeamInterface result = stub.executeWorkflow("a", "b", "c", 30.1); System.out.println(result.getMass()); } } Regards, Paul On 10/3/07, Patrick

Problem with AXIS2 client against an XFire server

2007-10-03 Thread Patrick Houbaux
Hi all, I have generated a client stub using WSDL2Java using XMLBeans against the following WSDL apparently created with XFire: http://engineoushamburg.dyndns.org:6980/Update_BeamInterfaceInterface?wsdl When I invoke the only method from this webservice with the AXIS2 generated stub I'm getti

Re: [HELP!!!] [JIRA AXIS2-3215 created] was: Strange behavior with AXIS2_1.3: org.apache.axis2.AxisFault: For input string: ""

2007-09-24 Thread Patrick Houbaux
         Don't know if that is the correct fix but at least I can move on now ;) ... that was a hard one to figure out. Cheers, Patrick. Patrick Houbaux wrote: More information on this: Just found out that if the client stub is used in a servlet context for which I managed to clear

Re: [HELP!!!] [JIRA AXIS2-3215 created] was: Strange behavior with AXIS2_1.3: org.apache.axis2.AxisFault: For input string: ""

2007-09-21 Thread Patrick Houbaux
ses other AXIS2 web services using the AxisServlet? If yes what is the recommended setup for the webapp folder? web.xml? axis2.xml? and modules? Please help me! I really need to have this working soon. Cheers, Patrick. Patrick Houbaux wrote: Interesting ... after further investigation

Re: [JIRA AXIS2-3215 created] was: Strange behavior with AXIS2_1.3: org.apache.axis2.AxisFault: For input string: ""

2007-09-20 Thread Patrick Houbaux
used from a servlet context and not happening from a standard java application. What is wrong with this web service? Why the client stub doesn't work in a servlet context? Any idea? Cheers, Patrick. Patrick Houbaux wrote: As I think there is a bug in AXIS2 on this issue I cre

Re: [JIRA AXIS2-3215 created] was: Strange behavior with AXIS2_1.3: org.apache.axis2.AxisFault: For input string: ""

2007-09-20 Thread Patrick Houbaux
As I think there is a bug in AXIS2 on this issue I created a JIRA one: https://issues.apache.org/jira/browse/AXIS2-3215 together with stubs/skeleton/test project. Any help on this would be really appreciated as I'm currently blocked. Cheers, Patrick. Patrick Houbaux wrote: H

Re: Strange behavior with AXIS2_1.3: org.apache.axis2.AxisFault: For input string: ""

2007-09-19 Thread Patrick Houbaux
ng for null.  What if you rewrite your if to if(port != null && !””.equalsIgnoreCase(port) ).  That should fix the NumberFormatException.  The Unable to sendViaPost to url issue may or may not be resolved with this…   Cheers!   Joe   From: Patrick Houbaux [mailto:[EMA

Strange behavior with AXIS2_1.3: org.apache.axis2.AxisFault: For input string: ""

2007-09-19 Thread Patrick Houbaux
Hi all, I have a weird problem that I am stuck with. Here is the situation: I have a web service client stub generated with wsdl2java using xmlbeans which works ok when I used it from a standalone application. Now I have the need to use this client stub from an application server (i.e. tomc

Re: [AXIS2-1.2-RC2] Data Binding Error

2007-04-19 Thread Patrick Houbaux
Done: https://issues.apache.org/jira/browse/AXIS2-2559 Cheers, Patrick. Deepal Jayasinghe wrote: Hi Patrick ; Please create a JIRA and attach - wsdl - service aar -client code Thanks Deepal Hi all, I generated the server side code with AXIS2-1.2-RC2 (with xmlbeans) from my WS

[AXIS2-1.2-RC2] Data Binding Error

2007-04-18 Thread Patrick Houbaux
Hi all, I generated the server side code with AXIS2-1.2-RC2 (with xmlbeans) from my WSDL,  deploy my service on my servlet container and I got the following error when I try to point to: http://localhost:8080/axis2/services/SystemManagement/GetProjects via a browser and got the same thing wi

Re: AXIS2 - Multiple client stubs overlapping

2007-04-18 Thread Patrick Houbaux
bject)org.plcs.www.system.ExtensionMapper.getTypeObject( nsUri,type,reader);       }       } Cheers, Patrick. Patrick Houbaux wrote: I'm using AXIS2-1.2-RC2. I did merge the WSDL as you suggested and ev

Re: AXIS2 - Multiple client stubs overlapping

2007-04-18 Thread Patrick Houbaux
wrote: On 4/18/07, Patrick Houbaux <[EMAIL PROTECTED]> wrote: Hello Amila, I did try with other databinding framework, I actually started with ADB but the type schema is a bit too complex for it so I changed to xmlbeans which generate the java type data model correctly.

Re: AXIS2 - Multiple client stubs overlapping

2007-04-18 Thread Patrick Houbaux
ork? On 4/17/07, Patrick Houbaux <[EMAIL PROTECTED] > wrote: Hello, I'm writing a client against several WSDL which are all sharing the same schemas for types. Let's say I have the following: - WSDL1 using schema typeA and schema typeB - WSDL2 using schema typ

AXIS2 - Multiple client stubs overlapping

2007-04-17 Thread Patrick Houbaux
Hello, I'm writing a client against several WSDL which are all sharing the same schemas for types. Let's say I have the following: - WSDL1 using schema typeA and schema typeB - WSDL2 using schema typeA and schema typeC When I generate the client stub with AXIS2 (using xmlbeans bindings) again

Re: Re : Re : [Axis2] Axis2 1.2 RC2 Released

2007-04-05 Thread Patrick Houbaux
s ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses. -- ---------- | Patrick Houbaux | Senior Consultant | Eurostep ABEmail: [EMAIL PROTECTED] | Drott

Re: AXIS2 - RunTimeException: : Unsupported type null Part

2007-04-05 Thread Patrick Houbaux
when specifing param.getXMLStreamReaderWithoutCaching() and getXMLStreamReader(). However it seems that former method seems to be return null for the following method java.lang.String nsUri = reader.getNamespaceContext().getNamespaceURI(nsPrefix); On 4/4/07, Patrick Houbaux < [EMAIL P

Re: AXIS2 - ADB and multiref?

2007-04-04 Thread Patrick Houbaux
would not conform to the literal schema unless the schema explicitly defines the use of multirefs.) In order to use multirefs, you must use RPC/encoded. Axis2 does not support RPC/encoded. Try Axis 1.x. Anne On 4/4/07, Patrick Houbaux <[EMAIL PROTECTED]> wrote:

AXIS2 - RunTimeException: : Unsupported type null Part

2007-04-04 Thread Patrick Houbaux
s, Patrick. -- ------ | Patrick Houbaux | Senior Consultant | Eurostep ABEmail: [EMAIL PROTECTED] | Drottninggatan 68  Mobile: +33 611 192 943 | SE-111 21 StockholmFax: +46 (0) 8-200 399 | Sweden URL: http://www.eu

AXIS2 - ADB and multiref?

2007-04-04 Thread Patrick Houbaux
same instance of the type "Product_as_individual". How do I force the server to return multiref messages (assuming that this is going to respond a shorter message with all the of_product elements referring to only instance of "Product_as_individual")? Cheers, Patrick. --