RE: Problems using XPath in Axiom when namespaces are involved

2009-10-23 Thread Robert Baldock
Andreas - Thanks for the information. I found this example showing how to build queries for default namespaces in Jaxen: http://jaxen.codehaus.org/faq.html Mapping that to AXIOMXPath: SimpleNamespaceContext context = new SimpleNamespaceContext(); context.addNamespace(pre, uri); String

Axis2 Problem

2009-10-23 Thread dpeinador
Hello all, I am having a problem with Axis2. I have done some tests and I can not advance. All the inner attributes of the objects I receive are null. In the server side I have a simple class: public class MyItem implements Serializable { private static final long serialVersionUID =

Re: Axis 2 (1.5) - Unable to find service for POJO

2009-10-23 Thread mule_user
When I enter url: http://localhost:9081/Axis2Weather/services/listServices I get the following error: java.io.FileNotFoundException: JSPG0036E: Failed to find resource /axis2-web/listServices.jsp at

RE: Axis2 Problem

2009-10-23 Thread Juan Moratilla Peón
Is logical, in the method: (see my comments) public MyItem getItem(){ MyItem i = new MyItem(); //You have built an Item with an empty message atributte. return i; } You are not setting any value to the MyItem object. You have forgotten to set a value. Just add the i.set(value) line:

Re: Axis2 Problem

2009-10-23 Thread Deepal jayasinghe
How about MyItem as I can see it is a not a Java bean. To be a valid Java bean you need to have following stuff in your class; - default constructor - getter and setter for each filed you want to expose Thanks, Deepal Hello all, I am having a problem with Axis2. I have done some tests and I

RES: Problems with Date objects on Axis2

2009-10-23 Thread Guilherme Fré
Hi Amila, I found out what was my problem. I noticed that when I use date time objects and the Visual Studio helper for creating the client code, besides de date time objects, bool objects are created for each one of them with the name %nome%Specified, where %nome% is the name of the date time

Re: Axis2 Problem

2009-10-23 Thread dpeinador
Thank you, it was the error. Deepal Jayasinghe-2 wrote: How about MyItem as I can see it is a not a Java bean. To be a valid Java bean you need to have following stuff in your class; - default constructor - getter and setter for each filed you want to expose Thanks, Deepal Hello

One Webservice with many Methods which are in different Namespaces

2009-10-23 Thread Max Unrau
Hello everybody, is it possible to create a Webservice with many Methods, which are in different Namespaces and have their one SOAPAction_ And how can I config this? Thanks for any Idee. Max ___ Neu: WEB.DE DSL bis 50.000 kBit/s und

RE: JMS timeout

2009-10-23 Thread jsheh
setting this on the stub, did it for me. options.setProperty(JMSConstants.JMS_WAIT_REPLY,Long.valueOf(some_value_inmillisecs)); hope it helps. mgainty wrote: take a look at JMSEndpoint javadoc at

Re: RES: Problems with Date objects on Axis2

2009-10-23 Thread Mauro Molinari
Guilherme Fré ha scritto: Hi Amila, I found out what was my problem. I noticed that when I use date time objects and the Visual Studio helper for creating the client code, besides de date time objects, bool objects are created for each one of them with the name %nome%Specified, where %nome%

Re: Is WRAPPED LITERAL web service not compatible for C# clients?

2009-10-23 Thread Srinivasa K
Thanks for your help on this. We prefer to use Wrapped Literal. We got a work around this issue. If we comment line like: [System.Xml.Serialization.XmlTypeAttribute (Namespace=http://data.us.org.test)] in the C# reference file, its working. I dont know that we have better approach than this one.

How to get an instance of java.io.Socket class of HTTP response

2009-10-23 Thread Yuzo Koga
Hi, I'm new to axis2. I would like to implement to check at server side, if there is a TCP connection between client and server (i.e., check that the connection has not yet been time-outed), before I send a SOAP response message to the client over HTTP. In order to check it, I think I have to

[ANNOUNCE] Axis2 1.5.1

2009-10-23 Thread Glen Daniels
Hi all: The Apache Axis2 team is pleased to announce the release of Axis2 version 1.5.1. Major Changes Since 1.5: * Fix for the dreaded CLOSE_WAIT problem (JIRA issues 935, 2883, etc). We now share an instance of HTTPClient across each ConfigurationContext (i.e. each Axis2 server or