Removing host name from jsessionid

We have a standard installing of IWS 6 and the host name is included in the jsessionid even if not configured in wep-apps.xml (we are using the default wep-apps.xml and there is no session-cookie tag in the file. Doc says you have to set session-cookie to add the host to the jsessionid, but it seems to be there by default)
How can we get rid of the host name in the jsessionid?

The easiest way would be to upgrade to 6.1, the default there is just a random string. I looked into changing the session id string before, and if you look at the session manager code, it gets the session id string from the calling process. I suppose you could simply add in a bit of code to strip off the hostname from the front of the string. Otherwise, I am not sure how iws6 creates the session id string.

Similar Messages

  • How can I get the host name from Email address?

    hi
    When I using socket to develope an email-sending servlet,I don't know how to get the host name from emial address.can you help me,thanks

    Stripping off the user name will give you the domain of from field in the message. This is not the same as the host. Take a look at:
    http://www.stopspam.org/email/headers/headers.html
    Theres a pretty good discussion about email headers and how to use the information. You probably want to check the information here against the RFC.
    Sean

  • How do I remove my name from an ipod prior to donating it to someone?

    I would like to donate my ipod touch to someone as I just bought another one. How do I remove my name from the device prior to donating it? I was able to remove all of my apps, music and videos but not the name.

    Go into your settings>general>reset, then select Erase All Content and Settings. 

  • Removing my name from an Alias email

    I have been unable to remove my name from the "FROM" in outgoing emails. U have deleted my name in the "FROM" box in the preferences with no luck.
    Help...pf

    Open address book. Find your own card in address book. Check if this email address is on your own card. If so, you just get your name displayed, as you and this email-address is in address book. Simply delete the email-address from your card, and you shouldn't see your name in "From" any more.

  • Getting host name from applet

    Hi All,
    How can i get the local host name from applet ( Host name where the applet running) . While i tried with InetAddress i got only the loop back address 127.0.0.1. Can anyone help me out in this regard.
    Thanks in advance
    V.S.Saravanan

    When you say you tried the InetAddress, did you try the following?
    You could try creating a Socket connection back to the host/server URL from where the Applet was downloaded (you should have permission to do this). You can then get the local address of the Socket.
    Something like:
    String hostName = getCodeBase();
    Socket s = new Socket( hostName, portNum );
    InetAddress address = s.getLocalAddress();
    String hostName = address.getHostName();
    Eric

  • How do I permanently remove a name from a group list?

    I would like to permanently remove a name from a group list. I have highlighted and deleted and it still won't go away. I have deleted him from my address book but I cannot remove him from the group list.

    There is the mailing list stored (which addressbook)? Perhaps the addressbook is read-only or unavailable?

  • Remove Printer Name from Crystal Report

    How can i remove the printer name from the Crystal Report so that the PrinterName property of the CRAXDRT.Report object in the RDC SDK is blank WITHOUT having the "No Printer" Option checkbox checked?
    Here's the scenerio.  When I first create a Report and don't go into Page Setup, PrinterName property is blank.  If I go into Page Setup and explicitly select a printer, PrinterName property equals the name of the printer selected.  If I check the "No Printer" checkbox in Page Setup, PrinterName property is blank.  But if i go back in and uncheck the "No Printer" checkbox in Page Setup, the PrinterName property equals the name of my Windows Default Printer.

    I'm still not sure what is unclear about my first question.  And I'm not sure how any of the info you are requesting is going to make any difference in answering my question.  And I'm not sure how your analogy fits here but ..
    Version of CR = 11.0.0.895
    CR Service Packs applied = None
    Web or Win app? = Win App
    OS? = Windows XP Service Pack 3
    Development language?  = Both Visual Basic 6 and C#.Net 2008
    Method of CR files deployment = email the .RPT file to a client
    Where were the runtime files downloaded from? = Runtimes are installed from Merge Modules donwload from SAP site
    What is the version of the craxdrt.dll on the deployed box? = 11.0.0.893
    So here are the exact steps so you can understand what is going on:
    I have the Crystal Reports Application open side-by-side with my Visual Basic development environment in debug mode so i can step through the code using the RDC SDK.
    1. I open the Crystal Reports Application and create a brand new report - "Test.RPT" and DO NOT go into Page Setup at all and save the report.
    2. In my Visual Basic development environment, i run the code that will generate the report, Here's the exact code
        Dim m_crApp As CRAXDRT.Application
        Dim m_crReport As CRAXDRT.Report
        Set m_crApp = New CRAXDRT.Application
        Set m_crReport = New CRAXDRT.Report
        Set m_crReport = m_crApp.OpenReport("Test.RPT")
    3. When i look at the PrinterName property in the CRAXDRT.Report object, it is blank.
        ie. crReport.PrinterName is equal to ""
    4. I reopen the Crystal Reports Application with report "Test.RPT" and go into Page Setup and check the "No Printer" option.
    5. I go back into my Visual Basic development environment and rerun the code that will generate the report.
    6. When i look at the PrinterName property in the CRAXDRT.Report object, it is still blank.
        ie.  crReport.PrinterName is equal to ""
    7. I reopen the Crystal Reports Application with report "Test.RPT" and go into Page Setup and uncheck the "No Printer" option. I have NOT specified any printer, nor have i clicked the "Printer..." button to setup a printer....i have just unchecked the "No Printer" option
    8. I go back into my Visual Basic development environment and rerun the code that will generate the report.
    9. When i look at the PrinterName property in the CRAXDRT.Report object, it is now set to my WINDOWS DEFAULT PRINTER, yet i had not specified any printer.
        ie.  crReport.PrinterName is equal to "
    MyNetwork\MyPrinter"
    PROBLEMS:
    1. The client needs the report to go to the default windows printer of their machine
    2. If the "No Printer" Option is checked, the Report does not print at all
    3. If the report is set to MY default windows printer and i give it to the client, at times it takes upwards of to a minute for the Print Dialog to disply.  As i've read on other forum posts, it appears Crystal is looking for MY printer on the clients machine and takes a minute before i realizes it can't find it and then sets it to the CLIENTS default windows printer.
    4. The client believes it is unreasonable to wait a minute for the print dialog to appear ...and i agree.
    5. I cannot change the code to use the Select Printer in the RDC SDK - it's a long explanation why but just suffice it to say that i cannot do this.
    All i want to do is either:
    1. Remove the Printer Name in the actual report from the Crystal Reports designer - basically undoing what Crystal did when i went into Page Setup.
    2. Via the RDC SDK, be able to detect the "No Printer" option is selected. Checkign CRAXDRT.PrinterName equal to "" is not an option.

  • Getting OS X Host Name from Cambia

    We would like to configure our OS X workstations to return their hostnames when scanned with Cambia (network monitoring software). Cambia uses netbios, tcp probes, dns lookup and nmap to discover the identity of nodes on the network. Can anyone tell me how to configure OS X to return its host name when Cambia does a scan??
    I know netbios is a no-go, but I manually set the host name in the /etc/hostconfig file in the hope that would do it. It doesn't.
    Is there a setting or software that would return the hostname via an nmap probe????
    Bob Reed

    We would like to configure our OS X workstations to
    return their hostnames when scanned with Cambia
    (network monitoring software). Cambia uses netbios,
    tcp probes, dns lookup and nmap to discover the
    identity of nodes on the network. Can anyone tell me
    how to configure OS X to return its host name when
    Cambia does a scan??
    If you run your own DNS servers, macs that use DHCP will set thier names in the DHCP request, so you should get it from there.
    Are your Macs using DHCP ? Do you run your own internal name server ?
    Is there a setting or software that would return the
    hostname via an nmap probe????
    Bob Reed

  • Getting Host Name From Forms 6i (deployed in 10g AS)

    Hi,
    I need to get the host name of client while launching my application. I am using forms6i. So I cannot use webutils.pll for the same. But in the below thread I have read that Webutil.pll has been modified to use with FORMS 6i also. Can anybody send me webutils.pll which can be used with Forms 6i
    Re: Converting to Webutil? 6i and 9i equivalents.
    Its an urgent requirement
    Any help is appreciated.
    Thanks

    Hi,
    I have tried sys_context and java class option already ..but in vain :(..
    Let me explain my problem in detail.
    My database server(Oracle 10g) is in HOSTA
    My appserver (Oracle 10g AS)resides in HOSTB
    And user launches the application from HOSTC
    My requirement is to get the host name of the user while he launches the application. ie HOSTC in this case.
    If I am trying with java.net.InetAddress.getLocalHost().getHostName(); I am getting the value HOSTA(Host name of Data base server)
    If I am trying with SYS_CONTEXT I am getting HOSTB(Host name of appserver)
    And my requirement is to get HOSTC !!!
    I have read that if Webutil_clientinfo.get_host_name is used I can get the host name of client machine. But since I am working with forms 6i , I can't use Webutil.
    please help me if you know any way to achieve the same in forms 6i

  • Removing Checklist Name from Checklist Sheet

    Hi, I am trying to use the checklist template from Numbers in iWorks 08 as an inventory sheet. I have tried unsuccessfully to remove the word "Checklist" that appears at the top of the page. It is almost hidden behind the top of the columns while editing the sheet, although when I print the page I have the word "Checklist" printed above the header.
    Any ideas on removing this???

    Ok... I feel like an idiot. I will answer my own question in hopes that this saves someone else from having to ask.
    There is a checkbox all the way to the right on the toolbar called "Name" by removing the check from this box the name "Checklist" will be removed from the checklist sheet.
    rack a frack a frick a frack...

  • How to remove database name from SQL query

    We have an MS SQL server with several databases that are of the same schema but have different data.  We do this for testing different environments.  We are using Crystal reports for the first time and we are having trouble changing the database location in the designer.  If update the data source location to the same database server, but different database name, the data still comes from the original database used when creating the report.  We look at the SQL query and it contains the database name and does not change when updating the data source.  Therefore the data always comes from the database used when originally creating the report.
    How can I remove the database name from the SQL query so the proper database is used when testing the report?

    Hi C F
    Please ensure you have followed the procedure mentioned below:
    In Crystal Reports, there are two ways to set the location of the data source your report points to, depending on your connection type.
    For ODBC and Native Connections:
    1. On the 'Database' menu, click 'Set Datasource Location'.
    2. In the 'Current Data Source' section, click the data source to be changed. You must click each individual table in the data source one by one. If the data source is a stored procedure you will not see individual tables.
    NOTE     In Crystal Reports 10, XIR1, and XIR2, if you are mapping from a data source such as a stored procedure where the report designer can not determine which fields should be mapped automatically, you will see a 'Mapping' dialog box where you can manually map fields, as in the procedure cited above.
    3. In the 'Replace with' section, click the data source you want the report to use.
    4. Click 'Update'.
    5. Close the 'Set Datasource Location' window.
    The report now points to the new location.
    For Native Connections Only:
    1. On the 'Database' menu, click 'Set Datasource Location'.
    2. In the 'Current Data Source' section, click 'Properties' to expand it and right-click 'Database Name: <path to database>'.
    3. Click 'Edit' and then type the path to the
    new data source location.
    4. Close the 'Set Datasource Location' window.
    The report now points to the new location.
    Regards
    Girish

  • Removing user name from sign-in window

    Upon starting Skype my username appears in the sign-in window by default.
    To stop this happening skype says: when skype is not running, in Finder click on Go, select Go To Folder, enter ~/Library/Application Support/Skype, and once there delete the folder bearing the username to be removed.
    This works, but only until the user with that name signs-in.  Thereafter the name reappears in the sign-in window.
    Can a username be removed without having to follow this procedure every time the user logs out, please.
    Skype 6.15 (335)
    Mac OS 10.6.8

    Never mind:
    https://support.skype.com/en/faq/FA10876/How-can-I​-remove-my-Skype-Name-from-the-sign-in-screen-in-S​...

  • Is there any way to remove my name from the profil...

    Is there any way to remove or prevent my profile from appearing in the profile search directory? I'm so tired of ALL the unwanted contact requests. Yeah I know I don't have to add them but this shouldnt even be a problem in the first place. If I want to add someone to add me I'll give them my skype name.

    Hi, Phnxbane, and welcome to the Community,
    You may certainly remove all profile data by leaving those settings as "blank" or "not specified."  I find the easiest way to do this is to open the profile settings from within the Skype "client" software.
    Removing/deleting an account name from the Skype search directory closes the account.  More details about this can be found here: 'Can I delete my Skype account?' 
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Nokia 6300: How do I remove a name from a dictiona...

    Hi
    I was hoping someone knows how to remove a word/name from the word prompter on my phone. That is when I type the keys on word prompt how do I remove a name I do not want to come up
    Thanks
    Lee

    Hi,
    Try this. Messaging> Message> Options> Prediction Off.

  • How to remove "Version Name" from contact sheets

    When printing contact sheets, how do you remove the words"Version Name" from under each photo.
    I just want my image numbers to be there such as JJC_3795. As it appears now is reads, Version Name:
    JJC_3795.  I went to Presets then to File Names hoping this would fix it, but can't figure out how to make that change. Maybe it's not possible???
    Any help would be appreciated.

    I don't think it is possible. What I have done is print to PDF and then (in Acrobat Pro) covered the "version name" part with a blank text field, white background, and done the physical printing from Acrobat.

Maybe you are looking for

  • SELECT-OPTIONS for variables that cannot have a range

    Hi all, There is an option to show only one input-field for a select-options declaration by using the 'no intervals' option. But it is still possible for the user to specify ranges when doing multiple selections (i.e. specify intervals for the variab

  • How can i change Apple id on the administrator account?

    I recently got an imac with the mac mini. I am switching over to mac from being a lifelong pc user, so this is new to me. When i first set up the computer i put in the apple id with my email address, but it was the same one that i use for my ipad.  I

  • Weird behavior in my code.

    class MyCounter implements Runnable {     public void run( ) {         for ( int i = 0; i <= 100; ++i ) {                 if (  ( i % 10) == 0 ) {                    Thread.yield();                    System.out.println( Thread.currentThread().getNam

  • Suggestions for disks from Power Mac G4 Tower?

    Hello fellow Mac users, I still have the complete disk set for my old Power Mac G4 desktop system (it died and I've moved on to two MacBook Pros). Any suggestions for what I should do with them? Thanks for the advice Regards, Vicki

  • One to many mapping problem

    In my JPA project I'm using these three classes: Cart.java: package com.spinnaker.pedja; import java.sql.Date; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.Set; import javax.persistence.*; @Entit