Is the config setting to have iPlanet automatically generate a session cookie

We have one set of iPlanet servers (xxx.company.com) that servers only HTML code. We have another set of servers, iPlanet and Weblogic, that servers JSPs and html code. Want to be able track users between the sites without having to change each HTML page to create one.
The last option I can think of is to write a NSAPI plug-in. Thanks.

You might want to look up persistent session managers that stores the session in a database so it can be shared between servers.

Similar Messages

  • I have been sampling new imported drum loops. And if I adjust region to song or time strecth it updates the audio file in the library. How to stop this? I lost the original setting to one loop. automatically doing it ??

    I have been sampling new imported drum loops. And if I adjust region to song or time strecth it updates the audio file in the library. How to stop this? I lost the original setting to one loop. automatically doing it ??

    This "original file cannot be found" thing happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • Is it possible when saving the psd file to have an automatic jpg file saved at the same time?

    My work involves preparing images for printing lightboxes and window installations.  My clients require to pre-approve the photos before printing.
    I usually save my files as psd but since the files are very large in this format I usually save another copy as a jpg file that has a much smaller file size.  This makes it possible for me to add these to a presentation and and send them to my client.
    Is it possible when saving the psd file to have an automatic jpg file saved at the same time?  Or do I still have to do this manually?

    If you save the document manually as a PSD file in Phtoshop not from within an Action, Script, Plugin or Droplette.  You may be able to write a Photoshop that would do as save as Jpeg,  And you should be able trigger its execution by setting up a Script Save event using the Script event manager.  When You do a manual save  the script should be triggered.  I wrote may be able to for I have never tried to write that script or set up a Script Manager Save event.  I have only use open events.

  • If the end user doesnt have acess to go through session

    if the end user doesnt have acess to go through sessions , how could he know the errrors occured in his process. can any one sugest me an answer...
    and the data transfer shld be done through session method only, we r not using call transaction......
          thank u
             with regards.........

    there is no other option expect that he should either have the access to check the sessions or else someone who runs the sessions need to get the error log and mail to the user....
    also just u can let know the queue id generated for the session and using program RSBDC_ANALYSE u can check the logs.

  • How to Set up HTTPOnly and SECURE FLAG for session cookies

    Hi All,
    To fix some vulnerability issues (found in the ethical hacking , penetration testing) I need to set up the session cookies (CFID , CFTOKEN , JSESSIONID) with "HTTPOnly" (so not to access by other non HTTP APIs like Javascript). Also I need to set up a "secure flag" for those session cookies.
    I have found the below solutions.
    For setting up the HTTPOnly for the session cookies.
    1] In application.cfc we can do this by using the below code. Or we can do this in CF admin side under Server Settings » Memory Variables
         this.sessioncookie.httponly = true;
    For setting up the secure flag for the session cookies.
    2] In application.cfc we can do this by using the below code. Or we can do this in CF admin side under Server Settings » Memory Variables
         this.sessioncookie.secure = "true"
    Here my question is how we can do the same thing in Application.cfm?. (I am using ColdFusion version 10). I know we can do this using the below code , incase of HTTPOnly (for example).
    <cfapplication setclientcookies="false" sessionmanagement="true" name="test">
    <cfif NOT IsDefined("cookie.cfid") OR NOT IsDefined("cookie.cftoken") OR cookie.cftoken IS NOT session.CFToken>
      <cfheader name="Set-Cookie" value="CFID=#session.CFID#;path=/;HTTPOnly">
      <cfheader name="Set-Cookie" value="CFTOKEN=#session.CFTOKEN#;path=/;HTTPOnly">
    </cfif>
    But in the above code "setclientcookies" has been set to "false". In my application (it is an existing application) this has already been set to "true". If I change this to "false" as mentioned in the above code then ColdFusion will not automatically send CFID and CFTOKEN cookies to client browser and we need to manually code CFID and CFTOKEN on the URL for every page that uses Session. Right???. And this will be headache.Right???. Or any other way to do this.
    Your timely help is well appreciated.
    Thanks in advance.

    BKBK wrote:
    Abdul L Koyappayil wrote:
    BKBK wrote:
    You can switch httponly / secure on and off, as we have done, for CFID and CFToken. However, Tomcat automatically switches JsessionID to 'secure' when it detects that the protocol is secure, that is, HTTPS.
    I couldnt understand this. I mean how are you relating this with my question.
    When Tomcat detects that the communication protocol is secure (that is, HTTPS), it automatically switches on the 'secure' flag for the J2EE session cookie, JsessionID. Tomcat is configured to do that. Coldfusion has no say in it. So, for JsessionID, 'secure' is automatically set to 'false' when HTTP is detected and automatically set to 'true' when HTTPS is detected.
         If this is the case then why I am getting below info for jsessionid (As you mentioned it should set with SECURE flag . Right???). Note that we are using web server - Apache vFabric .And the application that we are using is in https and there is no hit is going from https to http.
    Name:
    JSESSIONID
    Content:
    782BF97F50AEC00B1EBBF1C2DBBBB92F.xyz
    Domain:
    xyz.abc.pqr.com
    Path:
    Send for:
    Any kind of connection
    Accessible to script:
    No (HttpOnly)
    Created:
    Wednesday, September 3, 2014 2:25:10 AM
    Expires:
    When the browsing session ends
    BKBK wrote:
    2]When I checked CF Admin->Server Settings->Memory Variables I found that J2EE SESSION has been set to YES. So does this mean that do we need to set HTTPOnly and SECURE flag for JSESSIONID only or for CF session cookies (CFID AND CFTOKEN ) as well ?.
    Set HTTPOnly / Secure for the session cookies that you wish to use. Each cookie has its pros and cons. For example, the JsessionID cookie is more secure and more Java-interoperable than CFID/CFToken but, from the explanation above, it forbids the sharing of sessions between HTTP and HTTPS.
         I understood that setting thos flags (httponly/secure) is as per my wish. But my question was , is it necessary to set those flags forcf session cookies (cfid and cftoken) as we have enabled J2EE session in CF admin?. Or in other way as the session management is J2EE based do we need to set those flags for CF session cookies?.
    BKBK wrote:
    3]If I need to set HTTPOnly and SECURE flag for JSESSIONID , how can I do that.
    It is sufficient to set the HTTPOnly only. As I explained above, Tomcat will automatically set 'secure' to 'true' when necessary, that is, when the protocol is HTTPS.
         I understood that it is sufficient to set httponly only.but how we will set it for jsessionid?. This is my question. Apache vFabric will alos set secure to true automatically. Any idea??

  • Why is the latest up grade preventing me from going on the internet. I have tried automatic upgrade twice and I have both times had to restore my settings to the previous session to get on the internet.

    Why is the latest upgrade of Firefox preventing me from getting on the internet. I have tried to upgrade twice and both times I have gotten "Can not display this page please try again later" I have tried to open several different pages. Both times I had to restore my computer to previous settings to get on the internet.

    Hi Skydiver119
    Thank you so much for taking the time to reply to my problem.
    Yes the purchases were made though my apple id.
    I have looked at a few other questions on this topic and I have read that the app data is stored in the backup file but the apps themselves need to be synced back onto the ipad. Someome has mentioned right clicking on sync my ipad but I don't know where to find that to right click on!! Lol.
    Again, I really appreciate your time and if by any chance you know where I can 'right click' I would really appreciate you letting me know as I can't get my ipad to sync with my pc at all, although it is being picked up in itunes and it has backed up to itunes okay. GGrrr. Maybe I have something wrong in the settings which is not making them compatible?

  • How to set a field that automatically generates a unique 'code'/'ID'  for fillable PDF form?

    Hi,
    I'm trying to create a PDF fillable form with Acrobat X Pro.
    Can Acrobat allow a function, so that it can automatically generate a 'number'/'code' which I could use as an 'identifier'?
    eg.  A hidden field named:  'DOC ID' and provide 100001 when added to response file as it's submitted and '100002' to another file when it another is submitted/added onto the response file etc...
    I am aware that Response files, if submitted correctly, could automatically generate numbers like 001, 002 etc...
    But I'd like to see if I could create a field, that 'numbers' the document for me automatically and uniquely.
    Any help and/or suggestions would be appreciated.
    Winnie

    Hi,
    to do this you need kind of interactivity in your form.
    You can achieve this either by:
    1) using JavaScript onchange-events on forename and surname items, or
    2) use the AJAX Computations option of ApexLib, see: http://www.oracle-and-apex.com/ajax-computations-rich-client-feeling/
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com

  • Setting secure flag on weblogic (5.1) session cookie.

    Hello All,
              I need to set secure flag on weblogic session cookie. I am not able to
              find any property in weblogic.properties file to set the secure flag for
              session cookie.
              Does anybody has any idea how to achieve this.?
              Thanks
              Nitin
              

    The best way to reduce GC is to change you application to use less memory. Serious.
    There are a number of JVM options for GC. I can't tell you what will work best
    for your application.
    25 seconds is way too long for a GC. Is the OS paging? You may wish to invest
    in additional memory.
    Mike Reiche
    vijendran <[email protected]> wrote:
    Hi,
    I am running a load test which will simulate 100 users. when i tried
    to simulate i found that GC is happening often even though i set the
    heap to 512 MB., and that too some time it takes upto 25 secs. for a
    GC to complete. Please advise on how to increase the performance for
    more number of users (without clustering weblogic) and to avoid GC happening
    often.
    Regards
    Vijendran

  • HT204207 What is the correct setting to have the same Podcasts on my devices but only my computer keeps every episode after playing?

    There several podcasts that I subscribe to that I want to keep every episode of in my iTunes library, but only have unplayed episodes of on my iOS devices due to storage limitations. Is there a way to accomplish this? I love syncing, but I can't have the exact same setting on all devices because of storage and data limits from my Wireless carrier.

    I actually already checked Pondini's and didn't find the answer.  Any other suggestions?
    thanks

  • HT1349 My phone has stuck on to the headphone setting. How do i get it back to normal, have tried settings reset, but has not worked

    My phone has stuck on the headphone setting. Have tried the reset option, but to not resolved.
    When you press the side voulme controls, ( Headphones ) shows, even without them plugged.
    Any idea's

    Have you tried power off/on?  Hold the sleep/power button until the red slider appears and slide to power off.  Wait 10-15 minutes and then hold the button until it powers up again.  Often a simple power cycle clears faults.

  • Should these System Preferences match or is it better that the System sets 'Sharing Prefs' (set-up-name's-macbook-pro.local) and Networking/Advanced/WINS name MACBOOKPRO-****) *=numeric digit or letter

    I'm now on another fresh OS reinstall which reverted back to the OEM Mountain Lion 10.8.4 after an upgrade to OS X Mavericks 10.9 When I first thought that the failed OS X upgrade could have been the caused by some conflicting networking settings that I discovered in System Preferences. I tried to match the computer name which I gave at setup which the File Sharing section users i.e. name's-macbook-pro.local with the WORKGROUP name which is generated in the System Preferences/Network Preferences/Advanced WINS section uses MACBOOKPRO-****.
    However I am not using a Windows PC at the moment and don't expect to be sharing with anyone else using one so I'm a touch uneasy seeing these SMB WORKGROUP settings being established by the System and realising that these settings are not allowing the Administrator user (me) override as. If I do unlock my Networking Preferences settings to edit the WINS WORKGROUP name which is automatically generated as "MACBOOKPRO-****" whatever I enter reverts back to the settings the System has chosen, if I delete this generated name the default System WORKGROP name is reset even after pressing 'Apply' and locking the Networking Preferences again.
    The symptoms which make me uneasy are random visibility of a sharing server named as the first half of my Wi-Fi routers SSID ie: BTHub5 not the random letters and numbers that follow BTHub5-****.
    Problems setting up Lexmark and Epson printers. Suggested update from AppStore for Remote Desktop Client, I never purchased Remote Desktop but can see that there is a folder Remote Desktop Management in System/Core Services.
    Unexpected permission changes appearing all over the System, example being that the user group 'Wheel' changing to 'Staff' I don't employ people and don't want or need filesharing with other computers.
    Lots of System crash reports that mostly are listed as 'Exception Type:  EXC_BAD_ACCESS (SIGSEGV)'
    Is any of this normal or am I being stalked by a very persistent user? Thanks in advance for any tips you guys can give me.
    Cheers

    I'm now on another fresh OS reinstall which reverted back to the OEM Mountain Lion 10.8.4 after an upgrade to OS X Mavericks 10.9 When I first thought that the failed OS X upgrade could have been the caused by some conflicting networking settings that I discovered in System Preferences. I tried to match the computer name which I gave at setup which the File Sharing section users i.e. name's-macbook-pro.local with the WORKGROUP name which is generated in the System Preferences/Network Preferences/Advanced WINS section uses MACBOOKPRO-****.
    However I am not using a Windows PC at the moment and don't expect to be sharing with anyone else using one so I'm a touch uneasy seeing these SMB WORKGROUP settings being established by the System and realising that these settings are not allowing the Administrator user (me) override as. If I do unlock my Networking Preferences settings to edit the WINS WORKGROUP name which is automatically generated as "MACBOOKPRO-****" whatever I enter reverts back to the settings the System has chosen, if I delete this generated name the default System WORKGROP name is reset even after pressing 'Apply' and locking the Networking Preferences again.
    The symptoms which make me uneasy are random visibility of a sharing server named as the first half of my Wi-Fi routers SSID ie: BTHub5 not the random letters and numbers that follow BTHub5-****.
    Problems setting up Lexmark and Epson printers. Suggested update from AppStore for Remote Desktop Client, I never purchased Remote Desktop but can see that there is a folder Remote Desktop Management in System/Core Services.
    Unexpected permission changes appearing all over the System, example being that the user group 'Wheel' changing to 'Staff' I don't employ people and don't want or need filesharing with other computers.
    Lots of System crash reports that mostly are listed as 'Exception Type:  EXC_BAD_ACCESS (SIGSEGV)'
    Is any of this normal or am I being stalked by a very persistent user? Thanks in advance for any tips you guys can give me.
    Cheers

  • Set configure IPv6 to automatically as default.

    I am using an iMac running Yosemite 10.10.1. Whenever I startup, get mail, or try to print a file, I have to go to system preferences > network > advanced, and set the Configure IPv6 to automatically from its default setting of off. For some reason it always goes back to the default “off” setting. Is there a way to make “automatically” the default setting? Thank you.

    Automatic is the default. I think you need to reinstall Yosemite:
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Also see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • 865PE NEO2 need help on findout how to get the memory set to dual and a bit of overclocking

    hello everyone all`s it is i need some advice how to find out that my motherboard is set right and my memory is set to dual. at the moment i have my memory 3200 512ram in DIMM 1 A and in DIMM 3 B can anyone tell me if this is right for my motherboard (865PE NEO2 ) and can anyone tell me the best setting to have to overclock my system at the moment i have 2.5 proccesor overclocked to 2.7.

    Your memory is in the correct location for Dual Channel.
    Btw, providing us your full system and PSU specs will be better for us to give you directions.

  • Read-only access (hide a portion of the config)

    Is there a way to alloww read-only access to only a portion of the config.  I have customers who are requesting read-only access, but i don't want them seeing portions of the config. 
    Any help or suggestions would be greatly appreciated.  Thanks

    If they have an enable level login they will be able to see the whole configuration (absent encrypted passwords assuming you're using service password-encryption).
    You can make logins more granular and prevent customers from having, say, the ability to execute arbitrary commands such as "show run". You could, for instance setup a given user to only be alllowed to execute "show interface status" etc. NX-OS has this ability pretty much 'baked-in'. For IOS-based systems, a bit more work is required.
    Here is a guide for how to do it if you use TACACS for AAA:
    https://supportforums.cisco.com/docs/DOC-15765
    If you're using local authentication, you can do similar things using either privilege levels or cli views:
    http://www.cisco.com/en/US/docs/ios/12_2t/12_2t13/feature/guide/ftprienh.html
    http://www.cisco.com/en/US/docs/ios/12_3t/12_3t7/feature/guide/gtclivws.html
    http://www.networkworld.com/community/node/57553
    Hope this helps.

  • LR5 's Adjustment Brush doesn't seem to work-does the New Radial Filter have priority?

    So why in the world would I update Lightroom in the middle of a job.?
    Before I was able to do in and touch up shadowy areas using (K) adjustment brush, but now it doesn;t seem to work. The radial brush does a good job for a defined area but for SPOT touching I have always used the the adjustment brush?
    Is there a setting or am I missing something or is this a bug?

    The presence of the Radial Filter in the tool set should have no effect on the Brush. It continues to work just as it always has. In fact, even if the RF is open (I sometimes hit it by mistake when I really want the Brush) and you click on the Brush icon, the RF closes and the Brush opens. If your Brush is not functioning properly, it is very unlikely that the RF is the reason. The usual first aid for any LR misbehavior is to close LR, remove the Preferences file from its folder and relaunch LR, allowing it to make a new preferences file. Not guaranteed to solve the problem, but worth trying.

Maybe you are looking for

  • New case for old model macbook pro 15inch.

    I live in the UK and I'm having trouble sourcing a new cover for my 15" macbook pro. It's the old model with the silver keys. I would really appreciate any information at all regarding where I can find a new case. I'm looking for a protective one tha

  • S_ALR_87012357 VAT

    Hello, When executing t-code S_ALR_87012357 to post the return VAT. The transaction is executed successfully but after running it I am not able to see the postings because the job is not running. Any suggestion? Thanks a lot Mansikka

  • Charging & Listening at the same time

    Gurus of the forum- I know that this topic has been asked before but I can't seem to get this to work. I have the Nano 4GB and trying to listen to it while it is connected to my computer to charge. Everytime I try to do steps that people suggest it j

  • IDoc (Outbound & Inbound) PO to ECC (2 clients)

    Hi As part of testing I need to send outbound idocs from 2 separate clients in ECC to PO Also I need to send inbound idocs to 2 separate clients of ECC from PO With one client everything is working fine. What extra steps need to be done for 2 clients

  • Problem in adding Used DCs

    Hello Everyone, created two SCs and 1st SC consists of 3 DCs: 1) External library 2) J2EE server library component 3) Web Module DC The first one is for all the external libraries,the second one includes all the libraries from the first one as DC of