• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to append cookie parameters to URL

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am trying to build my web application url by appending cookie parameters and access that url in a new session. I tried two cases as described below.

1. I have one parameters in cookie. i.e JSESSIONID=xJFXQq7bGWGgrx1t064NFYb2J3qHXZG1Z5GhnNS21vmMmc2CMdDN!1491243947

If i create my url like below iam able to access my application in new session




2. If i have two parameters in cookie. One is JSESSIONID=xJFXQq7bGWGgrx1t064NFYb2J3qHXZG1Z5GhnNS21vmMmc2CMdDN!1491243947 and other is

If i create my url like below iam not able to access my application in new session. Its directing me to login page



Is this the right way of passing multiple parameters of cookie in url?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't understand. Is BIGipServerAbc a cookie as well? Or a regular request parameter?
 
Muhammad Abdul Arif
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its the cookie. In fiddler i can see two parameters in cookie. One is JSESSIONID and second is BIGipServerAbc .
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic