RE: Stateful web services.

2003-04-04 Thread Clay Graham
, April 03, 2003 5:44 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Stateful web services. See directions for patches at http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/SubmitPatc hes --- Clay Graham <[EMAIL PROTECTED]> wrote: > Absolutely. > > I am not real fa

RE: Stateful web services.

2003-04-03 Thread Davanum Srinivas
com/ > > > > -Original Message- > From: Tom Jordahl [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 03, 2003 1:50 PM > To: '[EMAIL PROTECTED]' > Subject: RE: Stateful web services. > > > > Clay, > > This is great. Do you think you

RE: Stateful web services.

2003-04-03 Thread Clay Graham
. making the mobile-world-office http://www.newobjectivity.com/ -Original Message- From: Tom Jordahl [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 1:50 PM To: '[EMAIL PROTECTED]' Subject: RE: Stateful web services. Clay, This is great. Do you think you could che

Re: Stateful web services.

2003-04-03 Thread Steve Loughran
Tom Jordahl wrote: Clay, This is great. Do you think you could check out the current Axis HTML docs and see if you can put together a patch that would integrate this in to it? Your code could just be new files in the samples directory. what about adding it to the wiki? http://nagoya.apache.org/

RE: Stateful web services.

2003-04-03 Thread Tom Jordahl
increase the chances that someone (me) would check it in to the tree for others. -- Tom Jordahl Macromedia Server Development -Original Message- From: Clay Graham [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 3:22 PM To: [EMAIL PROTECTED] Subject: RE: Stateful web services

RE: Stateful web services.

2003-04-03 Thread Clay Graham
[SOLUTION] I am including the full solution because I think this is the type of thing everybody wants # 1. Create your service /* * NOIMailService.java * * Created on April 2, 2003, 5:19 PM */ package com.noi.mailservl

Re: Stateful Web Services

2003-01-17 Thread Toshiyuki Kimura
formation to have as a user, (BI believe. (B (BThomas (B (B-Original Message- (BFrom: Toshiyuki Kimura [mailto:[EMAIL PROTECTED]] (BSent: Thursday, January 16, 2003 3:12 AM (BTo: [EMAIL PROTECTED]; [EMAIL PROTECTED] (BSubject: Re: Stateful Web Services (B (BHi Thomas and Ann

Re: Stateful Web Services

2003-01-16 Thread Bill de hÓra
Steve Loughran wrote: think about this for a moment. How are you going to specify bank account and auth info? If it goes with every request, then you could be stateless. Otherwise the caller needs to first 'bind' to an account, then make requests on it. We call that 'state', no matter how it is a

Re: Stateful Web Services

2003-01-16 Thread Nirmal Mukhi
[EMAIL PROTECTED]> om> cc: Subject: Re:

RE: Stateful Web Services

2003-01-16 Thread thomas . cherel
Title: RE: Stateful Web Services I understand your point of view, but for an Axis user I think it is also important to understand what is behind "session.maintain=true". The user can choose this way and the day he has a requirement to support SOAP over JMS for example, he needs

RE: Stateful Web Services

2003-01-16 Thread Anne Thomas Manes
ntical functionality (Bacross any transport protocol. (B (BBest regards, (BAnne (B (B> -Original Message- (B> From: Toshiyuki Kimura [mailto:[EMAIL PROTECTED]] (B> Sent: Thursday, January 16, 2003 3:12 AM (B> To: [EMAIL PROTECTED]; [EMAIL PROTECTED] (B> Subject: Re: Statef

Re: Stateful Web Services

2003-01-16 Thread Toshiyuki Kimura
s all I'd like to notify. (B (BRegards, (B (BToshiyuki Kimura <[EMAIL PROTECTED]> (BR&D Headquarters (BNTT DATA Corp. (B (B-Original Message- (BFrom: [EMAIL PROTECTED] (B[mailto:[EMAIL PROTECTED]] (BSent: Thursday, January 16, 2003 12:01 AM (BTo: [EMA

Re: Stateful Web Services

2003-01-15 Thread Ricky Ho
> So instead of using an "explicit" session id to represent the session, I > like better the idea that the "session" can be derived from the message > itself. In the previous example David gave, that means I look for the > "bank account number" from the message to identify a session, regardless

Re: Stateful Web Services

2003-01-15 Thread Toshiyuki Kimura
Hi Steve, (B (B> -Original Message- (B> From: Steve Loughran [mailto:[EMAIL PROTECTED]] (B> Sent: Thursday, January 16, 2003 8:12 AM (B> To: [EMAIL PROTECTED] (B> Subject: Re: Stateful Web Services (B : (B> The weakness of cookies is they are transport

Re: Stateful Web Services

2003-01-15 Thread Steve Loughran
- Original Message - From: "Ricky Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 16:35 Subject: Re: Stateful Web Services > I think reinventing the idea of cookies at the SOAP header will solve the &

Re: Stateful Web Services

2003-01-15 Thread Ricky Ho
    Rgds, Ricky At 03:12 PM 1/15/2003 -0800, Steve Loughran wrote: - Original Message - From: "Ricky Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 14:13 Subject: RE: Stateful Web Services > Most

Re: Stateful Web Services

2003-01-15 Thread Ricky Ho
You need to tell the client to "store all cookies you receive, and resend it in your next request". Also, there is nothing in the WSDL telling the client that the state is maintained in the server side. The fact that "session scope" is configured is purely an implementation detail. Therefore,

Re: Stateful Web Services

2003-01-15 Thread Steve Loughran
- Original Message - From: "Ricky Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 14:13 Subject: RE: Stateful Web Services > Most Java-based SOAP engine (over HTTP) implementation leverages the >

RE: Stateful Web Services

2003-01-15 Thread Ricky Ho
Most Java-based SOAP engine (over HTTP) implementation leverages the Servlet model which allows you to specify whether the service implementation object is "request", or "session", or "application" scope. But there is no industry standards around this, and there is no way to communicate this st

Re: Stateful Web Services

2003-01-15 Thread David Peterson
8 PM To: [EMAIL PROTECTED] Subject: Re: Stateful Web Services Hi Steve, But in the simplest possible case, where I just want to persist data between *invocations* (i.e. separate calls), do I still need session info to be propogated client side? e.g. Call 1: deposit(100); Call 2: depos

Re: Stateful Web Services

2003-01-15 Thread Barry Levinson
D]> (B>To: <[EMAIL PROTECTED]> (B>Sent: Wednesday, January 15, 2003 12:02 (B>Subject: Re: Stateful Web Services (B> (B> (B> (B> (B>>Thanks Barry, (B>> (B>>This was the kind of "statefulness" and "persistence" that I am

Re: Stateful Web Services

2003-01-15 Thread Steve Loughran
(B- Original Message - (BFrom: "David Peterson" <[EMAIL PROTECTED]> (BTo: <[EMAIL PROTECTED]> (BSent: Wednesday, January 15, 2003 12:48 (BSubject: Re: Stateful Web Services (B (B (B> (B> Hi Steve, (B> (B> But in the simplest possible case, whe

RE: Stateful Web Services

2003-01-15 Thread Chris Forbis
ED]] Sent: Wednesday, January 15, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: Re: Stateful Web Services Hi Steve, But in the simplest possible case, where I just want to persist data between *invocations* (i.e. separate calls), do I still need session info to be propogated client side? e.g. Call

Re: Stateful Web Services

2003-01-15 Thread David Peterson
Peterson" <[EMAIL PROTECTED]> (B>To: <[EMAIL PROTECTED]> (B>Sent: Wednesday, January 15, 2003 12:02 (B>Subject: Re: Stateful Web Services (B> (B> (B> (B> (B>>Thanks Barry, (B>> (B>>This was the kind of "statefulness" and &q

Re: Stateful Web Services

2003-01-15 Thread Steve Loughran
(B- Original Message - (BFrom: "David Peterson" <[EMAIL PROTECTED]> (BTo: <[EMAIL PROTECTED]> (BSent: Wednesday, January 15, 2003 12:02 (BSubject: Re: Stateful Web Services (B (B (B> (B> (B> Thanks Barry, (B> (B> This was the kind of "

Re: Stateful Web Services

2003-01-15 Thread David Peterson
(B (BThanks Barry, (B (BThis was the kind of "statefulness" and "persistence" that I am (Binterested in (though I was also interested to hear what was said re (BSOAP and sessions by Anne et al., as this was another question I had). (B (BCan you tell me, why does the client need to set "mai

RE: Stateful Web Services

2003-01-15 Thread thomas . cherel
- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 8:47 AM To: [EMAIL PROTECTED] Subject: RE: Stateful Web Services I would not view the JAX-RPC 1.0 spec as the definitive source of Web services standards information. Particularly when it comes to advanced features

Re: Stateful Web Services

2003-01-15 Thread Barry Levinson
--- (B>>From: Toshiyuki Kimura [mailto:[EMAIL PROTECTED]] (B>>Sent: Wednesday, January 15, 2003 4:35 AM (B>>To: [EMAIL PROTECTED] (B>>Subject: Re: Stateful Web Services (B>> (B>> (B>>Hi Thomas, (B>> (B>> I be

RE: Stateful Web Services

2003-01-15 Thread Anne Thomas Manes
hat stateful (Bsessions are a "bad" thing. Quite a few folks even get religious about it. (B (BAnne (B (B> -Original Message- (B> From: Toshiyuki Kimura [mailto:[EMAIL PROTECTED]] (B> Sent: Wednesday, January 15, 2003 4:35 AM (B> To: [EMAIL PROTECTED] (B> Subj

Re: Stateful Web Services

2003-01-15 Thread Toshiyuki Kimura
EMAIL PROTECTED] (BSent: Wednesday, January 15, 2003 2:39 PM (BTo: [EMAIL PROTECTED] (BSubject: RE: Stateful Web Services (B (BAs usual it is always a little bit more complicated than that . (B (BThere is not a lot of "standard" API interface to Web Services. (BSun has a standar

RE: Stateful Web Services

2003-01-14 Thread thomas . cherel
Title: RE: Stateful Web Services As usual it is always a little bit more complicated than that . There is not a lot of "standard" API interface to Web Services. Sun has a standard API called JAXRPC which can be used as a standard web service client API, where the notion of

Re: Stateful Web Services

2003-01-14 Thread David Peterson
Anne, Thanks for the link and info. Do you know, can I still use an approach such as connecting a web service to a EJB, or regular Java Bean, or a JDBC session? It surprises me that the concept of a stateful web service has not been tackled by various web services standards bodies (e.g. OASIS

RE: Stateful Web Services

2003-01-14 Thread Anne Thomas Manes
It depends on the SOAP implementation you're using. Most products don't support stateful services. Some do: Systinet WASP, Oracle SOAP, Apache SOAP, maybe a few others. Interoperability is a big issue, though. BEA published a proposed SOAP extension called SOAP Conversation (http://dev2dev.bea.com/

Re: stateful web services (a minor complaint)

2002-04-02 Thread Stan Jordan
len Daniels" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 01, 2002 8:33 PM Subject: RE: stateful web services (a minor complaint) > > Hola, Stan! > > Comments inline: > > > The good news is that it's very easy to develop stateful web servi

RE: stateful web services (a minor complaint)

2002-04-01 Thread Glen Daniels
Hola, Stan! Comments inline: > The good news is that it's very easy to develop stateful web services > (hooray!). But... > 1. If you write your client 'by hand' you must include this > statement in > Client.java: > call.setMaintainSession(true); > 2. If you generate a wsdl file and