RE: AXISCPP: autogenerated class misinterprets type of its member

2009-01-06 Thread McCullough, Ryan
Also, don't forget to include the command line you use to generate the Axis C++ soap stubs. -Original Message- From: McCullough, Ryan Sent: Tuesday, January 06, 2009 4:46 PM To: Apache AXIS C User List Subject: RE: AXISCPP: autogenerated class misinterprets type of its member If you

Re: Axis2/jax-ws unmarshal response

2009-01-06 Thread Pauli Savolainen
Hello, issue solved. I was using the wrong message receiver. Instead of org.apache.axis2.rpc.receivers.RPCMessageReceiver I am supposed to use the org.apache.axis2.jaxws.server.JAXWSMessageReceiver. How silly of me. Pauli -- View this message in context:

getting typeTable from wsdl url?

2009-01-06 Thread אלחנן מעיין
Hi.. I have a service in biztalk, is there a way that I can get it's TypeTable class from wsdl? I was thinking I could use that type table for BeanUtil.getOMelement so it would convert my beans correctly according the schema

List of free webservices

2009-01-06 Thread florin.botis
Hello, I'm a student in computer science and I need some web services for some project. I don't know what kind of web services but I will chose one when I will have some options. Please tell me where I can find some nice/cool web services in the web. If you know some please send me the link of

Re: List of free webservices

2009-01-06 Thread keith chapman
You can try mooshup.com You can register there for free and create your own services using JavaScript as well. Thanks, Keith. On Tue, Jan 6, 2009 at 11:04 PM, florin.botis fld...@yahoo.com wrote: Hello, I'm a student in computer science and I need some web services for some project. I

[Axis2] How to manually configure JAX-WS Services

2009-01-06 Thread Víctor Downs
Hello everybody. Its just recently that I found out that Axis2 supports JAX-WS, so I was eager to try it. I followed a top down approach, using wsimport and an existing WSDL file (SampleWS.wsdl) to generate java artifacts, then copied the generated files to an existing project. Although I'm kind

WSDL Generation has incorrect port

2009-01-06 Thread Kevin Witten
Hello, I am using Axis2 1.4.1 with Tomcat 6.0 and Apache2.2 httpd. I setup Apache httpd to only support SSL and to connect to Tomcat via a proxy (AJP), via port 8009. Apache httpd.conf has SSLProxyEngine On ProxyRequests Off ProxyPass / ajp://localhost:8009/ ProxyPassReverse /

Bug with POJOs w/ HashSet bug (aka AXIS2-4121)

2009-01-06 Thread Comerford, Sean
I¹m trying to use the Pojo functionality of Axis2 using the latest release build (1.4.1). Simple examples work great but my ³real² POJO has fields like this: SetFanTeam teams = new HashSetFanTeam(); Those seem to be causing problems. I can successfully invoke the service but when it tries to

Returning from a different package

2009-01-06 Thread Jason Wells
Hi, I'm new to the Axis2/SOAP world and I'm using Tomcat 6/Axis2 1.4.1. I'm running into a problem. I've written a simple Java POJO service and generated ADB client code from its generated WSDL. One of its operations returns another simple POJO, in this case having two String members. When

Re: Returning from a different package

2009-01-06 Thread Deepal Jayasinghe
Hi, It is not the QName different in those two cases, it is just the prefix. It does not matter what the prefix is. What you need to do is too compare the response with the WSDL. Since you are new the Web service, one thing you can do is send us the WSDL, then we can tell what the problem is.

Re: WSDL Generation has incorrect port

2009-01-06 Thread Nandana Mihindukulasooriya
Hi Kevin, Did you try this with the trunk ? There were few changes with respect to this in the trunk. thanks, nandana On Wed, Jan 7, 2009 at 3:45 AM, Kevin Witten kevin.wit...@nomadix.comwrote: Hello, I am using Axis2 1.4.1 with Tomcat 6.0 and Apache2.2 httpd. I setup Apache

Re: XMLStreamException: end reached! - More details provided

2009-01-06 Thread Deenadayalan J
Hi All, I got some more inputs and need your help in this regard. I am getting this error consistently now for one sample data. I will provide details of what I have found till now. Below is the request XML generated at my client end. I am working on a Web application and the app is a client to

Two XBeans-packaged.jar having same class name

2009-01-06 Thread Aseem Sharma
Hello, I have created client stubs for two different web services using axis2(ver 1.4, xmlbeans binding, asynchronous, different directory structure). Two -test-client.jar files are created. I have put both the jars in lib directory of axis2 as I have to call both the webservices from the same

Two XBeans-packaged.jar having same class name

2009-01-06 Thread Aseem Sharma
Hello, I have created client stubs for two different web services using axis2(ver 1.4, xmlbeans binding, asynchronous). Two -test-client.jar files are created. I have put both the jars in lib directory of axis2 as I have to call both the webservices from the same project. I am able to call

Re: ADB maxlength

2009-01-06 Thread asheikh
Hi I have similar problem, can anyone, please, put some light why axis2 1.3/1.4 doesn't check xsd:maxLength, In my case, the client application can set the field value either in Arabic or English which has different character length. Thanks in advance On Wed, May 21, 2008 at 10:52 PM,

Re: ADB maxlength

2009-01-06 Thread Amila Suriarachchi
On Thu, May 22, 2008 at 1:22 AM, sultanat asultanud...@yahoo.com wrote: For the following schema, the axis2 1.4 ADB doesnt check for max length, it is only checking for the regular expression. Can anyone please help me with this. xsd:element name=name xsd:simpleType xsd:restriction

Code changes for Axis 14 support for optional sequence and choice

2009-01-06 Thread vernekap
Recently for one of my projects, I needed Axis 14 to support - optional sequences --verify that mandatory elements below optional sequence are either all present or none - mandatory choice -- verify only one of choice element is present - optional choice -- verify 0/1 of choice