• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Session

 
Ranch Hand
Posts: 293
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have doubt in session . I have opened 10 browsers with same user and password.
if i had make any changes to 1 st browser, then it will effect those changes in another browsers.
what happens if i close the 1 st browser and try to use the session of 1 st browser in 5th browser
 
Ranch Hand
Posts: 31
MyEclipse IDE
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Rajendra Prakash
dont try it at home. This testing needs professioanl programmers.

Is there any body professioanl who can do it for us?

Thanks in advance.
 
Ranch Hand
Posts: 2066
IntelliJ IDE Clojure Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rajendra Prakash wrote:I have doubt in session . I have opened 10 browsers with same user and password.
if i had make any changes to 1 st browser, then it will effect those changes in another browsers.
what happens if i close the 1 st browser and try to use the session of 1 st browser in 5th browser



Your question isn't clear, what do you mean by changes in the browser? Or it's about changing the state of the session in the 1st browser? If you change the session, it should be reflected in the next invocation for those sessions.

And 1st browser means 1st window/tab of the same browser.
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Vijay Bhuruk wrote:@Rajendra Prakash
dont try it at home. This testing needs professioanl programmers.

Is there any body professioanl who can do it for us?

Thanks in advance.


What?
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rajendra Prakash wrote:what happens if i close the 1 st browser and try to use the session of 1 st browser in 5th browser


It depends on the browser: With some browsers a new window would create a new session on the server, some won't. If it doesn't create a new session, then each browser window will be using the exact same session.
 
Abimaran Kugathasan
Ranch Hand
Posts: 2066
IntelliJ IDE Clojure Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

David Newton wrote:
It depends on the browser: With some browsers a new window would create a new session on the server, ...



Is it? strength! Could you Please, and if you can, give us some example? I though that, they are using the same session.

Thanks in Advanced!~
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I forget which is which; I think IE used to give new sessions for new windows. But could be remembering completely incorrectly.
 
Ranch Hand
Posts: 138
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, i think with Tabs the same session is used and using the New Window new session is created... if i am not wrong.

So, as related to the post, How we will track the New Tabs opened in the Browsers like in Firefox and IE 8?

 
Ranch Hand
Posts: 282
Eclipse IDE PHP Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
With IE, you have to run a separate IE process in order to have two sessions running in two windows--go to "Start > Run" and type "iexplore". Simply opening a new window via "File > New Window" won't work. Firefox has plugins that let you open different sessions in different tabs. Try CookieSwap.
 
Ranch Hand
Posts: 754
Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can execute iexplore.exe -nomerge that wont share the session amoung the IEs.

Lets supose you got 3 tabs (A,B,C). if in your tabA you set the name of the person to Jhon and at the tabB you set the name for May, the latest will prevail. And in tabC if you don't refresh it, it will be displaying Jhon.

[=
 
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic