BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 06-18-2010, 01:00 PM   #1
doom777
New Member
 
Join Date: Jun 2010
Model: 8300
PIN: N/A
Carrier: ATT
Posts: 9
Default Cookie Management in Java applications

Please Login to Remove!

While your program will work in simulator, you actually have to manage yuor cookies in yuor app, since it won't work otherwise on the actual device. The reason, is that MDS manages cookies for you, however on the device, there is no MDS.

Thus, managing your request yuo have to write something like:
Code:
if(this.cookie != null) _connection.setRequestHeader("Cookie", this.cookie);
and managing the response:
Code:
this.cookie = _connection.getHeaderField("Set-Cookie");
Offline  
Old 06-22-2010, 12:37 AM   #2
anuj866
Knows Where the Search Button Is
 
Join Date: Feb 2010
Model: 7100t
PIN: N/A
Carrier: VODAFONE
Posts: 18
Default

i've just done the way you've mentioned above but now the response given from the server is multiple cookies( two cookies are sent)
these two cookies can be easily viewed from a browser which are as below
cookie: login=3
cookie: logincookies= <some session id>

but on device when i performed debug i came to know that the device receives the first cookie(i.e. login=3) twice(duplicated) instead of two different cookies

both of these cookies are required for me to use in the webservice, do you have any clue as to where am i going wrong.
let me know bro.
Offline  
Old 07-06-2010, 07:16 AM   #3
ebaskoro
New Member
 
Join Date: Jul 2009
Location: Jakarta
Model: 8320
OS: v4.5
PIN: N/A
Carrier: XL
Posts: 3
Post

Quote:
Originally Posted by doom777 View Post
Code:
this.cookie = _connection.getHeaderField("Set-Cookie");
Bad idea!

Use the following instead:

Code:
for (int i = 0; _connection.getHeaderFieldKey(i) != null; i ++) {
   String headerKey = _connection.getHeaderFieldKey(i);

   if (headerKey.equalsIgnoreCase("set-cookie")) {
      String cookie = _connection.getHeaderField(i);
      // process or save the cookie
   }
}
Otherwise you will return the same string.
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Vintage MAC Knife Japan 4.75

Vintage MAC Knife Japan 4.75" Folding Lock Blade Knife Chef Pocket Knife Utility

$224.99



Vintage MAC Tools UVEX Adjustable Safety Glasses Motorcycle Mechanic Lawnmower picture

Vintage MAC Tools UVEX Adjustable Safety Glasses Motorcycle Mechanic Lawnmower

$55.24



Vintage Mac Tools USA 10” Adjustable Wrench AJC10 Forged USA picture

Vintage Mac Tools USA 10” Adjustable Wrench AJC10 Forged USA

$14.48



VINTAGE RICHARD PETTY #43 MAC TOOLS RACING RED MAGNETIC CAR FENDER COVER picture

VINTAGE RICHARD PETTY #43 MAC TOOLS RACING RED MAGNETIC CAR FENDER COVER

$72.00



Vintage Mac Warehouse  3.5” Floppy Disk Solar Powered Calculator Company Swag picture

Vintage Mac Warehouse 3.5” Floppy Disk Solar Powered Calculator Company Swag

$74.00



Vintage Mac Tools AW343 Series 1/2 Pneumatic Impact Driver  picture

Vintage Mac Tools AW343 Series 1/2 Pneumatic Impact Driver

$40.00







Copyright 2004-2016 BlackBerryForums.com.
The names RIM and BlackBerry are registered Trademarks of BlackBerry Inc.