Urgent:Session swapping problem

Hi,
We have a peculiar problem. We are running a site using JSP. Session handling has been done.
When 2 users log in simultanesouly from different machines into our site and do a transaction, the details of the users are getting swapped between the users. The details of user A are getting transferred to User B and vice versa after a page has been submitted.
What might be a problem ?
Pls help me out immedately.

Hi,
I had something similar, and in my case I had to set the isThreadSafe page property to false. Normally the JSP environment assumes that your jsp-files are 'Threadsafe'. But in your case I think they are not. When you put in your jsp-file the statement
<%@ page isThreadSafe=false %>
then the JSP environment will take care that your jsp-file becomes threadsafe. This should solve your problem.
Sponiza

Similar Messages

  • Urgent: session invalidate problem

    Guys:
    Has anyone had a issue with session.invalidate() using weblogic 8.1.
    we have vignette portal and weblogic 8.1.
    the problem i have noticed is session.getId retunrns a extra timestamp string in the end. And i am thinking since this changes the entire sessionid, it does not get invalidated. I tried adjusting the weblogic.xml's idlength session-param to 52 but this still happens after that. can anyone suggest any insights. i am unable to kill the session and hence the user is always logged in. the only way is to close to broswer window.

    here is the error printed out:
    java.lang.NullPointerException
         at com.sssw.srv.http.CommonLogger.log(CommonLogger.java:217)
         at com.sssw.srv.http.httpd.log(httpd.java:4229)
         at com.sssw.srv.http.Client.log(Client.java:254)
         at com.sssw.srv.http.Client.loop(Client.java:1300)
         at com.sssw.srv.http.Client.runConnection(Client.java:1495)
         at com.sssw.srv.http.Client.run(Client.java:1442)
         at java.lang.Thread.run(Thread.java:479)

  • Session Expired Problem on OAS

    Hi,
    I often got the error message "Session Expired" displayed on my HTML page that serves Java Servlet output after some time.
    I attempted to look through my Servlet source codes but it has no problem. In fact, it runs perfectly well on JavaWebServer2.0.
    This seems to be a OAS problem. I'm using Oracle Application Server 4.0.8.1. I attempted changing the Servlet Cartridge's "Max session idle time" and observe the behaviour. It appears that when "Session Expired" problem happened, my servlet class never get called. OAS simply display a "Session Expired" message on the web page.
    How can I avoid this? How can ask OAS to call my servlet's doGet() to create a new session when it expired?
    Anyone knows how?
    null

    Hi,
    OAS has a limitation of 300 seconds. This value cannot be changed. See the release notes.
    One possible way to get around this is to use the Oracle Supplied Session class and use the time feature in that.
    This a big limitation and I am not sure why Oracle designed the product this way.
    null

  • Urgent: Sessions problem pls help me

    Hi all,
    Its already late to post this problem.pls help me urgently.
    I have a servlet & two jsp's. first i request servlet, it processes something and forwards request to my first jsp. In that jsp on a button click, i'm displaying a new popup by calling showModalDialog. this dialog gets data from the same servlet but it forwards to my second jsp.(second jsp can be seen in dialog)
    Now if i submit form from my second(dialog) jsp, the servlet reports that session has expired. I tried a lot but invain. any one who helps me is appreciated well by all of our forum.
    waiting 4 u r reply,

    It could be that you have cookies turned off and you're not using URL Rewriting.
    In J2EE, the first time your browser makes a request to the server, the server responds and appends a SESSION_ID parameter to the request as well as storing a cookie with the SESSION_ID.
    The second time your browser makes a request, the server checks for the cookie. If it doesn't exist it checks for the parameter. If neither exist the server assumes its the first time your browser has made a request and behaves as describe in the previous paragraph.
    In your case when you submit the form if you have disabled cookies and the action attribute doesn't have the SESSION_ID paramter appended to the url, the browser will assume it's a first request. The user will not be logged in, hence your session has expired error.
    To fix this you need to encode the URL in your JSP. You can use the struts html:rewrite tag or the HttpServletReponse.encodeURL method, or if you're using JSP 2.0 the JSTL c:url tag.

  • Urgent!! Problem in using session invalidate()

    Dear all,
    I think may be the problem has been posted here before, but i can't find the solution yet. I hope you can help me about this.
    My case is that i wrote a logout servlet for my web site. So i use session.invalidate() in the servlet. After that it will redirect to the home page again. At this time, NullPointerException is thrown. I have tried many ways to solve this problem, but still failed.
    Can anyone help me? Thanks for advanced.
    Priscilla

    here is the error printed out:
    java.lang.NullPointerException
         at com.sssw.srv.http.CommonLogger.log(CommonLogger.java:217)
         at com.sssw.srv.http.httpd.log(httpd.java:4229)
         at com.sssw.srv.http.Client.log(Client.java:254)
         at com.sssw.srv.http.Client.loop(Client.java:1300)
         at com.sssw.srv.http.Client.runConnection(Client.java:1495)
         at com.sssw.srv.http.Client.run(Client.java:1442)
         at java.lang.Thread.run(Thread.java:479)

  • URGENT-Session Synchronization between WebSEAL and WebLogic Server 6.1

    Hi All,
    I am a new-bee to Access Manager and WebSEAL.
    I have an application running in WebLogic Server6.1.
    I have WebSEAL junctioned to iPlanet Web Server, which in turn
    integrates with WebLogic through NSAPI plug-in. I am using iPlanet
    Directory Server as Access Manager user registry.
    As per my application requirement there should be single sign on, that
    is if the user gets authenticated with WebSEAL, he need not have to
    login to the application and would be able to access any page. But if
    he logs off the application and if he tries to access any page then he
    need to again get authenticated with the WebSEAL. Here I am having a
    problem.
    I am not able to make the WebSEAL to through HTTP authentication
    challenge again if the user logs off the application. The only way to
    make webSEAL to through HTTP authentication challenge in the browser
    is to close and open the browser.
    I initially tried with BASIC authentication, it does not work.
    Then I tried with FORM authentication. In this case webSEAL sets a
    cookie called PD-H-SESSION-ID. When the user clicks the "Logoff" link
    in the application, I tried to set this cookie's max age to zero, it
    does not work. The max age is always set to -1 value. I even tried to
    overwrite the cookie value with blank space using HttpServletResponse
    setHeader method, which also didnot work.
    Can anybody tell me how to make the webSEAL to through the
    authentication challenge when the user logs off the application and
    what kind of authentication method (BASIC or FORM) to use?
    This is very urgent. Pls help?
    Thanks in advance.
    Regards
    Sundar.

    Hi All,
    I am a new-bee to Access Manager and WebSEAL.
    I have an application running in WebLogic Server6.1.
    I have WebSEAL junctioned to iPlanet Web Server, which in turn
    integrates with WebLogic through NSAPI plug-in. I am using iPlanet
    Directory Server as Access Manager user registry.
    As per my application requirement there should be single sign on, that
    is if the user gets authenticated with WebSEAL, he need not have to
    login to the application and would be able to access any page. But if
    he logs off the application and if he tries to access any page then he
    need to again get authenticated with the WebSEAL. Here I am having a
    problem.
    I am not able to make the WebSEAL to through HTTP authentication
    challenge again if the user logs off the application. The only way to
    make webSEAL to through HTTP authentication challenge in the browser
    is to close and open the browser.
    I initially tried with BASIC authentication, it does not work.
    Then I tried with FORM authentication. In this case webSEAL sets a
    cookie called PD-H-SESSION-ID. When the user clicks the "Logoff" link
    in the application, I tried to set this cookie's max age to zero, it
    does not work. The max age is always set to -1 value. I even tried to
    overwrite the cookie value with blank space using HttpServletResponse
    setHeader method, which also didnot work.
    Can anybody tell me how to make the webSEAL to through the
    authentication challenge when the user logs off the application and
    what kind of authentication method (BASIC or FORM) to use?
    This is very urgent. Pls help?
    Thanks in advance.
    Regards
    Sundar.

  • Unexpected Comm. Express. (UWC) session close problem

    Hi All.
    in our communication express webmail (/UWC) page . when we click 'close page' button, users session not terminate. so idle time time is running. and when idle time reached quota active page unexpectedly "session closed re login again." message appear and session close.
    but if we click normally "session terminate" button on uwc , no problem occurs (session terminate , iddle time reset).
    this problem is very important for us.
    Thanks advice.
    s.baskoylu

    s.baskoylu wrote:
    in our communication express webmail (/UWC) page .What version of UWC/CE are you running (showrev -p | grep uwc)?
    when we click 'close page' button, users session not terminate. so idle time time is running.Which "close page" button are you talking about? The only button that will terminate the session is the "Log Out" button at the top of the UWC/CE interface.
    and when idle time reached quota active page unexpectedly "session closed re login again." message appear and session close.Have you configured the following two options in your uwcauth.properties file:
    uwcauth.identity.refreshidentitysession=true
    uwcauth.identity.sessionrefreshinterval=5
    this problem is very important for us.If you require an urgent fix for this then I suggest you log a Sun Support request immediately.
    Regards,
    Shane.

  • Session management problems with SSO

    Hi all-
    I've been getting an Apex app tied to SSO as a partner app (per http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html). So far, it sort of works. If I go to my apex app, it redirects me to SSO, where I authenticate and end up back in the apex app. Great. Here are two problems I've run into:
    1. If I am already authenticated to SSO, and I go to my apex app (url like: http://host/pls/apex/f?p=101:1), my browser goes into an infinite redirect (url like: http://host/pls/apex/f?p=101:1:::::FSP_AFTER_LOGIN_URL:\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|||||FSP_AFTER_LOGIN_URL|\f?p=101|1|||||FSP_AFTER_LOGIN_URL|\f? p=101|1|\\\\\\\\\\\\\\\\\\\). To resolve, I have to clear cookies.
    2. If I am using my apex app, then log out of SSO (in another browser window), I can still click around in my apex app (i.e., apex thinks I'm still authenticated).
    Anyone have any thoughts? I'm wondering if I need to do something in page session management (under authentication schemes) to fix #2, but I have no clue about #1.
    Thanks
    Rob

    Hi Scott-
    Thanks for the info on #2 - I'll work on that after I get #1 sorted out, since it's the more dire problem. Here's some more info:
    Apex version = 3.0.1.00.08
    SSO SDK = ssosdk902.zip
    I set it up as "My Application as Partner App." I used "MY_PARTNER_NAME" as SSO Partner Application Name. In the list of SSO Partner Apps on the SSO Admin page, my partner app name is also MY_PARTNER_NAME. It gives the following info:
    Login URL:      https://sso_host/pls/orasso/orasso.wwsso_app_admin.ls_login
    Single Sign-Off URL:      https://sso_host/pls/orasso/orasso.wwsso_app_admin.ls_logout
    Home URL: http://apex_host/pls/apex
    Success URL: http://apex_host/pls/apex/RBLICK.YOUR_PACKAGE.PROCESS_SUCCESS
    Logout URL: http://apex_host/pls/apex
    RBLICK is the schema owning the apex app. In there, I created a package called YOUR_PACKAGE:
    create package YOUR_PACKAGE as
    procedure process_success(urlc in varchar2);
    end YOUR_PACKAGE;
    CREATE PACKAGE BODY YOUR_PACKAGE AS
    procedure process_success(urlc in varchar2) as
    begin
    wwv_flow_custom_auth_sso.process_success(
    urlc=>urlc,
    p_partner_app_name=>'MY_PARTNER_NAME');
    end process_success;
    END YOUR_PACKAGE;
    Anything look obviously wrong to you?
    Thanks!
    Rob

  • [Urgent]Session terminates during DS enhancement due to big data

    Hi experts,
       I have 0FI_GL_4 for DS enhancement. The business requirement is complicated but we have already fully optimized that ABAP code. Now our R3 side has 2.5 million records in BSEG and if we start BW initial extraction , the session will use more than 2G memory (use ST06 - Top CPU) after 0.5 million data's extraction which will automatically terminated by system!
        Problem is that I can not write better code for the requirement. Any workaround to split this initialization?
    Regards,
    Aaron

    Hi Anil,
      Thanks for you advice! Here's my concerns for multi initial / delta :
    1, What's your suggest condition to divide the whole GL4 data source? If divide by fiscal year, my initial data is still that big ;  if divide by company code, do we have to maintain new initial if a single new company code is added in R3 (that's highly probably in our project )
    2, If we go with multi initial /  delta, does the update method between GL4 ODS to its afterward data provider also the same with before? I mean will the ODS generate several deltas for them? Or it will only contain a delta package which we don't need to take special care on
    Regards,
    Aaron

  • Session timeout problem with CCA

    I have developed a Client applicaiton in ASP.Net 2005 using the SOAP Api provided in Oracle CCA 8.1.3
    The System details are as under:
    Product – Oracle CCA 8.1.3
    Server on Windows 2003 Server – Standard Edition
    Web Server – BEA Weblogic 10g3
    Database – Oracle 10g
    Java Version – 1.5 Update 10
    I am facing a problem where the users session changes every 5 Minutes 30 Seconds. I get the "Session Change" message and at this point I cannot see the Agent on the CCA Agent Monitoring screen. What I need to do now is to Reopen the session. Upon Repoening the Session I would get the same SessionId from the WebServer that I had get earlier.
    Please help.

    Hi All,
    could u please help me out how to make the SIP CAlls in the CCA
    I am able to chat between supervisor and agent.
    when it comes to th eoutbound cal
    i am using X-lite software for making the outbound Cal.
    when i make a cal the status will be changed to rining mode and comes back to on-hook after few min.
    when i see the logs the legs are inviting and getting disconnected
    RVSIP_CALL_LEG_STATE_INVITING [44173472]
    26/04/2011 15:08:15.931 : 4 : 8028 : 4552 : CallCenter : 27 : # 9: CCallCenter::SendOutMessage() Sending message [##;4;2;99880103;106,9,27,2582,:10.103.91.13,hschbscgn25001,,;] to [type=20, id=0, grp=102]
    26/04/2011 15:08:15.931 : 4 : 8028 : 4552 : CallCenter : 27 : ******** : Sent : new message (99880103) to CtiServer Id[0] group[102] version[0]
    26/04/2011 15:08:15.931 : 4 : 8028 : 4552 : CallCenter : 27 : # 9: Added Timer[68] for line[9] about[4100] on[1303810945,931]
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : CCallCenter::SendOutMessage(CMessage) Sending message [99880100] to [type=20, id=0, grp=0]
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : ******** : Sent : new message (99880100) to CtiServer Id[0] group[0] version[1]
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : CCallCenter::SendOutMessage(CMessage) Sending message [99880100] to [type=103, id=0, grp=0]
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : ******** : Sent : new message (99880100) to RedirectServer Id[0] group[0] version[1]
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : Sending GET_CHANNELS_INFO_UPDATE to all NetworkManager
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : CCallCenter::SendOutMessage(CMessage) Sending message [1018] to [type=12, id=0, grp=0]
    26/04/2011 15:08:17.009 : 4 : 8028 : 4552 : CallCenter : 27 : ******** : Sent : new message (1018) to NetworkManager Id[0] group[0] version[1]
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : AppCallLegStateChangedEvHandler [[email protected]]
    26/04/2011 15:08:19.431 : 0 : 13712 : 4552 : CallCenter : 27 : RVSIP_CALL_LEG_STATE_MSG_SEND_FAILURE [44173472]
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : Adding SDP info to Message
    26/04/2011 15:08:19.431 : 0 : 13712 : 4552 : CallCenter : 27 : Failed to DNS continue on a call
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : AppCallLegStateChangedEvHandler [[email protected]]
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : RVSIP_CALL_LEG_STATE_DISCONNECTED [44173472] reason[15]
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : CH[9]: Sending EVENT_DISCONNECT_CALL
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : addAlarm() 44173472
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : AppCallLegStateChangedEvHandler [[email protected]]
    26/04/2011 15:08:19.431 : 4 : 13712 : 4552 : CallCenter : 27 : RVSIP_CALL_LEG_STATE_TERMINATED [44173472] reason[19]
    26/04/2011 15:08:19.431 : 4 : 8028 : 4552 : CallCenter : 27 : GOT sip_event on channel [9] type [12002]
    26/04/2011 15:08:19.431 : 4 : 8028 : 4552 : CallCenter : 27 : # 9: GOT EVENT CALL WAS DISCONNECTED BY REMOTE
    26/04/2011 15:08:19.431 : 4 : 8028 : 4552 : CallCenter : 27 : # 9: New event received [0X3 - CALL_MAKECALL_EVENT - 0X4001]
    26/04/2011 15:08:19.431 : 4 : 8028 : 4552 : CallCenter : 27 : # 9: CCallCenter::SendOutMessage() Sending message [##;4;2;99880104;106,0,101,;] to [type=20, id=0,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Urgent!!  Problems muxing .m2v files and audio!! MPEG Streamclip/Compressor

    Hello!
    I am under an urgent deadline to upload a short 6 min documentary clip for a client to review for screening this week. The footage was shot in 1080/60i HDV.
    Usually, I find the best quality and fastest way to do this is to export directly from my FCP sequence using the '150 min Best Quality' DVD settings in compressor to get an .m2v video file and .ac3 audio file. Then I open the .m2v files in MPEG Streamclip which links it with my .ac3 file, then do 'Export MPEG with MP-2 audio". This gives me a single, muxed file that I can then upload to YouTube or Vimeo.
    However, with this project, when I open up my .m2v file in MPEG Streamclip, it's recognizing the .ac3 file and I can see the info for it in the MPEG Streamclip window, but when I play the file in MPEG Streamclip or mux it, I don't hear any audio. Furthermore, after about 5 seconds into the clip, the playhead will continue moving, but the video will freeze, then maybe pick up again later. The .m2v video will play back smoothly in VLC player or Quicktime player, but not in MPEG Streamclip.
    I've tried exporting different little sections of the timeline to see if maybe I had some corrupted footage or whatnot. I even exported a small clip from an older HDV project to test. But no matter where I export from, I am running into the same problem. I can bring the .m2v file and .ac3 file into DVD Studio Pro and burn a DVD with no problem, but I can't mux them. If I build the DVD file in DVD SP and try to open the .VOB file with MPEG Streamclip, I get the same problem. I even tried using a different software to mux (ffmpegX) but to no avail. When I try with ffmpegX, it either tells me I'm dropping frames, or if it works and it muxes it, when I open the MPEG file, it'll stutter at about 5 seconds in as well and I can't hear any audio, even though there is supposed to be audio in the muxed file.
    I think I might have updated my Quicktime a few days ago with the system update, and maybe updated a few other things, so I don't know if this has any bearing on the problems I'm running into. But I was able just a few days ago to export HDV 1080/60i using this workflow without any problems.
    I realize I have other export options, but this always seems to me to be the best quality and fastest way of doing it vs. encoding an H.264 which, on my machine is RIDICULOUSLY slow...I need to be uploading multiple versions of the cut to the client, and really need help! Thanks so much in advance!
    J

    what you want is an m2v program file. Export a reference copy from FCP (uncheck Make Movie Self Contained") That's very fast. Bring it into Compressor. In the settings panel find the MPEG-2 settings folder. Select Program Stream. Adjust to your liking and run. The audio and video will already be "muxed" when it's done and using compressor 3 you can set it to upload to YouTube, Mobile or similar sites.

  • Enterprise Session Bean Problem

    Dear Experts,
    I have just installed Netweaver Developer Studio 7.1 Composition Environment and is doing some development on it from the tutorial in the following link
    [http://help.sap.com/saphelp_nw04/helpdata/en/c3/679564e11d482f8a706b423f67e56c/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/c3/679564e11d482f8a706b423f67e56c/content.htm]
    I have created a new EJB Project using the Configuration SAP EJB J2EE 1.4 Project and created a new stateless session bean Calculator. 
    I finished creating the session bean with all the BUSINESS METHODS, but when I expand the project node Calculator in the J2EE Explorer, I CANNOT see the Calculator.java class.  All other classes such as CalculatorBean.java, CalculatorHome.java, etc are present. 
    This is where the problem comes, when I create the JavaBean in the Web Module I will need to access the Calculator.java class and now I cannot access it since it is missing.
    Can you please guide me on how to generate the Calculator.java class in the session bean.
    Points will be rewarded for correct answers.
    Thanks in advance
    Edited by: jamison2004 jordan2004 on May 7, 2008 11:16 AM
    Edited by: jamison2004 jordan2004 on May 7, 2008 11:25 AM

    Hi jamison jordan,
    Maybe you check the CE version of the documentation:
    [Creating Your First J2EE Application|http://help.sap.com/saphelp_nwce10/helpdata/en/c3/679564e11d482f8a706b423f67e56c/frameset.htm]
    kind regards
    Stefanie

  • IE 6 & 7 display problem (perhaps function swap problem?)

    Hi,
    I'm hoping someone can help me with this as I have scanned blog after blog and forum after forum to no avail.
    I have the job of cleaning up another developer's code which does not display properly. The problem is that all is well in the world (or on this web site) except for pages that use function swap(). These pages do not display properly in IE 6 and IE7. They do display properly in IE 8, Firefox and Safari. The other pages of the site display fine in all browsers.
    The header displays and then the rest of the page is displaced off to the right rather than below the header as if it is flowing out of the container somehow.
    This is one of the pages that does not display properly in IE6 and IE7. Any help with this would be greatly appreciated.
    http://traciisaly.com/work.html

    You have some invalid code there that may be causing it.
    With your chosen doctype, you must close paragraph elements with </p> - and do not include paragraphs within paragraphs (line 99, for instance) or tables within paragraphs (twice on your page).
    In main.css, body{}, delete zoom: 1 ;
    And in .footer{}, change
    border: 0 px;
    to
    border: 0px;
    And in .header{} add height: 46px;
    I think that'll get you in the ballpark.
    Mark A. Boyd
    Keep-On-Learnin' :-)
    This message was processed and edited by Jive.
    It shall not be considered an accurate representation of my words.
    It might not even have been intended as a reply to your message.

  • GemXpresso JCard Manager session authentication problem

    Hello!
    First of all I am new in Java Card Technology and I am trying to explore the
    JCard Manager environment. I am using GemSafe Xpresso Cards.
    My problem is that I cant create a session between reader and card in one of my
    cards. The trace in this card's authenticate prosses is:
    Default key file URL: file:/C:/Documents%20and%20Settings/user/GemXpressoJCardManager/keyfiles/jc2.2.1%20-%20gp2.1.1/default.keys
    Select the Security Domain
    ->  00 A4 04 00 08 A0 00 00 00 18 43 4D 00
    <-  61 1B   [Normal ending of the command with <27> bytes of extra information.]
    key set 0 (Card Defined)
    Initialize Update
    ->  80 50 00 01 08 00 01 02 03 04 05 06 07 (00)
    <-  4D 00 40 82 B8 18 1E 2B 25 6D 0D 01 B5 44 51 2B 59 78 8B 8C BE EB 18 CF C9 AD D2 62, 90 00   [Normal ending of the command.]
    Card info KeySet=13
    (SCP 01,implementation i05)
    Command Exception on command: Authenticate. authentication failed: The card cryptogram is not verified.the other cards pass this procedure successfuly showing the message:
    Default key file URL: file:/C:/Documents%20and%20Settings/user/GemXpressoJCardManager/keyfiles/jc2.2.1%20-%20gp2.1.1/default.keys
    Select the Security Domain
    ->  00 A4 04 00 08 A0 00 00 00 18 43 4D 00
    <-  61 1B   [Normal ending of the command with <27> bytes of extra information.]
    key set 0 (Card Defined)
    Initialize Update
    ->  80 50 00 01 08 00 01 02 03 04 05 06 07 (00)
    <-  4D 00 40 82 D0 01 23 25 25 56 FF 01 C1 64 C0 1A 12 C1 E8 12 07 03 BC 8C 28 4A 9C 84, 90 00   [Normal ending of the command.]
    Card info KeySet=-1
    (SCP 01,implementation i05)
    External Authenticate
    ->  84 82 00 00 10 66 2B 64 5B A8 F6 35 CC DA 46 DD B9 1C CA 78 2E
    <-  90 00   [Normal ending of the command.]
    A Card was removed from the terminal: Gemplus USB Smart Card Reader 0 from the slot: 0I think that the card came this state because my partner to this project was
    issue a command by accident, and now he can't remember what he done.....
    I suppose I have to change the card's KeySet from 13 (D0) to -1 (FF) but I don't know how.
    Does anybody knows what i suposed to do and fix the problem??
    Thank you in advance for your help, Bill....

    Lets see... First of all thank you for the reply. Also I forgot to say that I use Global Platform 2.1.1 cards.
    I understand that the initial keyset has been changed and I can't turn
    back to keyset -1. Also my partner said that he don't remember to issued a specific command, but the only thing he remembers is that he send
    an (unknown for him) APDU to the card, from the SEND APDU panel, not very wise move.
    So he did not create a new key set, as I understand. I use the GET DATA command with Predefined Taq set to Key Information Data to retrieve the
    informations you told me but the answer was
    Get Data
    ->  80 CA 00 E0 (00)
    [ERROR  ] <-  6A 86
    [ERROR  ] <-  (ISO 7816-4) Wrong parameter(s) P1 P2 (Incorrect parameters P1 P2). So? what I can do now?
    Thank you again in advance.... Bill

  • JSP Session ID Problem

    I have a problem, where I am getting two separate Session Id's within the
              same browser instance. This is what I am doing:
              User sees login.jsp. A form that calls a servlet, when they do the submit.
              The first jsp and the servlet have the same Session ID. The servlet sets
              some attributes for that user, then calls
              response.sendRedirect(initial.jsp). The second jsp has a new Session ID, and
              so doesn't see any of the attributes that the servlet set.
              Am I doing something fundamentally wrong here, or is this a WLS problem? We
              are on WLS 6.0, no service packs installed.
              Thanks.
              Jeff Pfost
              [email protected]
              

    Cookies or URL encoding?                    Cookies.
              FYI. After that post, I download Service Pack 2 and applied it.
              That fixed the problem, and now a redirect doesn't generate a
              new session.
              Thanks.
              Jeff Pfost
              [email protected]
              "Cameron Purdy" <[email protected]> wrote in message
              news:[email protected]...
              > Cookies or URL encoding?
              >
              > Peace,
              >
              > --
              > Cameron Purdy
              > Tangosol, Inc.
              > Clustering Weblogic? You're either using Coherence, or you should be!
              > Download a Tangosol Coherence eval today at http://www.tangosol.com/
              >
              >
              >
              > "Jeff Pfost" <[email protected]> wrote in message
              > news:[email protected]...
              > > I have a problem, where I am getting two separate Session Id's within
              the
              > > same browser instance. This is what I am doing:
              > >
              > > User sees login.jsp. A form that calls a servlet, when they do the
              submit.
              > > The first jsp and the servlet have the same Session ID. The servlet sets
              > > some attributes for that user, then calls
              > > response.sendRedirect(initial.jsp). The second jsp has a new Session ID,
              > and
              > > so doesn't see any of the attributes that the servlet set.
              > >
              > > Am I doing something fundamentally wrong here, or is this a WLS problem?
              > We
              > > are on WLS 6.0, no service packs installed.
              > >
              > > Thanks.
              > >
              > > Jeff Pfost
              > > [email protected]
              > >
              > >
              > >
              >
              >
              

Maybe you are looking for

  • Upgrade 7.9.07 BUILD 014-123-244-287 to 7.9.08.22 not possible

    After upgrading to 7.9.08.08, it's not possible to upgrade to .22: pagxen010:/mnt/BPO_Files/MAXDB/MAXDB7908_22/maxdb-server-linux-64bit-x86_64-7_9_08_22 # ./SDBUPD SAP MaxDB Installation Manager - Database Upgrade 7.9.08.22 Upgrade Database: 0: UQ1 "

  • Find Sales Order Number for teh combination of material and serial number

    HI Friends, Can you please tell me how do i find out the sammes order number for a combination of material number and serial number. I need to make technical specs for this. Can you guys help me give soem idea ! Thanks in advance for your help !

  • Help compiling with .class files

    I am using JGrasp and I am trying to compile a program that uses .class files instead of the .java files, but JGrasp will not recognize these at compile time. How do I get my program to compile with these .class files?

  • Option Button in JTable?

    Hi, I read the Swing Tutorial for the JTable. Inside the tutorial, it says that Boolean is rendered with checkbox, however, can it be rendered as a RadioButton instead? Thanks

  • PHP RFC

    Hello, I got here via "Getting started" - so not sure if this is the right place to ask. I want to get started with PHP/Python RFC module, not really any ABAP/Netweaver development. I got ABAP Netweaver 701SR12008 Installation Master, and installed s