RE: Session problem with WAP protocol

2001-01-17 Thread Christopher Kirk


I cann't explain the error message with out knowing more about the code; but
if you are trying to use cookies then that could be your problem. To my
knowledge (and I will point out that I have never tried it; so hopefully
somebody will back me up when I say that) WAP does not support cookies.


- Chris.

 -Original Message-
 From: Mauricio Nuez [mailto:[EMAIL PROTECTED]]
 Sent: 17 January 2001 13:07
 To: [EMAIL PROTECTED]
 Subject: Session problem with WAP protocol
 
 
 Hi all
 I'm working with the WAP protocol, but i get the following 
 error when i load
 a session:
 
 java.lang.IllegalArgumentException: Cookie name Path is a 
 reserved token
 
 Any comments?
 
 I'm using Tomcat 3.2.1 and the wap-emulator WINWAP
 
 Thanks in advance!
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Session problem with WAP protocol

2001-01-17 Thread Mauricio Nuñez

Thanks!
Wap support cookies.
My servlet create the session, but when i reload the page, the Exception is
generated.
I guess the solution is change the name to the cookie associated to the
session.
I'm reading the documentation, but i can find (yet) where apply the change.



- Original Message -
From: "Christopher Kirk" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 17, 2001 10:18 AM
Subject: RE: Session problem with WAP protocol



 I cann't explain the error message with out knowing more about the code;
but
 if you are trying to use cookies then that could be your problem. To my
 knowledge (and I will point out that I have never tried it; so hopefully
 somebody will back me up when I say that) WAP does not support cookies.


 - Chris.

  -Original Message-
  From: Mauricio Nuez [mailto:[EMAIL PROTECTED]]
  Sent: 17 January 2001 13:07
  To: [EMAIL PROTECTED]
  Subject: Session problem with WAP protocol
 
 
  Hi all
  I'm working with the WAP protocol, but i get the following
  error when i load
  a session:
 
  java.lang.IllegalArgumentException: Cookie name Path is a
  reserved token
 
  Any comments?
 
  I'm using Tomcat 3.2.1 and the wap-emulator WINWAP
 
  Thanks in advance!
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, email: [EMAIL PROTECTED]
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Session problem with WAP protocol

2001-01-17 Thread Grzegorz Skorupa

On Wednesday 17 January 2001 15:00, you wrote:
 Thanks!
 Wap support cookies.

But you can't be sure that all wap browsers do.
If you would like to prepare 100% available service, you must use url 
rewriting. IMHO.

Regards
Grzegorz Skorupa

| [EMAIL PROTECTED] | http://pikosoft.and.pl | ICQ#: 2056044 | AIM: greskor |

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Session problem with WAP protocol

2001-01-17 Thread Mauricio Nuñez

Thanks. It's a better option.

- Original Message -
From: "Grzegorz Skorupa" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 17, 2001 10:19 AM
Subject: Re: Session problem with WAP protocol


 On Wednesday 17 January 2001 15:00, you wrote:
  Thanks!
  Wap support cookies.

 But you can't be sure that all wap browsers do.
 If you would like to prepare 100% available service, you must use url
 rewriting. IMHO.

 Regards
 Grzegorz Skorupa

 | [EMAIL PROTECTED] | http://pikosoft.and.pl | ICQ#: 2056044 | AIM:
greskor |

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Session problem with WAP protocol

2001-01-17 Thread Steven Newton



 -Original Message-
 From: Grzegorz Skorupa [mailto:[EMAIL PROTECTED]]
 
 But you can't be sure that all wap browsers do.
 If you would like to prepare 100% available service, you must use url 
 rewriting. IMHO.
 

phone.com WAP browsers using the UP.link gateway insert a header 
"x-up-subno" that is unique per device.  Instead of writing out
long mangled URLS, Save your 1200 bytes and keep session on the
server side keyed by this number.  Take a look at:
http://mail.ayg.com/pipermail/wap-dev/2000-September/003779.html
for some discussion of this.

s

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Session problem with WAP protocol

2001-01-17 Thread Steven Newton

 phone.com WAP browsers using the UP.link gateway insert a header 
 "x-up-subno" that is unique per device.  Instead of writing out

Oh I forgot to also mention the Mobile Subscriber ISDN Number used
by some phones works similarly via the X_Network_Info HTTP header.

s

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]