Oro smith schrieb:
The following error message is seen in the error.log file when clicking the link to go the url http://xxx:8888/mail/mail/mail.wml?id=2.wml "Cannot get store and connect null." However this error is noticed only in the mobile phone and no such messages are seen when the same url is accessed from the opera web browser. Why is this so?? is this because session is not being created. If so why is session not created only in the mobile phone and not in opera browser?? regards.
handsets themselves don't necessarily support cookies. but gateways normally manage cookies for those handsets.
the servlet spec provides for session management via cookies or URL encoding.
so...
- opera supports cookies -> session tracked -> works
- (I assume) your handset doesn't support cookies itself -> session not tracked via cookie -> doesn't work
- (I assume) you're not using URL encoding for session tracking -> session not tracked -> doesn't work
based on those assumptions I suggest the following; read the documentation on URLEncoderTransformer and then apply it to your pages.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
