AW: Deploying the client for session handling using SimpleSessionHand ler

2002-12-18 Thread Sebastian . Beyer
Hamburg -Ursprüngliche Nachricht- Von: Klaus Thiele [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 18. Dezember 2002 12:54 An: [EMAIL PROTECTED] Betreff: Re: Deploying the client for session handling using SimpleSessionHand ler Hi Sebastian, i played a little bit around with this technique

Re: Deploying the client for session handling using SimpleSessionHand ler

2002-12-18 Thread Klaus Thiele
Hi Sebastian, i played a little bit around with this technique but i don't know where it is good for. the only difference i see is the sessionid in the soap-header instead of "cookie: jsessionid=..." in the http-header and an SimpleSession-object instead of an AxisHttpSession-object in my service

Deploying the client for session handling using SimpleSessionHandler

2002-12-17 Thread Sebastian . Beyer
ings from Hamburg/Germany -Ursprüngliche Nachricht- Von: Klaus Thiele [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 13. Dezember 2002 17:09 An: [EMAIL PROTECTED] Betreff: Re: AW: Deploying the client Hi Sebastian, i'm new to axis an i'm currently working at this problem too.

AW: AW: AW: AW: AW: AW: Deploying the client

2002-12-17 Thread Sebastian . Beyer
W: AW: Deploying the client thanks sebastian, as i see, it's the same in .NET. > ahhh thats your problem. In the documentation they say, that you have > to which documentation? i have only that one which comes with the distribution. klaus Am Dienstag, 17. Dezember 2002 10:08 schrieb

AW: AW: AW: AW: AW: AW: Deploying the client

2002-12-17 Thread Klaus Thiele
thanks sebastian, as i see, it's the same in .NET. > ahhh thats your problem. In the documentation they say, that you have to which documentation? i have only that one which comes with the distribution. klaus Am Dienstag, 17. Dezember 2002 10:08 schrieb [EMAIL PROTECTED]: > Hi Klaus, > > ahhh

AW: AW: AW: AW: AW: Deploying the client

2002-12-17 Thread Sebastian . Beyer
02 10:02 An: [EMAIL PROTECTED] Betreff: AW: AW: AW: AW: AW: Deploying the client Hi, yes, but with scope as "session" i get _also_ a new session object each time i request a method if i don't set maintainsession to true at client-code - thats why i'm irritated. (with scope as

AW: AW: AW: AW: AW: Deploying the client

2002-12-17 Thread Klaus Thiele
Hi, yes, but with scope as "session" i get _also_ a new session object each time i request a method if i don't set maintainsession to true at client-code - thats why i'm irritated. (with scope as "application" it works as expectet _without_ do anything at client-side - same object for each reques

AW: AW: AW: AW: Deploying the client

2002-12-17 Thread Sebastian . Beyer
CTED]] Gesendet: Dienstag, 17. Dezember 2002 09:11 An: [EMAIL PROTECTED] Betreff: AW: AW: AW: AW: Deploying the client Hi Sebastian, > Why do you think that something gows wrong on server side? If you > deployed yes, it works fine if i deploy the service with _and_ set maintainsession to t

AW: AW: AW: AW: Deploying the client

2002-12-17 Thread Klaus Thiele
Hi Sebastian, > Why do you think that something gows wrong on server side? If you deployed yes, it works fine if i deploy the service with _and_ set maintainsession to true in the client code. but imho, i expected to do _nothing_ at client side to get sessions working if i deployed with sess

AW: AW: AW: Deploying the client

2002-12-16 Thread Sebastian . Beyer
EMAIL PROTECTED] Betreff: Re: AW: AW: Deploying the client Hi Sebastian, > i'm already doing this. i'd like to something like this: public interface PersdatSoap { public boolean signon(String uid); public PersdatSoapData read(); public voidwri

Re: AW: AW: Deploying the client

2002-12-16 Thread Klaus Thiele
Hi Sebastian, > i'm already doing this. i'd like to something like this: public interface PersdatSoap { public boolean signon(String uid); public PersdatSoapData read(); public voidwrite(PersdatSoapData data); public Collectioncmb_land(); }

Re: AW: Deploying the client

2002-12-13 Thread Barry Levinson
To work with session scope in a .NET client, the client must be able to accept a cookie. All you need to do is to add a CookieContainer to your service client class. Use the following code (C#) : some.url.of.service.someService myService = new some.url.of.service.someService() ; myService.Coo

AW: AW: Deploying the client

2002-12-13 Thread Sebastian . Beyer
2 17:09 An: [EMAIL PROTECTED] Betreff: Re: AW: Deploying the client Hi Sebastian, i'm new to axis an i'm currently working at this problem too. java org.apache.axis.wsdl.WSDL2Java --deployScope Session writes to deploy.wsdd - but it seems that it hasn't any e

Re: AW: Deploying the client

2002-12-13 Thread Klaus Thiele
Hi Sebastian, i'm new to axis an i'm currently working at this problem too. java org.apache.axis.wsdl.WSDL2Java --deployScope Session writes to deploy.wsdd - but it seems that it hasn't any effect. in my client i do MyServiceLocator sl = new MyServiceLocator(); sl.set

AW: Deploying the client

2002-12-13 Thread Pascal Wissler
tp://marc.theaimsgroup.com/?l=axis-user&m=102933762617005&w=2 Regards. Pascal. -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 13. Dezember 2002 16:26 An: [EMAIL PROTECTED] Betreff: AW: Deploying the client Hi Pascal, thanks a lo

AW: Deploying the client

2002-12-13 Thread Sebastian . Beyer
ember 2002 14:44 An: [EMAIL PROTECTED] Betreff: AW: Deploying the client Hi Sebastian, you don't need "deployment on the client-side". If you want to access your webservice in a static way, you could use the wsdl2java tool to generate a client-side "static invocation in

AW: Deploying the client

2002-12-13 Thread Pascal Wissler
TED] [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 13. Dezember 2002 14:22 An: [EMAIL PROTECTED] Betreff: Deploying the client Hi there, I'm using Axis 1.0 and I set up the server. It is running and a normal small client is able to invoke the methods. Also Serialization/DeSerialization of

Deploying the client

2002-12-13 Thread Sebastian . Beyer
Hi there, I'm using Axis 1.0 and I set up the server. It is running and a normal small client is able to invoke the methods. Also Serialization/DeSerialization of JavaBeans works perfectly. I wrote the client, as it is described in the userguide: Service service = new Service(); Call call = (Call