Firefox always uses the same session id

Hi,
our company changes standard browser from IE6 to Firefox 3.5.10 .
Now we have  great problems with with our ColdFusion application when running it inside Firefox ,because Firefox doesn't create new session id
when working  in two tabs or two windows. It always uses the same cfid and cftoken.
So it is not possible to work with two different sessions.
IE6 always creates new session id when opening new window.
Has somebody solved this problem? It is very urgent!!!
regards
Claudia

I suspect that this is browser issue, not a server-side (CF) issue.  In order to support different cookies in different tabs you will probably need to try to find a Firefox extension to change how the browser uses cookies.
This extension is advertised as doing what you need.  Note that I have never used this product.
http://www.nektra.com/products/cookiepie-tab-firefox-extension

Similar Messages

  • How to run 2 different Firefox versions using the same profile

    Is it possible to run 2 different Firefox versions using the same profile and still have browsing history saved? I used to be able to do that up until a week ago. What happened was I was using Firefox version 3.6.28(a very old version of Firefox) which I need to use sometimes and then the current version, 36.01. Earlier I would use both my versions of Firefox and the history would be saved if I used both versions but now when version 36.01 came out, its not saving for some reason. Is this a bug? The history is saving during the current session, but say I close out of Firefox and then go back to Firefox, it will still be saved but when I go to my old version of Firefox, the history is saved but then after I close out of that the history on my new current version is all gone and it starts me all fresh, is there a way to get rid of this so that the history will always be saved even if i switch between versions? I could do that before up until Firefox 35.01 but Firefox 36 isnt saving the history from the old version, is this a bug or not? Now I have to create a separate profile for each Firefox so the history I use on the old version is only saved on that version and the history I have on the new Firefox is another profile so that history from the 2nd profile remains but I dont want that. I want to be able to use the same profile so that the same browsing history can be saved using both versions like it was before, I hope people can understand my problem. If not I can further explain, thanks.

    @ the-edmeister, I understand that the 2 versions are completely different, however how come the history was saving fine when I switched between firefox 3.6.28 to the current one which was Firefox 32, 33, 34, 35 etc? Like I'm surprised how come now at Firefox 36 this problem started, Firefox 36 isnt that much different from Firefox 35 but yet Firefox 35 was still saving my browser history from the old 3.6.28 version, my 3.6.28 version never upgrades but the new Firefox keeps upgrading whenever there is a new release out automatically and then all of a sudden when the new version of 36.01 came out all my history was gone, so isnt Firefox 35.01 also very much different from 3.6.28 as much as 36.01 is? I hope you got what I meant, thank you for helping.

  • Mozilla using the same session ID for  different browser

    Hi
    I am using mozilla to test my application. I tested two subscription of my application in two different mozilla browsers simultaneously.
    Here I Found details are swapped. Because mozilla using the same JSession ID for the two browser.
    This is a flaw in mozilla or whether this issue is solved in any one of the version of mozilla.
    When ever I am opening a new window, new session ID should be created like in IE (Internet explorer).this not happening in Mozilla.
    Can any one help me out from this problem?
    Thanks
    Dilip

    Hi,
    I cannot help you with your problem.
    But I want to ask what are you using to control Firefox ( on Windows... ) ?
    Thanks

  • Can a report use the same session as a calling form?

    Hi,
    I am using Oracle Forms and Reports 6i. I am wanting to call a report from a form and open it in the same session. The form will insert information into a number of global temporary tables that the report will use to display the query information.
    Is this possible? If so what is it I need to do to acheive this? At the moment I am using the run_product which calls the report with a parameter list. This opens the report fine but in a different session.
    Regards,
    Scott.

    Scott,
    no they don't share the same session. You can use parameter lists and pass them in a call to run_report_object (or run_product if this is the built-in you are using) to the Reports module. When creating the parameter list, you can get the data from either global variables or filed sin Forms. All you need to do is to make sure the equivalent parameter names are created as user parameters in Reports.
    Frank

  • I am asked to select an app each time I attempt to open a linked file via a website. How do I tell firefox to use the same app every time?

    I have a website; www.designed4submariners.com. On several pages, I have created links to images which are located in a upload file folder. Each time I click on one of those links on the active website (using Firefox as browser), a dialog box appears asking me: What should Firefox do with this file? Beneath the question is a pull down menu which has "TextEdit (defualt)" selected next to a radio button. The image file will open in a browser window when I select Firefox from that pull down menu. I can not tell Firefox to open all similar files using Firefox. How can I resolve this issue as I must go through the same process each time I attempt to open one of those links.

    Your response identifies the issue exactly! My website is hosted by GoDaddy. I have forwarded your linked information to their tech department. The URL below my signature is the site having the problem I've outlined when attempting to access linked images.
    Thank you
    Vincent G. Flaherty, Principal
    Hamilton 1:1 Communications, LLC
    410 Fern Road
    Orwigsburg, PA 17961-9210
    Tel: (267) 261-8693
    Designed for Submarines:
    http://www.designed4submariners.com

  • How can I use the same session for different components acroos application ?

    I am trying to include the components(chat, filesharing, whitboard) in different parts of my application. User should be able to access any of the component. We would like to have a single "ConnectSessionContainer" so that we don't see same user creating a seperate session for each component.
    Is there a better way of dealing with this other than declaring the "ConnectSessionContainer" in the main application ? Is there a way to check if we have a "ConnectSessionContainer" session already established ? Please help . Thanks.

    Thanks for the response. Let me explain what I am trying to do..
    I am trying to create components at different places(screens) of the flex application (not in the same .mxml file).
    Each time I create a component, I am using a "AdobeHSAuthenticator" and "ConnectSessionContainer" which is resulting a new participant in the room.
    For example
    screen1.mxml -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:Roster id="myRoster" width="100%" height="100%" />
            <rtc:Chat id="mychat" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    screen2.mxml (in the same application) -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:SharedWhiteBoard id="wb" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    Here, I open a screen1 and authenticate as UserA and when I try to open screen2 flex is considering me as another user though I am in the same application.
    1) How can I use different components which are in different flex files as a same User ?
    2) Should I place my <rtc:AdobeHSAuthenticator> and <rtc:ConnectSessionContainer> in the main application which calls the screen.mxml?
    3) What is the best way to do it ?
    Thanks for your time !

  • PLD: B1 always uses the same layout in Sales Opportunity(2005A SP1 PL31&36)

    Hi all,
    I can change the print layout of Sales Opportunities and Payment Receipts (B1 will show the defined layout in bold), but when I preview it, or print it, the same layout is always used. I have noticed this in 4 systems, using SQL  Server 2000 and 2005...
    Has someone come across this problem? How can I solve it?
    Best Regards,
    Vítor

    Hello Shanker,
    I did just that, the problem is whatever layout I choose as default, B1 uses one that was set before...
    I've been doing some tests and got the following results:
    In the Layout Designer, after pressing the "Set as default" button, we have these options:
    1. Set as default for All users
    2. Set as default for Current User
    3. Set as default for all BP's (for whom a default template has not been assigned)
    4. Set as default for specific BP
    I tried out all the possible combinations and got the following results:+
    If,
    1     2        3      4
    No     Yes     Yes     No   --> Printout OK, B1 Bad
    No     Yes     No      Yes  --> Printout Bad, B1 OK
    Yes    No      Yes     No   --> Printout OK, B1 Bad
    Yes    No      No      Yes  --> Printout Bad, B1 Bad
    Printout OK = The layout I choose as default is the one used;
    Printout Bad = The layout I choose as default is not the one used;
    B1 OK = SAP B1 shows in bold the layout I choose as default;
    B1 Bad = SAP B1 does not show in bold the layout I choose as default.
    Can please someone verify if this happens in other systems (I've tested in B1 2005A PL31 and Pl36)?

  • Random Generator always using the same seed?

    I'm trying to write a file full of random characters, but when I use the code below I always seem to get the same output. Is there any way to force java to sort out it's own random seed?
    // Creates a blank file full of random data
              try
                 BufferedWriter out = new BufferedWriter(new FileWriter("c:/test.txt"));
                 for (int i = 0; i < 1000; i++)
                      Random r = new Random(i);
                      out.write(String.valueOf(r.nextInt(9)));
                 out.close();
              catch (IOException e)
             }Thanks

    A random created with the same seed will give the same set of random numbers.
    Take out the Random creation from the loop
    try
                 BufferedWriter out = new BufferedWriter(new FileWriter("c:/test.txt"));
                    //Create Random here.
                     Random r = new Random( );//No need for any seed
                 for (int i = 0; i < 1000; i++)
                      out.write(String.valueOf(r.nextInt(9)));
                 out.close();
    catch (IOException e)
    [url http://www.feedfeeds.com/feedtv]Feed Your Feeds

  • I have always used the same computer to update both of our iphones , welll with this last one it changed my husbands apple account to mine , how do I get that change back, I looked on support but there is nothing l can find to address that issue

    He still has money on his account, and plus it is just one more password and all. The information on his phone is all the same, thank god I didn't lose his phonebook or anything.
    I have always updated the phones on the same machine, he is also upset on all the changes this last update did. He doesn't like change.
    Anyone know how I can contact apple just about an apple id question. I wish they had live chat at least

    Now I feel dumb, once I posted this it brought up others like it and tada there it was , just sign out and then sign back in on the other account. Learn somthing new everyday.  Just would like to know why it signed into my account when it never did before....

  • ISA570 - How to make my WebServer always uses the same Public IP

    Hi all
    I have reserved one IP of my pool to my exchange server.
    The Reverse DNS is configured for this IP.
    My exchange server is sometimes rejected by the other because it is using the first public IP of my pool to go on Internet, and not the one i would like.
    So in My ISA570, how to specify the public IP of my pool my exchange server will used ?
    Fo the moment, all my alias for each IP are created, the port forwarding is OK for my exchange server to send and receive mails, et the web OWA is OK.
    I have tried from the advanced NAT to force like this (the last line in this picture), but when it is enable, all my subsite are not able to join the Web Exchange interface...
    I am sure i made a mistake, could you please help me ?
    Thanks
    Kevin

    Is it an option to use Static NAT instead of Port Forwarding?  By that I mean, do you need to share the one Public IP from  your Pool of IPs with anything other than the Exchange Server?
    Shawn Eftink
    CCNA/CCDA
    Please rate all helpful posts and mark correct answers to assist others searching for solutions in the community.

  • Unable to reset Firefox: always get the same "embarrassing error" message

    Hi. My Firefox keeps on crashing: I continually get the "Firefox not responding message. "
    I have tried on umpteen occasions to try and reset Firefox, but cannot. Halfway through the process, everything stops and I get the "well this embarrassing" error message.
    How can I fix this?

    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Fonts in mail - It always uses the same one, not the one i have chosen.

    In preferences, my 'message font' is set to 'Courier New 12' as is my signature font.
    Sure, my emails are courier new when I write them, but when I send them, they revert back to whatever the default for the mail client receiving it is. Occasionally, I will find that the signature sent in courier new, but never the body of the email.
    I want my emails to look the way that they do on mail when other people open them, Outlook on windows never had this problem. Emails are being sent as rich text, so why is it not sending the font?
    My signature looks stupid in any other font that courier new because of the width of the '-' in this font is wider than any other, so I have just the right amount of them to make the length of the text. If this does not make any sense, let me give you an example...
    ---------------|
    My Signature Here
    ---------------|
    The length of the line of '-' s is right in this font, but if you change the font, the width of each '-' reduces and so it looks stupid.
    What I basically want to know is how I can send messages using my mailbox font as currently it does not send using any specified font.
    Thanks.
    Message was edited by: AlasdairThomason
    Message was edited by: AlasdairThomason

    Update...
    Mail is not sending the font for the body, it appears to be sending the signature font though as i have unchecked the 'use message font' box.
    If i change the font manually in the message, it still does not send it in the selected font... however if i write the message in a font in pages and copy and paste it in, it works perfectly. So it is mail that is not sending the correct font info.
    Any ideas on this?

  • HT201272 I have always had and used the same Apple ID, so where are the rest of the songs I bought from itunes? I've bought at least 400 songs and I only am being able to download 178. Where are the rest of my purchases?!

    I have always had and used the same Apple ID. I have changed credit card information on my Apple ID account several times though. Does that make a difference when downloading past purchases? I'm very angry at Apple and Itunes because I have been using itunes since 05/2005 and I do not have even close to the amount of songs and albums that I have purchased from itunes. If the credit card info does make a difference even though the account is the same one then itunes needs to make sure to notify users of this because I am not the only one who is wondering this same thing. I have numerous friends who i've talked to about this and they say the same thing, that they too have songs purchased in the past that have disappeared when trying to download past purchased items. It should not make a difference. $12 is $12. Especially since I have ALWAYS used the same account. If itunes does not change their ways, I will not be purchasing songs or anything else for that matter from them ever again. I will go back to buying CDs where I KNOW that it will always be with me and I don't have to deal with this. I will also make sure to find a better more reliable source to download music from and will make sure everyone I know and come in contact with knows what it is and how much better it is than itunes. There should be no experation date on the music I PURCHASE, nor should there be any other little loop holes that allow itunes to rob us of rightfully purchased products. What's the deal itunes?? 

    mannyace wrote:
    Thanks for the response.
    So I basically won't run into any trouble? I
    There should be no issues. Its designed to work like that.  You don't change Apple IDs just because you get a new device.
    mannyace wrote:
    Thanks for the response.
    Is there any chance that the phones can fall out of sync?
    Unlikely. But nothing is impossible.   Though I don;t see how that would happen. As long as both are signed into the Same Apple ID / iCloud Account they will be N'Sync. (Bad Joke)
    mannyace wrote:
    Thanks for the response.
    If I get a message or buy an app or take a photo on the iPhone 5, how do I get those things onto the iPhone 6?
    If you buy an App, you have 2 ways to get it to the iPhone6: If Automatic Downloads is enabled in Settings->iTunes & App Store, it will automatically download to the iPhone 6 when you buy it on the 5 and vice versa if you buy it on the 6, it will download to the 5.
    Alternatively, you can simply go to the App Store App->Updates->Purchased and look for the App there and download it. Purchased Apps will not require payment again. i.e They'll be free to download to the iPhone 6 once purchased.
    SMS Messages will sync over using Continuity as long as they are on the same Wifi network. Otherwise, restoring the iPhone 5 backup to the iPhone 6 will transfer all messages received up until the backup was made onto the iPhone 6.
    Images, can be transferred either through Photo Stream
    My Photo Stream FAQ - Apple Support
    Or any Cloud service you want such as Dropbox, or One Drive.
    mannyace wrote:
    Also, something i forgot to ask initially: Should I update the iPhone 5 to iOS 8 first or does that not matter?
    If you want the Continuity features as explained above you need to update the iPhone 5 to iOS 8. Otherwise its not all that important.

  • Firefox 2009 always loads the same flash on clipfish ?!

    Hi Arch boys & girls
    when i'm on clipfish.de, firefox always loads the same flash film. Even deleting cache/restarting FF -- when i click a flash film to play FF plays the same i've seen days ago ?????????
    Has someone an idea?
    ThanX in advance!!

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • I have used the same laptop for all three of my iPhones but awhile back this laptop had a virus so my husband wiped it out and now when I sync my iPhone I no longer get my entire music library ( including purchased songs) on my iPhone. How do I fix this?

    I have always used the same laptop for all of my iPhones but awhile back this laptop had a virus so my husband wiped out the laptop and now when I sync my iPhone I no longer receive my entire music library (including purchased songs) on my iPhone. How do I fix this?

    kimberlyfromtopeka wrote:
    Ok,thanks but, I should be able to something so that I am able to sync the entire library again not just the purchased songs.
    If the non purchased music is not on your computer, how can it Sync to your iPhone...

Maybe you are looking for

  • FRM-47023: No such parameter named REPORTSSERVER exists in form MY_FORM.

    Hi, After upgrade form to Forms [32 Bit] Version 10.1.2.0.2 (Production), I have come cross this following error when I try to run the from my form from developer in Windows through OC4J: "FRM-47023: No such parameter named REPORTSSERVER exists in fo

  • Save data to a table (In the View method)

    Hi,    I am new to Webdynpro.We have a requirement in BW to update user config tables using webdynpro.I got the retrieve data part working.   Now I am trying to save data back to the table.I got the following code in the save method which will be cal

  • How to use classes CL_DOCX_*

    We have a need to use word 2007 OOXML classes  all of which start with CL_DOCX*. Basically what we are trying to do is take a DOCX files (File 1 & File 2) saved by MS WORD 2007 application and replace the header of File 1 with the header from File 2.

  • Playlist/Album not playing

    I created a playlist to contain an entire album. No matter what I try (changing the settings in 'get into) my iPod will play only one song and stop. It won't play the album through. This does not happen in iTunes, btw - when I am using the playlist f

  • Mute music when videos play in iPhoto

    I have a presentation that combines photos and a few videos in iPhoto.  I am using music form my itunes library.  How can I get the music to stop playing or mute when the videos play in iPhoto (so we can hear the sounds from the imported video) then