Please help (error going into edit page)

This is the error I am getting when I click on the edit link next to a page.
Error: The servlet produced the following error stack. java.lang.NullPointerException
     at oracle.webdb.page.DataProcessor31.sendRequest(Unknown Source)
     at oracle.webdb.page.DataProcessor31.generatePage(Unknown Source)
     at oracle.webdb.page.DataProcessor31.process(Unknown Source)
     at oracle.webdb.page.PageBuilder.process(Unknown Source)
     at oracle.webdb.page.ParallelServlet.doGet(Unknown Source)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
     at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
Any ideas?

Please contact Oracle Technical Support to resolve this problem.
Regards,
Jerry
PortalPM

Similar Messages

  • Please help error -9808 when downloading apps in itunes store anyone can help me out

    please help error -9808 when downloading apps in itunes store anyone can help me out

    Click here >  iTunes: Advanced iTunes Store troubleshooting
    Then "expand" Specific Conditions and Alert Messages
    Then click 9808

  • My ipod says it was et up with another itunes library, it wasn't, and when I add songs to my library when I go back into it they are all gone, please help im going in circles

    Please help, I am constanly re importing songs, I have to re sync my ipod to my library each time i plug it in, and I am unable to import songs from my media player, any ideas?

    When I plug it in I get the **'s ipod is already synced with another itunes library so do I want to erase & sync message
    Even though it is the same music in iTunes, iTunes does not see it as the exact same library because you had to re-add all the songs to it.
    You will need to erase and sync and you iPod will simply end up as it is now.
    It's like of your house burns down and you rebuild it exactly the same, it is still not the "same" house it was.

  • Error 404 on editable page

    I and a colleague have successfully loaded and edited your
    demo (news_start.htm) example and are happy with the process.
    However on setting up a live site, on accessing the editable area
    with CTRL+E I keep getting the (custom) Error 404 page and cannot
    proceed
    The editable page is:
    http://www.andrewleestrust.org/links.htm
    and the (custom) error is generated by:
    http://www.andrewleestrust.org/includes/ice/ide.html#page=links.htm
    Any suggestions?

    Hello ClandonMan,
    It sounds like you're experiencing the same issue discussed
    in the
    Error
    Editing Page topic...
    Please take a look at the following Tech Note which discusses
    the issue:
    http://www.adobe.com/go/kb406749
    Error: "The operation could not be performed because a
    problem occurred while attempting to connect to the server" when
    trying to edit a page using Adobe InContext Editing
    Issue
    After successful login in InContext Editing or when
    navigating to a page in your website while the InContext Editing
    toolbar is displayed, you receive the error "404 File or Directory
    Not Found", or, depending on the server configuration, a custom
    error page is displayed instead.
    If you try to edit the page you will receive the following
    error message: "The operation could not be performed because a
    problem occurred while attempting to connect to the server. Please
    check your Internet connection and try again. For more details,
    please visit the InContext Editing Support Center".
    Reason
    InContext Editing requires the HEAD HTTP request method to be
    enabled and functioning properly for a registered web site.
    InContext Editing will not function properly if the HEAD HTTP
    request method is disabled or if it does not function properly.
    InContext Editing is using HEAD requests to check the
    existence of the draft and published versions of the current page.
    If those calls do not work as expected (the HEAD should return
    status code 200/304 if the checked page exists, 404 otherwise) then
    you will experience this behavior. In most cases the problem
    appears on web servers running IIS 6 or 7 with PHP installed as
    CGI, but this problem may occur with other server configurations as
    well.
    Solution
    Contact your web hosting provider for assistance. This may
    require changes in web server configuration.
    Best regards,
    Corey

  • Customer Exit var (basedOn 0P_KEYDT) ABAP error - Going into Debug mode

    Hello All,
    I have created a BEX Query based on Infoset, so i couldnt use '0P_KEYDT' SAP Exit in a variable.
    Instead i created a Z 'Customer exit' with the same code.
    But when i execute query in RSRT, query is going into Debug mode.
    InfoProviders are all active, when i remove the Z 'Customer Exit' from the query then query is running fine. So i see that the problem is with the Z 'Customer exit' code.
    Here is the 0P_KEYDT code:
    FUNCTION RSVAREXIT_0P_KEYDT.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(I_VNAM) LIKE  RSZGLOBV-VNAM
    *"     VALUE(I_VARTYP) LIKE  RSZGLOBV-VARTYP
    *"     VALUE(I_IOBJNM) LIKE  RSZGLOBV-IOBJNM
    *"     VALUE(I_S_COB_PRO) TYPE  RSD_S_COB_PRO
    *"     VALUE(I_S_RKB1D) TYPE  RSR_S_RKB1D
    *"     VALUE(I_S_RKB1F) TYPE  RRO01_S_RKB1F
    *"     VALUE(I_THX_VAR) TYPE  RRO01_THX_VAR
    *"     VALUE(I_STEP) TYPE  I DEFAULT 0
    *"  EXPORTING
    *"     VALUE(E_T_RANGE) TYPE  RSR_T_RANGESID
    *"  EXCEPTIONS
    *"      UNKNOWN_VARIABLE
    *"      UNEXPECTED_VARTYPE
    *"      VARIABLE_INITIAL
      DATA:
          LS_RA_SID  TYPE   RSR_S_RANGESID.
      IF I_STEP EQ 0 OR                    " without popup or
         I_STEP EQ 1.                      " before popup
        REFRESH E_T_RANGE.
        CLEAR: LS_RA_SID.
        LS_RA_SID-SIGN = 'I'.
        LS_RA_SID-OPT = 'EQ'.
        LS_RA_SID-LOW = SY-DATUM.
        APPEND LS_RA_SID TO E_T_RANGE.
      ENDIF.
    ENDFUNCTION.
    Here is Z 'Cusotmer Exit Code:  (Defined I-STEP and E_T_RANGE)
    method ZPKEYDT.
      Data: ls_var_range TYPE rrs0_s_var_range,
            l_s_range TYPE rsr_s_rangesid.
      IF  I_STEP EQ 1.                  
    REFRESH e_t_range.
        CLEAR: l_s_range.
        l_s_range-SIGN = 'I'.
        l_s_range-OPT = 'EQ'.
        l_s_range-LOW = sy-datum.
        APPEND l_s_range TO e_t_range.
      ENDIF.
    endmethod. 
    I could really appreciate your help!
    Thanks in advance,
    DC

    Hi DeeCh.
    If you want to populate the value before the variabel screen input.then please follow below code
    case i_vnam.
      when 'ZPKEYDT'.
      if i_step = 1.
        l_s_range-low  = sy-datum..
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
          clear l_s_range.
              endif.
              endcase.
    Regards,
    Nanda.S

  • Help!  Can't edit pages

    Hi all, please help a newbie!!
    I have recently started working for a charity which had a
    Dreamweaver website. I have Contribute 3 for editing purposes, but
    I can't change a lot of things and it doesn't make any sense.
    Unfortunately the company that produced the website for us in the
    first plave has gone bust, so I have no access to any help from
    them. I have checked that I have full administration rights.
    The main problems are:-
    1. The pages are set in 2 column format, which I don't want,
    but I am unable to change this
    2. I can change font style/colour/alignment etc etc on the
    home page of the site, but on all the others this is not possible
    and I am only offered a choice of 6 pre-set styles which are awful
    3. When I edit a page in Contribute it appears correctly, but
    when I upload it to the site the text and images are misaligned (I
    am making sure that I am using the correct file types for images).
    I therefore have to keep editing the page and shifting things about
    and then publishing it until I get everything to line up correctly
    on the site.
    4. One of the pages says that I am unable to edit because
    another user is already editing. This user is a member of staff
    that left over 2 years ago.
    Sorry if some of this may seem basic, but I have done
    tutorials and read books, and I can't see any reason why I
    shouldn't be able to do all the above with full administration
    rights. I've been thrown in at the deep end here!
    Here's the website, in case that helps www.findavoice.org.uk
    Thanks in advance
    Liz :o)

    Hi,
    First of all Contribute is limited and in many cases you won't be able to change styles, colors, etc.
    We have a similar case here and the two column format is on our stylesheet and cannot be changed.
    Depending on how much control and how the styles were set up you may also see styles displayed differently. Usually the styles displayed are the only ones allowed to be used on that specific page. Doesn't mean something is missing. You can contact the Administrator to confirm whether the styles are correct for the pages you mentioned but I've never seen a mistake on setting the styles up.
    As I mentioned above Contribute is limited. You are working without looking at the codes. If something is not being displayed correctly users cannot do anything but they should communicate the problem to the designer so he/she can fix in Dreaweaver.
    This employee had probably left a draft without publishing. The fastest way is contacting the Contribute Administrator and ask to unlock the page. This can only be done within Dreamweaver. This will probably delete the "new content draft" but since you mentioned he left two years ago the content is definitely old.
    Again remember that Contribute won't give 100% power and sometimes designers have to finish the users' work. Keep in mind rights to edit the web site are given according to the needs and is up to designer or the Web Team to change layout. I am just mentioning this because you told that you don't want the two column format but this was probably created and decided by the Web designer to fit the needs of the company. I myself administer many users and every day I have someone asking to change some styles. Unless affects functionality none of the styles are changed.
    There's always a chance for you to get something changed if you can have some input to the web site since it's a charity you may have great chances to get what you need.

  • Newbie needs InDesign CS5 help: text overflow into new page

    Hello...  so, I've been using InDesign CS5 to create a document, because it transfers nicely into the pdf format.  I had written most of the stuff a couple months ago, am transferring it to InDesign via copy and paste, and then have to go in an "re-do" the bolds and italics and hyper links etc, b/c it does not transfer those things to InDesign.  I can live with that.  However, with this 10+ page document, how can I copy all my text and paste it onto 10 pages+ of InDesign, rather than piece-by-piece on a page-by-page basis?
    As of now, I have to take the first page of my original, and then copy and paste and estimate, add and subtract until the sizing is right...  and then I have to do that with page 2...  and page 3... and page 4.. and... well, you get the idea.  More than 10 pages of this!  Now, the straw breaking this camel's back is the fact that I have to go in and do a revision in one part...  so that I have to move and shift part of page 2 to page 3, and page 3 to page 4, and page 4 to page 5, and...   ahhhhhhhhhhhhhhhhh!!! 
    Is there ANY way to get text to simply overflow from one page to the next?  When you try to drag a text box down to the next page you've added, it stops at the bottom of the page and will not let you flow into the next page.  I am not particularly tech savvy and don't know coding or html or etc.  I am looking for a way to allow text to flow from one page to the next as if you were writing a Word doc.
    I have 80 more pages and 7 more documents to do this with.  Please help!  I want to cry at the thought of dealing with this in every single 8 to 12 page document I'm recreating. 

    All is not lost for autoflow even using copy paste. Here's a nifty little trick that will help you:
    ID does not require a text frame before you paste, so if you don't start with one, or don't use the one you've already drawn, ID will conveniently draw a 2" square text frame in the center of the screen if you issue a paste command. This frame will contain all of the copied text, but most of it will be overset (you'll see a red plus sign inthe "out port" on the lower right of the frame).
    Overset text can be picked up and flowed using autoflow, just as if you were placing a text file, so use the selection tool (black arrow) to select that small text frame if it isn't already selected, then click the red plus sign to pick up the overset. You should now have a loaded text cursor that looks sort of like the upper left corner of a page. DON'T click it anywhere yet.
    First press backspace to delete the small text frame (which should have remained selected). Now you can start your auto-flow holding the Shift key and clicking your loaded cursor wherever you like. All of the text, including what was visible in the now deleted frame is in the cursor waiting for you.

  • My iTunes Store won't load past the twentieth song!! Please help been going on for months now. Also is super slow in loading.

    Every time I open my iTunes Store on my iphone, the store will hardly load and when it does it only lists the songs 1-20 in every genera. it will load the a limbs and front page of that category. Please help haven't been able to do anything for months!!!

    Hello ChainedBear,
    Welcome to Apple Support Communities.
    Sorry about the difficulties with the iTunes Store, you can take a look at this article for troubleshooting steps:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    There are several options in that article. If you are still having difficulties after going through that article, you may need to take a look at "Additional Information" for contact information.
    Regards,
    Jeff D.

  • PLEASE HELP - error Jdbc/jsp

    Hello
    I have a jsp file myfile.jsp?id=...
    This file was working fine before. I was ready from my testing and i needed to clean my access database's data so i deleted some records manually and copied database again onto live through ftp.
    After this step, myfile.jsp?id=.. was giving me errors only on certain ids for eg. it worked fine myfile.jsp?id=3, but did not work fine for myfile.jsp?id=6 giving this error:
    The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NullPointerException
         org.apache.jsp.viewprofile_jsp._jspService(viewprofile_jsp.java:320)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    I tried an id which does not exist in database and it worked fine ie. jsp page was executing the html message that i composed for unexisting ids.
    I also checked the records' data and these all look fine and appropriately filled.
    PLEASE HELP - any ideas?
    Thanks lodes
    sabcarina

    You could try adding logging statements or SOPs in the JSP. It would help you locate the line where the exception is occuring.

  • PLEASE PLEASE HELP ERROR 4261 CAN'T BRUN CD'S

    SOMEONE PLEASE HELP ME I CAN 'T BURN ANY CD'S AFTER INSTALLINF 7.02 ITUNES. I WILL BEGIN TO BURN, IT PROCEEDS TO "CHECKING PLAYLIST" THEN "WRITING SONG" THE CANCELS BURN!!!! I HAVE GONE THRU A WHOLE PACK OF CD'S. oNE ERROR MESSAGE SAID THAT THE CD HAD TO BE CALIBRATED BUT I DON'T KNOW WHAT THAT MEANS?! PLEASE HELP!!!!!!

    I have this problem as well. I can burn CDs at the highest speed using both media player and Sonic. I have:
    1. repaired, uninstalled and reinstalled itunes
    2. uninstalled and reinstalled my CD burner and IDE channels in device manager
    3. disabled my anti-virus software
    4. Updated my burner drivers and intel chipset drivers to the latest version
    5. turned off the DLA on the burner properties
    6. disconnected from the internet
    7. selected the slowest burn speed in itunes
    8. tried 2 different CD brands (memorex and maxell)
    9. uninstalled some misc junk software that was on my pc, just in case it was causing the problem.
    It will setup the cd by burning all the track labels, but stops usually partway through the first song, sometimes it does make it to the second song.
    Any help would be appreciated quite a bit. Seems like a common error, but with few solutions.
    Here is the diag data from itunes:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Computer Corporation Dell DE051
    iTunes 7.0.2.16
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.1
    LowerFilters: PxHelp20 (2.0.0.0), DRVMCDB (1.0.0.1), DLACDBHM (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.0.6.1),
    Video Driver: Intel(R) 82865G Graphics Controller\Intel(R) 82865G Graphics Controller
    IDE\DiskWDCWD1600JB-75GVC0____________________08.02D08, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomHL-DT-STDVD+-RW_GWA4164B_______________E113___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is an administrator.
    D: HL-DT-ST DVD+-RW GWA4164B, Rev E113
    Audio CD in drive.
    Found 7 songs on CD, playing time 19:00 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 03:55:61
    Track 3, start time 06:46:15
    Track 4, start time 09:39:39
    Track 5, start time 12:20:45
    Track 6, start time 14:40:72
    Track 7, start time 16:45:18
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 8 10 16 40 48.
    The drive CDRW speeds are: 8.
    The drive DVDR speeds are: 8.
    The drive DVDRW speeds are: 8.
    Force Optical Power Calibration before burn is turned on in the preferences.
    The last failed audio CD burn had error code 4261(0x000010a5). It happened on drive D: HL-DT-ST DVD+-RW GWA4164B on CDR media at speed 16X.
    Dell   Windows XP  

  • Please help--Error message in PSE 7

    When I open PSE 7 I'm getting an error message that says:
    Microsoft Visual C ++ Runtime Library
    Runtime Error Program....Adobe Photoshop, etc
    This application has requested the Runtime to terminate in an unusual way. Please contact the application support team for information.
    and a couple times the message just says Adobe Photoshop has stopped working and must close.
    When I click "okay" the entire program shuts down.
    This started about 10 days ago.  I uninstalled the program and re-installed and it worked okay.  Now today the message is back again.  I've tried unplugging everything, restarting the computer and nothing is working.   I am using Windows Vista.
    Please help.
    Thanks, Doris

    I do not know enough about my computer etc. to
    follow the troubleshooting
    information that you referenced. But  I was able to check my system
    information and everything was okay in that area.  I've been using
    the PSE 7 program for almost a year with no problem until now.  Is there some way that I can talk to
    a "real live" person to get help.   Thank you for taking time to try and help me.  I'm just not computer savvy enough to follow the instructions as given.
    Thanks,Doris

  • Urgent Please help: Error Testing EJB in Universal Test Client

    Hi,
    I have to get this working by tommrow guys - can you please help.
    I wonder if someone can assist. I am new to WSAD 5.1 and am trying to test an EJB I have created with both local and remote interfaces.
    The bean has been created OK and ithe stub files have created for the bean via Generate->Deploy and RMIC code.
    The RJB project has been defind in my WAS server correctly. The JNDI name in the EJB is \ejb\MyEJBHome
    I start the Universal Test client (UTC) via the options on my WAS Server and then click on the JNDI explorer icon option and see my local EJB Folder and an ejb folder (plus others). If I go to the local EJB folder the stub for my local home inteface appears , I am able to click on it and consumme the bean.
    However if I go to the ejb folder I see my home stub for the remote inteface , I do indded need to click on this to get at the remote inteface for my bean. However on clicking it I get a WAS error "null reference found".
    It does not appear to be able to get at the MyBeanHome stub (no reference to it).
    Ok what am I doing wrong! The project build with no errors and I can see all the stubs in the ejbModule folder. Now is the UTC expecting these stubs to be sitting in a particular directory? if so where?

    Hi Problem is with
    public class MyEJBBean extends AbstractStatelessSessionBean {
         private javax.ejb.SessionContext mySessionCtx;
    extends AbstractStatelessSessionBean causes a problem in UTC.
    Regards.

  • HT201210 Please help - error message saying 'filmware file is not compatable', and videos will not transfer from phone to computor.  what can i do?

    As title says, I keep having this error message 'filmware not compatable' and my videos will not load. 
    Can someone please help this very non-tech-savy lady???!!
    Cheers in advance

    Bad news: It sounds as if you were sold a jailbroken iPhone.
    Good news: File a SNAD with eBay. Make sure all your correspondence has been through eBay Messaging. The fact that the seller has been ignoring you will not sit well with them.
    You will get 100% of your money back, including shipping. Paypal will simply seize his funds and return what is yours.
    Lesson: Don't buy a used iPhone.
    It's much worse for the seller. His PayPal and eBay accounts will be frozen. Until he squares up with both you and eBay, he's out of money and out of business.

  • Please Help: Error Message:"IP Configuration: IP Address Already In Use..."

    I'm not sure where to post this, but I'm going to start here... I have been having this issue and its really beginning to scare me.
    *_The Problem:_* I keep getting a message with a RED Exclamation Sign and its titled "IP Configuration" and says this: *123.456.0.1 already using DHCP 123.456.0.100*
    I have been clicking okay, but finally one day got annoyed and called the mac people to get help and... they didnt help a bit.
    So now I am trying to find help from others.... please help. give as many suggestion as possible and i'll continue to google for help. Thanks.
    *So is someone else using my address?*
    *Is someone able to see my screen and information and stuff?*
    *Why is this happening?*
    Please answer these questions if possible.

    To really help, a description of how the network you use to get online is configured is needed. Are you using wireless? Are there other computers that use this network and if so, what operating system are they running? What sort of router and modem are you using? etc.
    So is someone else using my address?
    Either another machine is using your IP address, or something is wrong with the DHCP server.
    Is someone able to see my screen and information and stuff?
    Probably not.
    Why is this happening?
    My guess is that the firmware on your router needs to be updated.

  • Please help error regarding GPShell 1.4.2 with Java Card 2.2.1

    Hi masters..
    please help me regarding GPShell + Smart Card Reader (namely Omnikey Cardman 5321)..
    currently i've a smart card reader (Omnikey) and a sample java card that support for Java Card 2.2.1..
    i've installed Smart card reader's driver, and it has already completely function..
    When i try to run this command in GPShell 1.4.2, i get this report :
    C:\GPShell-1.4.2>GPShell helloInstallgemXpressoProR3_2E64.txt
    mode_201
    gemXpressoPro
    enable_trace
    establish_context
    card_connect
    * reader name OMNIKEY CardMan 5x21 0
    card_connect() returns 0x80100069 (The smart card has been removed, so that furt
    her communication is not possible.
    select -AID A000000018434D00
    Command --> 00A4040008A000000018434D00
    Wrapped command --> 00A4040008A000000018434D00
    select_application() returns 0x00000006 (The handle is invalid.
    Yes, i know that in that script (helloInstallgemXpressoProR3_2E64.txt), there's a script for load helloworld.cap into Java card..
    i tried that because i just want to make sure whether my Java Card run well or not..
    Please help me regarding this..
    Thanks in advance..

    Hi safarmer, thanks for your reply :)..
    Sorry before, i still don't understand about your last reply.. :(
    especially for check the crytpogram.. :(
    could you describe what mean of each line of code from that snippet code?..
    Sequence   : 0002
    challenge  : 598dd3961bfd
    cryptogram : 24cccf18c18437bb
    host       : 5a7787ba91497948
    DEBUG [] - Input to session S-ENC derivation: 01820002000000000000000000000000
    DEBUG [] - S-ENC: adc1163ba2a146fbb94af44c8676fb7cadc1163ba2a146fb
    DEBUG [] - Input to session DEK derivation : 01810002000000000000000000000000
    DEBUG [] - S-DEK: fd01086b6db03bdfe0d5cb61d03ed3abfd01086b6db03bdf
    DEBUG [] - Input to session CMAC derivation: 01010002000000000000000000000000
    DEBUG [] - S-MAC: 3e07b0c8fdfd798a573b9b9889d0cb513e07b0c8fdfd798a
    Input to card cryptogram verification: 5a7787ba914979480002598dd3961bfd8000000000000000
    DEBUG [] - Signature : 24cccf18c18437bb
    DEBUG [] - Cryptogram: 24cccf18c18437bb
    Card cryptogram authenticated=======================================================================================
    =======================================================================================
    i've added script "mode_211" to my script, as follow :
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    delete -AID a00000006203010c0101
    delete -AID a00000006203010c01
    delete -AID a00000006203010c0101
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    card_disconnect
    release_contextbut when i executed that script in the console, i got this :
    C:\GPShell-1.4.2>GPShell helloInstallChan.txt
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    * reader name OMNIKEY CardMan 5x21-CL 0
    select -AID a0000000030000
    Command --> 00A4040007A0000000030000
    Wrapped command --> 00A4040007A0000000030000
    Response <-- 6F108408A000000003000000A5049F6501FF9000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4
    f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    Command --> 80CA006600
    Wrapped command --> 80CA006600
    Response <-- 664C734A06072A864886FC6B01600C060A2A864886FC6B02020101630906072A864
    886FC6B03640B06092A864886FC6B040215650B06092B8510864864020102660C060A2B060104012
    A026E01029000
    Command --> 80500000083C4E03633407EC1800
    Wrapped command --> 80500000083C4E03633407EC1800
    Response <-- 0000715457173C2B8FC1FF020002598DD3961BFD8B6F2963C070FF949000
    Command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Wrapped command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Response <-- 9000
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C0101D259A163E654B99900
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c01
    Command --> 80E400800B4F09A00000006203010C0100
    Wrapped command --> 84E40080134F09A00000006203010C01094A9BF13AD2CC3E00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C010156679B9711B83FAB00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    file name HelloWorld.cap
    Command --> 80E602001F09A00000006203010C0107A0000000030000000AEF08C60201A8C80201
    F40000
    Wrapped command --> 84E602002709A00000006203010C0107A0000000030000000AEF08C60201
    A8C80201F400D35F07F1D11A31E500
    Response <-- 6985
    install_for_load() returns 0x80206985 (6985: Command not allowed - Conditions of use not satisfied.)What it does mean?..
    so, can i reset THE RETRY COUNTER of my Java Card?..
    could you give me an example script that reset the Retry Counter?..
    Thanks in advance..
    Sorry i really confuse.. :(

Maybe you are looking for

  • How To Guide on ABAP mapping (How to Use ABAP-Mapping in XI 3.0).

    Hi, I am looking for this document: How To Guide on ABAP mapping (How to Use ABAP-Mapping in XI 3.0), and not able to find it. Can anybody please point me the location, to look for, or post the document. Thanks, Namadev

  • Adcfgclone.pl errors out

    o/s=linux 5 database=10.2.0.3 apps=12.12 during cloneing on target instance adcfgclone.pl dbTier erros out logfile of the seesion shwoing below the main error is ORA-27101: shared memory realm does not exist Linux Error: 2: No such file or directory

  • Edited a .jpg file with MSPaint, edit doesn't show up in Dreamweaver. ?

    In my images folder for my website are several .jpg files. I edited the .jpg file in MS Paint.  I added a few blue pixels to stand out.  Then I reopened Dreamweaver MX in local view, looked at the .jpg with Preview in Browser/Firefox, and there were

  • Iphone photo library to macbook.

    i cant seem to get photos off my iphone, to my macbook. i can get the camera roll ones off, theres like 14 of them, but my photo library, theres like 315, from a france trip, and theyre not on my macbook, and id like to have them there as well. any h

  • Does 'Party Shuffle' function exist on iPod or only on iTunes?

    Help! I'm having a NY Eve party tomorrow and am relying on my iPod and iPod HiFi for the music. I wanted to use the Party Shuffle function but I can't see that option on my iPod menu... does it only exist in iTunes? I have never used or created playl