Previous User details showing on new forms

A user of my application has reported seeing a previous user's details when using my application. I realise that this is caused by the user using a link with another user's session ID in the url, however I was wondering if there was a way to stop this from happening even when the session ID is in the url.
Basically, I dont users from different machines to be able to access each other's sessions.
I am using application express v1.5

Hi
enter their details (including
credit card details) directly without logging in (is
this bad practice?).I would not say this was "bad practice" as most sites where people pay for items by credit card are public. They do however use Secure connections to ensure that the data being sent to the server is protected.
I will need to look into this further to try and figure out a way to kill the session, or at least mark it as old. However as a work around you can always clear the cache for items on the page. This will reset the values of the items. Create a Process to clear the cache after you have done all your other processing. This way at least if someone else visits the site using the same session id, there will be no data visible to them.
PS. I would disable the ability for users to enter financial details in your app until this is fixed, as I personally would not be too happy that my card details could potentially be visible to anyone with the correct knowledge!!
Chris

Similar Messages

  • Wrongs user Details showing in welcome text. "Masthead"

    Dear all,
    Can you please explain why Mr. xyz name is displayed when Mr. abc has logged into portal with his own Login ID?
    In UME,,, all users realted details are correct.
    Regards
    Deepak Raikwar

    Hi,
    Check in User Admin whetehr the correct name is maintained over there or not. Check whether the Logon ID and the Name maintained for the same is correct or not. Still if it shows the wrong name, then just edit the user details and just change and set back the correct name and save it. Then open the portal in a new browser after clearing the cache. if nothing works then restart the portal and try again.
    Thanks,
    Mahendran B.

  • Help-new user-how do i show my new form

    Hi everyone
    i just created my first form,with data base of axccess linked
    to it.
    I created it by using asp.net.c files,in DW,i noticed that
    the file that created is an aspx file,and when i try to
    preview him in browser i get these message
    "Server Application Unavailable
    The web application you are attempting to access on this web
    server is currently unavailable. Please hit the "Refresh" button in
    your web browser to retry your request. "
    am i suppose to do something with these aspx files before i
    preview it ,link it somewhere or something.cant understand what the
    problem.i did exactly wha was told in the help of DW.
    please help
    thank you

    Do you have the Dot Net Framework installed on your computer?
    Check in
    Control Panel/Administrative Tools and see if the Microsoft
    .Net Framework
    shortcut is in there.
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Traveller25" <[email protected]> wrote in
    message
    news:e2grbn$4uu$[email protected]..
    > Hi everyone
    > i just created my first form,with data base of axccess
    linked to it.
    > I created it by using asp.net.c files,in DW,i noticed
    that the file that
    > created is an aspx file,and when i try to
    > preview him in browser i get these message
    >
    >
    > "Server Application Unavailable
    > The web application you are attempting to access on this
    web server is
    > currently unavailable. Please hit the "Refresh" button
    in your web
    > browser to
    > retry your request. "
    >
    > am i suppose to do something with these aspx files
    before i preview it
    > ,link
    > it somewhere or something.cant understand what the
    problem.i did exactly
    > wha
    > was told in the help of DW.
    > please help
    > thank you
    >
    >

  • Issue with number/contact details showing on new iPhone

    Hi I'm having an issue with numbers. Myself & my mum both have iPhones. My Mum had previous phone (not iPhone), she purchased an iPhone & ported her old number across. before she ported we were texting each other on the new iPhone number. Now she has ported her old number to iphone, when she texts me it still shows the number she got with iphone, not her contact name or original ported number which I have saved, however if she calls me it does show her contact name & not the number. When I text or call her contact in my phone she does get it, however message sends as txt message not iMessage (iMessage is active on both phones) hope this all makes sense. can anyone help at all?
    Many thanks

    Swipe down from the middle of the screen to open Spotlight Search then type Contacts. If it is in a folder the folder name will be to the right of the Contacts listing in search.
    By default it is in the Extras folder on the second page.

  • Ichat user details showing as "another" user

    I have a MacMiniServer 10.8 that is running the Address Book for my company
    I have a shared AddressBook that all users access for all Company data
    Several of my users have been complaining that their iChat "User" name was being displayed as another member of staff.
    I have had them set their own "My Card" details to themselves.
    This then changes their own display name shown in iChat.
    However this then affects another member of staff.
    Then changing that member of staffs "My Card" changes either the original user or someone else.
    It does not seem to affect all users.
    I have tried getting users to create a "Local" Vcard in AddressBook and set "My Card" to that, but it is still affecting other users.
    Sometimes the users have a Local and a Networked address book entry both showing as "Their" card at the same time.
    Has anyone any experience of this and advice of how to stop this behaviour
    I asked this question under ichat "discussions" and was advised to ask it here also
    Regards Tony

    Hi
    enter their details (including
    credit card details) directly without logging in (is
    this bad practice?).I would not say this was "bad practice" as most sites where people pay for items by credit card are public. They do however use Secure connections to ensure that the data being sent to the server is protected.
    I will need to look into this further to try and figure out a way to kill the session, or at least mark it as old. However as a work around you can always clear the cache for items on the page. This will reset the values of the items. Create a Process to clear the cache after you have done all your other processing. This way at least if someone else visits the site using the same session id, there will be no data visible to them.
    PS. I would disable the ability for users to enter financial details in your app until this is fixed, as I personally would not be too happy that my card details could potentially be visible to anyone with the correct knowledge!!
    Chris

  • How can i pass anything that i display on a new form pictureBox to display it on form1 pictureBox1 ?

    I did a new form. and to show the new form i'm doing in Form1:
    ScanningClouds sc = new ScanningClouds(Next_File);
    sc.FormClosing += sc_FormClosing;
    sc.Show();
    And in the new form i have a pictureBox in the designer and i display things on it the new form code is a bit long.
    Now instead showing everything on the new form pictureBox i want to display it on the form1 pictureBox1.
    How can i do so when i click the button to show the new form instead it will not show the new form but only pass anything to the form1 pictureBox1 and show it on the form1 pictureBox1 ?
    This is the new form constructor:
    public ScanningClouds(string InitGifFile)
    InitializeComponent();
    pen = new Pen(Color.Red, 3);
    formloadfirsttime = true;
    numericUpDown1.Value = 200;
    brush = new SolidBrush(Color.Red);
    trackBar2.Minimum = 1;
    trackBar2.Enabled = false;
    bmpnew = new Bitmap(512, 512);
    label1.Text = "";
    radar_scale = Properties.Resources.radar_scale_heb;
    label1.Width = radar_scale.Width;
    label1.Height = radar_scale.Height;
    label1.Image = radar_scale;
    path_exe = Path.GetDirectoryName(Application.LocalUserAppDataPath);
    ScanClouds = Path.Combine(path_exe, ScanClouds);
    if (!Directory.Exists(ScanClouds))
    Directory.CreateDirectory(ScanClouds);
    ConvertedBmpDir = Path.Combine(ScanClouds, ConvertedBmpDir);
    if (!Directory.Exists(ConvertedBmpDir))
    Directory.CreateDirectory(ConvertedBmpDir);
    radarImagesDirectory = Options_DB.Get_Radar_Images_Download_Directory();
    radarImagesDirectory = Path.Combine(path_exe, radarImagesDirectory);
    dir1 = new DirectoryInfo(radarImagesDirectory);
    trackBar1FileInfo = dir1.GetFiles("*.gif");
    trackBar1.Minimum = 0;
    trackBar1.Maximum = trackBar1FileInfo.Length -1;
    trackBar1.Value = trackBar1.Maximum;
    b = new Bitmap(InitGifFile);
    b1 = new Bitmap(InitGifFile);
    pictureBox1.Image = b;
    ConvertedBmp = ConvertTo24(InitGifFile);
    mymem = ToStream(ConvertedBmp, ImageFormat.Bmp);
    startButton.Enabled = true;
    pauseButton.Enabled = false;
    It's getting file name now and i'm converting it to bmp and put it in the pictureBox.
    But instead the local new form pictureBox1 i want to display it on the form1 pictureBox1.

    Once again we can refer to BonnieB's blog on the subject.
    http://geek-goddess-bonnie.blogspot.com/2011/01/passing-data-between-forms.html
    http://geek-goddess-bonnie.blogspot.com/2012/12/passing-data-between-forms-redux_31.html
    I think that method 3 on her first post is the one you're looking for.

  • Tabular Form - How to store in a column the User details (APP_USER)

    Hi all,
    I have let's say the following table:
    USER_COMMENTS(
    ID number primary key,
    COMMENT_TEXT varchar2(50),
    POSTED_BY_USER varchar2(50),
    DATE_POSTED date,
    UPDATED_BY_USER varchar2(50),
    DATE_UPDATED date)
    How do I, using a Tabular Form, get the USER details in the columns POSTED_BY_USER and UPDATED_BY_USER and the SYSDATE in DATE_UPDATED...
    I've tried the following:
    Created tabular form, all fields included. In Report Attributes > edit UPDATED_BY_USER > Display as Display as Text (saves state); Default Type: Item (application or page item); Default: APP_USER.
    It's not working.
    Thanks!
    Andrei

    It has to be a text field column type with source like the other updatable columns. You should hide that column and create a second of display as text if you want to show the content. Once this is done then you can use the default value and just type the item name there as you did:
    P1_ITEM
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Get previous items unique value in new add item form

    Hi
    I have on list having items related to multiple locations.
    Every location is related to one user.
    When user logs in it filters the list with that users location.
    Now when user click on add new item I want to get the data related to his location using item event listener.
    But in new item form there is no way to get the location of that user in event listener as its new item.
    So I passed the qury string parameter form list and changed the add item form link and form to get the query string paramter as default value in Add new Item form.
    But again when user clicks on save button it redirects to original url without paramter. 
    How to redirect user to url with parameter on click on Save/Cancel.
    Is there any other way to get the previous item unique value in add new item from before executing the event listener?

    Hi,
    According to your post, my understanding is that you wanted to redirect user to url with parameter on click on Save/Cancel.
    You need to modify the onclick event need to as below:
    javascript: {{ddwrt:GenFireServerEvent('__redirect={{Home.aspx?Participant={@Participant}&amp;@Activity={@Activity}}}')}}
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/b506cfe5-650e-4017-b470-9ca0a75cd390/sharepoint-2010-list-how-to-pass-parameters-in-a-url-to-another-page?forum=sharepointcustomizationprevious
    In addition, you can creating an intermediate page which just finds the filed value with a DVWP and then redirect to RedirectURL with the filed value on the Query String.
    For more information, you can refer to:
    Redirect to Another Page from NewForm.aspx with the New Item’s ID
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Good evening, Have been buying ipad4 device used by a licensed legal place in the UAE during use shows that locked the machine by the previous user's icloud I can not deal with it, please help

    Good evening,
    Have been buying ipad4 device used by a licensed legal place in the UAE during use shows that locked the machine by the previous user's icloud I can not deal with it, please help

    amr35 wrote:
    But I want to figure out a solution to this problem because I was not able to get to the first user because I did not know this person, or access to the store where you purchased the working conditions, please help because I had paid an exorbitant amount to buy
    There is no solution other than having the device cleared by the former owner. If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must contact the previous owner to get permission to use the device. If you cannot contact the previous owner return the device to where you bought it and get a refund. You will never be able to activate the device and no one can help you do it.

  • URL show password when calling a new form

    Forms 10.1.2.0.2
    Java 6.22
    Windows XP
    FireFox 4.0 and IE 8.0
    Hi. When calling another form from within an existing form the new form shows the URL I'm calling, but also includes the parameters I'm passing which happen to include my username and password. Like this:
    http://9.35.32.205:7777/forms/frmservlet?pageTitle=Dropper%20E/M&config=TTMSMENU&form=dropper_em&userid=MYUSER/MYPASS@SPARC20
    {code)
    Is there anyway to suppress the display of the URL or the parameters?
    Any help would be greatly appreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    You said:
    ...When calling another form from within an existing form... Are you calling another form from an already open form using WEB.SHOW? If so, why? There are probably more reasons why you should not do this than the number of reasons to do this. Most importantly is that by opening a new browser to launch another Forms instance, you increase the resource usage on the client, thereby degrading performance.
    Why not use CALL_FORM, OPEN_FORM, or NEW_FORM? With any of these, the next form to open will display in the same browser and no login will be required since the user has already logged in at the first form. If the goal is to achieve multiple instances of the same "first" form, well for security sake, I would recommend the user log in manually each time anyway.

  • FDM: Need help on how to show the new attribute in import - export form.

    Hello,
    I was able to enable a new attribute in FDM workbench client. Now I see this new attribute in import format , but I don't see this attribute in import, validate and export form. Please help how I can show this new attribute in import, validate and export.
    we are using FDM 11.1.1.2.0 version.
    THanks,
    sikandar

    Hello SH,
    Thanks for your response.
    We have already have attribute1, 2, 3 and attribute12 which is already enabled and I can also see them in the import, validate and export form.
    I even tried to click on the amount field to see the details (Click here to see details). When I check on the amount field, nothing appears.
    Might be some setting which is missing. If you can please guide that will be helpful.
    Thanks,

  • My mail shows as new user since I added I cloud how do I correct?

    my mail shows as new user since I added I cloud how do I correct?

    Hello,
    Can you give us more details please?

  • Hide content type from the new menu but show in edit form

    SharePoint Online, I have following 4 site content types Word Document Excel document PowerPoint document General document
    These content types are being used in a document library and "Word Document" is the default content type, When user clicks on "new" menu, all 4 content types are shown.
    I don't want to show "General document" in the new menu but I want to show in edit form, I have marked it hidden in the library settings but now it is not visible in the edit form.
    Any idea how can I hide content type from the new button but show in edit form?

    Hi,
    Whether you use SharePoint online 2013.
    If we hide the content type in the library settings, the content type will not be displayed in both new menu and edit form.
    To accomplish your qequirement, we need to use css code:
    style <style type="text/css">
    ul.ms-cui-menusection-items32 li:nth-child(4) {
    display: none !important;
    </style>
    perhaps your environment is different with mine, you need to make a little change to the code. 
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have
    feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • Update Customer User Details Form

    I'm pretty new to BC so hope someone can help me out with this. 
    I'm wanting to create a Secure Login page that allows my customers to login and update their Account details that they have provided with a (Custom Registration form), due to some customer fields
    My problem is that the Secure Zone is setup fine, however under Site Modules --> SecureZones --> Update User Details form does not have the fields which I need it to update from the Customer Registration Form. 
    What I've done is below:
    1. Setup a secure login page
    2. Upon login it is redirected to the Update Details page
    3. Within the Update Details page, I have inserted the module "Update User Details form"
    However I'm not sure how to customize the form in order for it to update/edit information retrieved from other forms.
    Hope someone can help.  Thanks!

    Hey there,
    You can, what your probably missing is selecting the dropdown where you choose to include the CRM data.

  • A new user name showed up on my computer after a windows 8 update.

    A new user name showed up on my computer after a windows 8 update. A name I do not know or recognize. After the update,  the screen showed 2 users, myself and the name "John". it wasn't there yesterday, & I am the only user. I also bought the laptop new so it can't be a previous user. Can anyone tell me how to remove "John" from my computer. I am going to do a system restore & see if that works. In the meantime, if anyone has ever had this happen, what did you do?
    Spoiler (Highlight to read)
    This question was solved.
    View Solution.

    Hello Patthemech1. To remove this account, I would like you to reference this link on how to remove user accounts on Windows 8. Let me know if this assists you. I'm only here to help!
    http://answers.microsoft.com/en-us/windows/forum/windows_8-security/how-do-i-delete-user-accounts-on...
    Mario
    I worked on behalf of HP.

Maybe you are looking for

  • IPod mini new PC connection woes

    Hi all, Please help me out! I'm a frustrated uncle being nagged by his niece re her 2nd gen ipod mini and connection to her pc. Long time mac-user, so l've never encountered this kind of problem. I've tried the search function but this seems to be a

  • Adobe Reader 9.0 - Zoom In shortcut?

    Hi, I am used to the zoom in shortcut "ctrl" + "+", but somehow these smart developers linked that shortcut (in the newest version) to switch to the next page... is there any possiblity to reconfigure the shortcuts? Does anyone know the new shortcut

  • Attachments and pdf form offline

    It would be great if partecipants in my surveys could be able to attach files at the pdf form while they are filling it offline.

  • Host lookup with full domain fails

    Hi, we have a couple of Macs that live in a Windows Active Directory domain. They are not part of the domain (i.e. joined), but they get their DHCP config from the Active Directory Controller (ADC). The active directory has the name "company.local" (

  • Movie highlight focus

    I have a page with five different swfs embbedded in it. However on some browsers the swf with focus is highlighted with a ring around it to show it has focus. However I don't want it or any of the movies to have this ring/highlighting when they have