CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 1999
    Posts
    7

    How to avoid memory cache programmatically (in appleet)



    hi all,


    this is very very urgent. Can anyone say how to avoid caching of certain

    sensitive data's in memory say password and userid.


    The situation is something like this.


    when the user submits his password and userid then using java console

    in web browser we can dump the caching to memory.out file if we open and

    see the file called memory.out. password and userid are getting stored


    can anyone give a valuable suggestions or opinions


    my email id [email protected]


    thanx and regds

    ganesh

  2. #2
    Join Date
    Mar 1999
    Posts
    7

    Re: How to avoid memory cache programmatically (in appleet)



    Hye,


    I didn't quite understand the query you posted. Anyways, try using the "transient" keyword for the sensitive data. This should work. Are you using Serialization?

    e.g. protected transient String login;


    Tell me if this worked or not.


    Long live Java....


    Davender aka JaVaFLow

  3. #3
    Join Date
    Apr 1999
    Posts
    2

    Re: How to avoid memory cache programmatically (in appleet)



    hi Davender,


    The transient method is not working properly. i will get back to you in detail if you just send me your e-mail id . my email id [email protected] or [email protected]


    thanx and regds

    ganesh



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured