soap over jms

2005-01-11 Thread Lubomir ILanovsky
Hi all, does anybody know where I can find some 'ready to deploy' and well commented examples on soap over jms? (not the one included in axis) deeper tutorial on this topic would be also very appreciated :) thank you very much lubo

multiple transport choices

2005-01-17 Thread Lubomir ILanovsky
hi, I have a simple test webservice. I would like to set up a client in a way that enables user to choose which transport to use. User can achieve this by creating Call object and setting the necessary parameters manualy (call.setTransport(xxx)), but is it possible to achieve similar behaviour usin

no serializer found exception

2005-01-26 Thread Lubomir ILanovsky
hi, how should I set up the serializers for my classes when I create the instance of AxisEngine in my client app code? I have a simple service that receives and returns custom class Acount. I have registered serializer during the deployment of service. Wsdd file contains Everything work fine

Returning array of complex-type

2005-01-28 Thread Lubomir ILanovsky
hi, I have a web service which should return an array of complex-types. But it does not work properly. My complex type looks like this: public class UctovnyZapisDTO { int id; String doklad; float suma; ... } Fields are of type int, float and String only. Type mappi

Re: Returning array of complex-type

2005-01-28 Thread Lubomir ILanovsky
I've just found out that everything works fine if I set the sendMultiRefs parameter to false in server-config.wsdd. ... ... Lubomir ILanovsky wrote: hi, I have a web service which should return an array of complex-types. But it does not work properly. My complex type looks like