[Security:090809]The key pair could not be retrieved

Hi All,
I have created the key pair successfully and then exported them to file and then imported to DemoTrust.jks also by those commands:
keytool -genkeypair -alias wlpkey -keypass password -keyalg rsa -keysize 1024 -keystore DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -dname "CN=Oracle Corp, OU=WLP, O=Oracle, L=Boulder, ST=CO, C=US"
keytool -exportcert -alias wlpkey -keypass password -keystore DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -file wckey.der
keytool -importcert -keystore DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase -file wckey.der -alias wlpkey -keypass password
I can see that my alias is present in DemoTrust.jks by this command:
keytool -list -keystore DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase
Now When I want to modify the SAML Security by creating a new Security Credential Mapping in weblogic admin console (Home >Security Realms >myrealm >Credential Mappings>PKI>New), I am getting following exceptions:
+[Security:090809]The key pair could not be retrieved from the keystore with the supplied alias wlpkey and its password.+
An error occurred while creating a security credential. Please check the log for more details.
Can anyone point out anything to overcome this error?
I am using WLP 10.3.4.
I have tried this by creating the certificates from WLP_HOME/OFM_HOME and WLP_HOME/wlserver_10.3/server/lib also.
What else can I try?
Regards
Jay
Edited by: 902059 on Apr 6, 2012 2:14 AM

The password that you have configured is incorrect and hence the error.
[Security:090809]The key pair could not be retrieved from the keystore with the supplied alias wlpkey and its password.
An error occurred while creating a security credential. Please check the log for more details.You need to give the password of the private key (that you have used while creating the key pair) in the PKI credential mapping configuration. The one highlighted below:
keytool -genkeypair -alias wlpkey -keypass password -keyalg rsa -keysize 1024 -keystore DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -dname "CN=Oracle Corp, OU=WLP, O=Oracle, L=Boulder, ST=CO, C=US"Thanks,
Patrick

Similar Messages

  • On Firefox I get The requested URL could not be retrieved On Internet explorer it works What is wrong?

    ERROR
    The requested URL could not be retrieved
    While trying to retrieve the URL: http://www.google.com.au/
    The following error was encountered:
    * Unable to forward this request at this time.
    This request could not be forwarded to the origin server or to any parent caches. The most likely cause for this error is that:
    * The cache administrator does not allow this cache to make direct connections to origin servers, and
    * All configured parent caches are currently unreachable.
    Your cache administrator is webmaster.
    Generated Tue, 08 Jun 2010 03:40:48 GMT by proxy.syd.connect.com.au (squid/2.7.STABLE5)

    It could be a firewall or other security software blocking the access for Firefox - if you use the default Windows Firewall in XP, you can find help in article [[Configuring Windows Firewall]].
    If you use a 3rd party security program, you could look for help with configuration in our KB articles (use yellow Search box on right side of this page - search on provider, like Norton, AVG, F-Secure), or post the name here and we'll help you find relevant link(s).
    If the problem persists, this article might also help you solve it:
    [[Error loading web sites]] (comprehensive article with solutions and links to other articles).
    When you get online, I would recommend updating Firefox. The latest version is Firefox 3.6.3. You can get it from [http://getfirefox.com getfirefox.com] and install it over your current version. Also see article [[Updating Firefox]] for info.
    Please let us know how above works out, and if we can be of further assistance. Detailed feedback is appreciated and helps us to help you better, plus enables us to better help more users with similar problems.

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • We bought a reconditioned IMac and time capsule,about a month ago the hard drive died and only left our files on the capsule which could not be retrieved from the time capsule so it got stored as a file on the operating system

    Our IMac's hard drive died and we thought great we bought a time capsule to back up the immages and files,except when we had the hard drive replaced the time capsule did not recognize the newer opperating system and would not reboot the files back,so the apple store tech loaded them into a file folder and loaded them to the main screen and erased the time capsule,the problem now is how to load this file back permenantly and watch video's that are stored,when in I Photo when I try to view video content I get a message stating that I may need to download more software to support this format.

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • Why am I seeing this message: Error: The requested URL could not be retrieved

    Only when I try to log onto Netflix. Worked beautifully yesterday.

    Hello khihdartop, 
    Sorry to hear about your issue.
    Are you connected to a BlackBerry® Enterprise Server? If you are then your IT admin may have placed restrictions on your internet usage.  If you are not connected to a BlackBerry Enterprise Server then you will want to contact your wireless service provider to see if they have any restriction in place. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Outlook 2010 Mail Tips Could Not Be Retrieved / Out Of Office Doesn't work too.

    Hi,
    We have a small set up with 5 pc's and 1 server. All of the workstations are exactly the same.. specs,OS,software etc... 
    One of the users is currently experiencing "Mail Tips Could Not Be Retrieved" issue. 
    It shows up right above the SEND button when replying or sending a new e-mail.
    Also Out Of Office / Automatic Replies function does not want to work as well. It asks me to try again later cause the server is not responding. 
    The funny thing is that this is happening only to a single user.
    Here is what I've tried:
    - Tested E-Mail AutoConfiguration - Autodiscovery works fine and points to the right directory. 
    - Deleted the profile and recreated it ... didn't work
    -  Added the same mailbox to another computer - IT WORKED
    - Checked all the SSL settings for each virtual folder in IIS and they are all set to IGNORE the certificate.
    The other strange thing is that when I try to download the OAB from the affected PC a credential window pops up and asks for the username/password
    of the particular mailbox.. Once I enter them the "Mail Tips could not be retrieved" message disappears and Out Of Office is accessible and ready to be used. 
    Maybe Outlook 2010 setting or registry value ?

    This sounds like an authentication issue for the Autodiscover/EWS URLs and your last paragraph basically confirmed it.
    Is this PC domain joined and is this user logging on with his domain credentials and not locally to the computer?
    Is the user able to access:
    https://autodiscover.domain.com/autodiscover/autodiscover.xml
    or
    https://domain.com/autodicover/autodiscover.xml
    An xml-page should be returned with ErrorCode 600 Invalid Request.
    Is there a TMG or UAG server involved here?
    Also check the proxy settings in Internet Options (if configured/required).
    Robert Sparnaaij
    [MVP-Outlook]
    Outlook guides and more: HowTo-Outlook.com
    Outlook Quick Tips: MSOutlook.info

  • "Template could not be retrieved" at calling an Adobe-ISR

    Hi,
    opening an Adobe-PDF based ISR in the POrtal results in the error:
    "Template could not be retrieved".
    What I did so far:
    - Installtion of SCAs PCUI, ESS, MSS on the Portal-WAS (the ERP2004-Backend hasn't got a Java-Stack).
    - Installation of AdobeDocument Services on Portal-WAS
    - Installation of  BP MSS 60.1.2 (MSS fpr mySAP ERP2004) in Portal.
    - Copied Scenario SPEG in ZPEG and created/activated a PDF-form
    Everytime I start the ISR on the Portal, I get the above mentioned error-message.
    kr, achim

    Hi Achim,
    I am facing the same error inspite of creating the destination FP_ICF_DATA in the Visual Administration and activationg SICF too. Can u tell me whether u have integrated ITS or an external ITS installed? is external ITS a prerequisite in customising the ISR forms?
    Regards,
    Aditi

  • Claims Based Authentication SPSecurityTokenService.Issue() failed: The security token username and password could not be validated.

    Please excuse the lousy table...Its late :-)
    I have a multi-server SP2010 farm.  Patched up to
    Configuration database version: 14.0.6106.5002
    My goal is to have a claims based web application that authenticated to ADAM for Extranet.  I have configured the servers exactly to MSDN and technet specs (following this spec to the
    letter (
    http://technet.microsoft.com/en-us/library/ee806882.aspx) to allow the forms side of the web app to authenticate to ADAM.
    IT WORKS IN DEV!!! , which is a single server farm.  However, it does not work in production.  I get the following:
    Claims Auth log entries:
    1:06:25 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    f2ut
    Verbose
    Authenticated with login provider. Validating request security token.
    1:06:25 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Verbose
    Using membership provider 'ADAMProvider'.
    1:06:25 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Verbose
    Doing password check on '[email protected]'.
    1:06:46 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Verbose
    Failed password check on '[email protected]'.
    1:06:46 AM
    w3wp.exe (0x0EDC)               
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Unexpected
    Password check on '[email protected]' generated exception: 'System.ServiceModel.FaultException`1[Microsoft.IdentityModel.Tokens.FailedAuthenticationException]: The security
    token username and password could not be validated. (Fault Detail is equal to Microsoft.IdentityModel.Tokens.FailedAuthenticationException: The security token username and password could not be validated.).'.
    1:06:46 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    fo1t
    Monitorable
    SPSecurityTokenService.Issue() failed: System.ServiceModel.FaultException`1[Microsoft.IdentityModel.Tokens.FailedAuthenticationException]: The security token username and password
    could not be validated. (Fault Detail is equal to Microsoft.IdentityModel.Tokens.FailedAuthenticationException: The security token username and password could not be validated.).
    1:06:46 AM
    w3wp.exe (0x1B34)                      
    0x08A0
    SharePoint Foundation        
    Claims Authentication        
    fsq7
    High   
    Request for security token failed with exception: System.ServiceModel.FaultException: The security token username and password could not be validated.    
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message response)    
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)  
      at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)    
    at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo)
    1:06:46 AM
    w3wp.exe (0x1B34)                      
    0x08A0
    SharePoint Foundation        
    Claims Authentication        
    8306
    Critical
    An exception occurred when trying to issue security token: The security token username and password could not be validated..
    1:06:46 AM
    w3wp.exe (0x1B34)                      
    0x08A0
    SharePoint Foundation        
    Claims Authentication        
    f2un
    Verbose
    Form authentication failed.
    I have tried EVERYTHING (well, nt everything, I don’t have the fix I suppose). 
     I found plenty out there and nothing directly correlates with this issue. 
    I searched on all parts of the errors I got.
    This contains an interesting blurb about setting up access for the apppool id correctly. 
    That’s not the case for me.  It works in dev and the same id are used there. 
    http://sharepoint-2010-world.blogspot.com/2011/03/adam-forms-based-authentication-in.html
    This was good but it doesn’t give specs on what the environment looks like:
    http://social.msdn.microsoft.com/Forums/en/sharepoint2010general/thread/557143a6-4b36-4939-bb7f-d62a9335fd18
    The was interesting…but I am patched up beyond the June 2011 CU so it’s a moot point:
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/9b8368ef-c5e5-4ead-b348-7b2b5587cfc8
    Any and all help would be greatly appreciated!

    Hi.
    You say its a multiserver farm, do you have more than one web server then?
    If thats the case, have you tried accessing the site on each server directly?
    Found this for you, maybe that can help?
    Troubleshooting Exceptions: System.ServiceModel.FaultException`1
    http://msdn.microsoft.com/en-us/library/bb907220.aspx
    and this:
    SharePoint 2010 Claims Authentication - The security token username and password could not be validated reoccurring every morning
    http://social.technet.microsoft.com/Forums/pl-PL/sharepoint2010setup/thread/383f1f9b-5c4a-4e19-b770-2a54b7ab1ca1
    and
    This seems to be a good guide:
    http://donalconlon.wordpress.com/2010/02/23/configuring-forms-base-authentication-for-sharepoint-2010-using-iis7/
    Good luck
    Thomas Balkeståhl - Technical Specialist - SharePoint - http://blksthl.wordpress.com

  • Itunes does not open,everytime i try it says "The itunes application could not be opened. The required folder cannot be found" I have tried the shift key option but that does not work. help!!

    I cannot open itunes. Everytime i try it says "The itunes application could not be opened.The folder cannot be found." I have tried the shift key option but this does not work. Please help.!!

    Try the actions here for that driver.
    iOS: Device not recognized in iTunes for Windows
    I would first do this:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • Please Please help me. I have been trying to install Itunes 11 for 3 months. I deleted my old version and can not for the life of me get Itunes installed . I have Windows 7 Home. The message is " Could not open key: UNKNOWN\Components\DA42BC89BF25F5BDOAF1

    Please Please help me. I have been trying to install Itunes 11 for 3 months. I deleted my old version and can not for the life of me get Itunes installed . I have Windows 7 Home. The message is " Could not open key: UNKNOWN\Components\DA42BC89BF25F5BDOAF1

    Try the following user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\[LongStringOfLettersAndNumbe rs]" error messages when installing iTunes for Windows

  • HT202879 i am unable to save documents in keynote or pages. The file "untitled.key.tef" could not be opened keeps coming up.

    i am unable to save documents in keynote 09 or pages. The file "untitled.key.tef" could not be opened keeps coming up. Can anyone tell me what is happening?

    How did you originally make these documents?

  • My apple keyboard had some problems, the store replaced it for me. I had to sign in to my computer, and couldn't get to pair the keyboard with the computer, as could not sign in. I know there is a command that lets you override this, does anyone know whic

    My apple keyboard had some problems, the store replaced it for me. I had to sign in to my computer, and couldn't get to pair the keyboard with the computer, as could not sign in. I know there is a command that lets you override this, does anyone know which buttons to  press.  I gather when you do this, a box comes up and pairs the two with a number you have to type in.

    Hi rpaspinall,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    Apple Wireless Keyboard: Difficulty during pairing process
    http://support.apple.com/kb/ts1569
    Best of luck,
    Mario

  • Hi i can not install itune. There are the error show " Could not open key: Unknown\Components\32A7D634EB632D11CABB00087CCFBB48\DAEC106DF4E2BBB458CC2CA9C46 E3A0C.

    Hi,
    i can not install itune. There are the error show
    " Could not open key: Unknown\Components\32A7D634EB632D11CABB00087CCFBB48\DAEC106DF4E2BBB458CC2CA9C46 E3A0C. Verify that you have sufficient access to that key. or contact your support personal.
    I have tried some soution from the similar case to uninstall itune and also related components already but finally the probelm still occured.
    Please you help to suggest me what can i do?  I need to restore my back up data to the new iphone as the previous one got stolen.
    BR,
    Sirorath A.

    Try the following user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\[LongStringOfLettersAndNumbe rs]" error messages when installing iTunes for Windows

  • I continue to recieve the error message "Could not create key: Verify that you have sufficient access to that key" when I am try to down Akamai NetSession Interface that's needed to download the adobe photoshop elements 13 software that I purchased.

    I continue to receive the error message "Could not create key: Verify that you have sufficient access to that key" when I am try to down Akamai NetSession Interface that's needed to download the adobe Photoshop elements 13 software that I purchased.

    cancel the akamai download and download files 1 of 2 and 2 of 2 directly.  put both in the same directory and double click the exe to start installation.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Supplied credentials not accepted by the server and Could not validate SPNEGO token

    Hi,
    We have installed and configured SSO 2.0 SP02 on HP-UX system. We have exported the client policy files, root certificate from SLS and imported the same in the client PC. Then we have installed the SLC in client PC with logging enabled option. Now when we try to manually login using SLC we are getting the below error.
    In SLC - "Supplied credentials not accepted by the server"
    In Diatool - "Could not validate SPNEGO token"
    Attached the trace file from SLC and logs from diatool. Anyone suggest how to rectify this error.
    The trace file from SLC
    [2014.03.28 12:08:50.434][TRACE][sbus.exe            ][sbus.dll    ][  4856] CToken:: Secure Login token [toksw:mem://securelogin/Windows Authentication (SPNEGO) :: login
    [2014.03.28 12:08:50.452][TRACE][sbus.exe            ][sbusresloade][  4856] { GetLocale
    [2014.03.28 12:08:50.453][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:08:50.453][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin_Protocol_2_0::Send_Init
    [2014.03.28 12:08:50.453][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin::Send_Any
    [2014.03.28 12:08:50.515][ERROR][sbus.exe            ][BASE        ][  2800] ERROR(0xA0100017) in CRYPT->sec_crypt_cipher_get_cipher_len(): An attribute is missing
    [2014.03.28 12:08:50.563][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:08:50.563][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] { CResourceManager::New
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] { GetLocale
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] { CResourceManager::Init
    [2014.03.28 12:08:50.568][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:08:50.568][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:09:00.979][ERROR][sbus.exe            ][sbus.dll    ][  4856] LogonUser failed with error 0x0000052e
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][Kerberos    ][  4856] Got kerberos ticket for 'HTTP/ssodev' with server key type 23 and session key type 23
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][BASE/RANDOM ][  4856] Get 8 bytes random data
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin_Protocol_2_0::Send_Auth_SPNEGO
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin::Send_Any
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin_Protocol_2_0::Handle_Auth_Response
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] } 80070005
    Regards,
    Yogesh Kumar D

    Hello Yogesh,
    With regards to the 2nd error "Could not validate SPNEGO Token"
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.security.core.server.jaas.SPNegoLoginModule                     SUFFICIENT  ok          exception             true       Could not validate SPNEGO token. Reason: No user with account attributes [[namespace=com.sap.security.core.authentication, name=principal, value=sap.helpdesk1, isCaseSensitive=false], [namespace=com.sap.security.core.authentication, name=realm, value=HZL01.VEDANTARESOURCE.LOCAL, isCaseSensitive=false]] found
    No logon policy was applied
    It means that the user "sap.helpdesk1" was decrypted from the kerberos
    token but there is no user with this name in the AS Java. The reason for that is a misconfiguration in the SPNEGO user mapping.
    Therefore, please open the SPNEGO wizard in the NWA and configure
    how AS Java should choose a user from the UME based on the received
    SPNEGO token. Here is some documentation about configuring the user
    mapping:
    http://help.sap.com/saphelp_nw73/helpdata/en/f4/1978c3a37a441b87a89d61c1a08689/frameset.htm
    Regards,
    David

Maybe you are looking for

  • Best way to post a Return Item and Enter a Different Replacement Item

    Hi MM Gurus, During data migration, I uploaded an item (let's call it Material A) in inventory. The old purchase order for this item was not included in the migration. After the go-live phase, purchasing discovers that they have to RETURN Material A

  • Bilingual title frame in forms 6i

    I want title frame in french when the user speak french and title frame in english when the user speak english. I can have bilingual label for item and windows without problem, I use the set property. For the frame I don't find any set property comma

  • Creating threads in Weblogic

    For a variety of reasons I need to write my own messaging bridge between Weblogic and MQ. The reasons have been validated by BEA, so I'm not completely off my rocker :) I can either write this as a standalone java application that acts as a client to

  • Urgent: difference between * and 1..* in AO

    Please can anybody tell me when to use * And When to use 1..* while creating AO's. I want to create AO's and i don't know exactly which cardinality to use. According to me both have the meaning 'many'.I m cunfused i tried to find in Developers guid b

  • ITunes freezing after 20 secs of syncing iPhone 3G ......

    iTunes freezing after 20 secs of syncing iPhone 3G>...... HELP it started to do this around 4 hours ago, i Havnt done anything abnormal.... I have re-installed iTunes with no success... any suggestions?? Thanks