[Axis2] Fault Tolerance Example

2006-05-20 Thread kensky
Hie, Is there any example available for handling fault tolerance in Axis2. Btw I am planning to use passive(with state update) replication. My second questions is, if I have xml database on the backend of webservice, how could I achieve the replication in case if both are (tight or loose) coup

Re: Migrating to Axis 2

2006-05-20 Thread Scott McCoy
I see, so I'm basically married to axis 1.3 for the time being.- ScottOn 5/20/06, Anne Thomas Manes <[EMAIL PROTECTED] > wrote:Axis 2 does not yet support automatic unwrapping of wrapped doc/literal ... On 5/20/06, Scott McCoy < [EMAIL PROTECTED]> wrote: Okay, attached is a WSDL that worked fine f

RE: passing XML document as input parameter

2006-05-20 Thread Ken Tam
Hi all,   There are quite a few postings on this topic. Another (preferred) alternative is to pass XML as an attachment.   Regards, Ken -Original Message-From: Suavi Ali Demir [mailto:[EMAIL PROTECTED]Sent: Wednesday, May 17, 2006 10:45 AMTo: axis-user@ws.apache.orgSubject: R

[Axis2] obtaining the service class through factory ?

2006-05-20 Thread sol myr
Hi,   Is there a way to instantiate Service classes through a factory, rather than the 'no arg' constructor ?   I mean, usually the "services.xml" is something like: - < service >-   < parameter name="ServiceClass" locked="false" > package.MyService So the axis2 servlet instantiates the servi

Re: [Axis2][1.0] interop with .NET

2006-05-20 Thread Kinichiro Inoguchi
dims, Remy, and Anne, thanks for your answer & comments. To: dims I logged this issue to JIRA as AXIS2-756. I also mentioned about 'attributeFormDefault' in JIRA. To: Remy >I tried with Axis 1.2 and 1.4 and .Net framework 1.0 and 2.0 I tried with Axis2 1.0 and VisualStudio .NET 2003 and Offic

[Axis2] WS-PolicyAttachment and WSDL2Java

2006-05-20 Thread Jakob Roed Kierkegaard
I'm trying to create a service skeleton out from a wsdl document where I in the binding element have added a refference to a policy that should enforce the use of a UsernameToken. I have two problems doing this: 1) When i attach it to: URI="http://itu.dk/people/jakob/policies/policy.x

Re: Migrating to Axis 2

2006-05-20 Thread Anne Thomas Manes
Axis 2 does not yet support automatic unwrapping of wrapped doc/literal ...On 5/20/06, Scott McCoy <[EMAIL PROTECTED]> wrote: Okay, attached is a WSDL that worked fine for generating very simple to use wrapped document/literal services with WSDL2Java. Now, the code WSDL2Java generates is as though

Re: Migrating to Axis 2

2006-05-20 Thread Martin Gainty
Actually using WSDL2Java is MUCH easier than that Robertspecifically here are the options that are available- Usage:  java org.apache.axis.wsdl.WSDL2Java [options] WSDL-URIOptions:    -h, --help    print this message and exit    -v, --verbose    print inform

Re: Migrating to Axis 2

2006-05-20 Thread robert lazarski
To help, I'd need to see your command line / ant options you are passing to wsdl2java. If you are migrating from axis  1.x , did you take a look at the databinding section in the migration guide? http://ws.apache.org/axis2/1_0/migration.html Robert http://www.braziloutsource.com/On 5/20/06, Sc

Re: Question on how to generate faults

2006-05-20 Thread Scott McCoy
In Axis 1, use org.apache.axis.AxisFault.If you just want to wrap an exception, the easiest way is to:catch (Exception exception) {    throw AxisFault.makeFault(exception);}Cheers,   Scott S. McCoy On 5/19/06, Venkat Gyambavantha <[EMAIL PROTECTED]> wrote: Hi,   I used wsdl2java to g

Migrating to Axis 2

2006-05-20 Thread Scott McCoy
Okay, attached is a WSDL that worked fine for generating very simple to use wrapped document/literal services with WSDL2Java.Now, the code WSDL2Java generates is as though the wrapped document/literal convention is broken. It accepts a "Request" bean for each argument, and expects a "Response" bean

[Axis2][1.0] SimpleJMSListener in web applicaton

2006-05-20 Thread Laszlo Czegledi
Hi, Besides receiving incoming messages through AxisServlet, I would like to get messages from permanent JMS queues in my web application. I uncommented and configured the jms transportReceiver section in axis2.xml. It seems that the listener is added to the transportsIn map in AxisConfigurati