Error while setting the SSL with trusted cert --  any help on this?

Connecting to Node Manager ...
<Aug 3, 2010 5:20:17 PM CDT> <Warning> <Security> <BEA-090542> <Certificate chai
n received from localhost - 127.0.0.1 was not trusted causing SSL handshake fail
ure. Check the certificate chain to determine if it should be trusted or not. If
it should be trusted, then update the client trusted CA configuration to trust
the CA certificate that signed the peer certificate chain. If you are connecting
to a WLS server that is using demo certificates (the default WLS server behavio
r), and you want this client to trust demo certificates, then specify -Dweblogic
.security.TrustKeyStore=DemoTrust on the command line for this client.>
This Exception occurred at Tue Aug 03 17:20:18 CDT 2010.
javax.net.ssl.SSLKeyException: [Security:090542]Certificate chain received from
localhost - 127.0.0.1 was not trusted causing SSL handshake failure. Check the c
ertificate chain to determine if it should be trusted or not. If it should be tr
usted, then update the client trusted CA configuration to trust the CA certifica
te that signed the peer certificate chain. If you are connecting to a WLS server
that is using demo certificates (the default WLS server behavior), and you want
this client to trust demo certificates, then specify -Dweblogic.security.TrustK
eyStore=DemoTrust on the command line for this client.
at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknow
n Source)
at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknow
n Source)
at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown
Source)
at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown
Source)
at com.certicom.tls.record.handshake.ClientStateReceivedServerHello.hand
le(Unknown Source)
at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMes
sage(Unknown Source)
at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMes
sages(Unknown Source)
at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown S
ource)
at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Sou
rce)
at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)

Go through this link
http://weblogic-wonders.com/weblogic/2010/03/03/ssl-exceptions-in-admin-server-and-node-manager/

Similar Messages

  • Error while Registering the Database with Catalog..

    I m creating recovery catalog in same database, and getting the errors.
    1. I have created TOOLS tablespace
    2.CREATE USER RMAN2
    SQL> CREATE USER rman IDENTIFIED BY cat
    2 TEMPORARY TABLESPACE temp
    3 DEFAULT TABLESPACE tools
    4 QUOTA UNLIMITED ON tools;
    CREATE USER rman IDENTIFIED BY cat
    ERROR at line 1:
    ORA-01920: user name 'RMAN' conflicts with another user or role name
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE USER rman2 IDENTIFIED BY cat
    2 TEMPORARY TABLESPACE temp
    3 DEFAULT TABLESPACE tools
    4* QUOTA UNLIMITED ON tools
    SQL> /
    User created.
    3. GRANT RECOVERY_CATALOG_OWNER
    SQL> GRANT RECOVERY_CATALOG_OWNER TO rman2;
    Grant succeeded.
    4. To create the recovery catalog:
    1. Connect to the database that will contain the catalog as the catalog owner.
    H:\>rman catalog rman2/cat@rock
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Sep 5 10:45:52 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to recovery catalog database
    2. Run the CREATE CATALOG command to create the catalog.
    RMAN> CREATE CATALOG;
    recovery catalog created
    3. Optionally, start SQL*Plus and query the recovery catalog to see which tables were created:
    H:\>sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Sep 5 11:53:36 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter user-name: rman2/cat
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select count(*) from cat;
    COUNT(*)
    91
    SQL> ed
    Wrote file afiedt.buf
    1 select owner, table_name, tablespace_name
    2 from dba_tables
    3* where table_name='DB'
    SQL> /
    OWNER TABLE_NAME
    TABLESPACE_NAME
    RMAN2 DB
    TOOLS
    RMAN DB
    ABAMCO_TEST
    Next step is to registering the Database in the Recovery Catalog.
    Registering a Database in the Recovery Catalog
    H:\>rman TARGET / CATALOG rman2/cat@rock
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Sep 5 11:56:09 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of internal recovery manager package failed
    RMAN-04005: error from target database:
    ORA-01031: insufficient privileges
    I m getting above error while registering the Database with Catalog,
    Can anybody help me how can I register the Database with Catalog.????
    Waiting for Reply!!!!!!!

    Dear Manoj I can log in at TARGET Database.
    H:\>rman
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Sep 5 12:41:59 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN> connect target sys/rock
    connected to target database: ROCK (DBID=3255117147)
    RMAN>
    ============================================================
    USING CONNECT STRING as you said.
    H:\>rman target "sys/rock@rock as sysdba" catalog rman2/cat@rock
    Argument Value Description
    target quoted-string connect-string for target database
    catalog quoted-string connect-string for recovery catalog
    nocatalog none if specified, then no recovery catalog
    cmdfile quoted-string name of input command file
    log quoted-string name of output message log file
    trace quoted-string name of output debugging message log file
    append none if specified, log is opened in append mode
    debug optional-args activate debugging
    msgno none show RMAN-nnnn prefix for all messages
    send quoted-string send a command to the media manager
    pipe string building block for pipe names
    timeout integer number of seconds to wait for pipe input
    checksyntax none check the command file for syntax errors
    Both single and double quotes (' or ") are accepted for a quoted-string.
    Quotes are not required unless the string contains embedded white-space.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00552: syntax error in command line arguments
    RMAN-01009: syntax error: found "as": expecting one of: "append, at, auxiliary, catalog, cmdfile, clone, checksyntax, debug, log, msglog, mask, msgno, nocatalog, pipe, rcvcat, script, slaxdebug, send, target, timeout, trace"
    RMAN-01007: at line 0 column 16 file: command line arguments
    H:\>rman
    It didnt work either.
    I have only one database rock, and created recovery catalog in it. I want to register rock database with recovery catalog.

  • HT2693 I am getting an 1015 error while updating Iphone 3G with latest iTunes pls help me to restore iPhone 3G

    I am getting an 1015 error while updating Iphone 3G with latest iTunes pls help me to restore iPhone 3G

    Try this and see if this helps http://support.apple.com/kb/TS3694#error1015

  • When synchig my iphone to my itunes, I get an error message at the end with code 1150.  What is this error code and what does it mean?

    When synching my iphone to my itunes, I get an error message at the end with code 1150.  What is this error code and what does it mean?

    try uninstalling and reinstalling itunes on your computer. here is a link for that http://support.apple.com/kb/HT1925

  • Sequence tag error while importing the SSL certificate into ".keystore" fil

    I have created the ".keystore " file successfully and also imported the "root.cer".
    but while importing the SSL certificate it says like
    "keytool error: java.security.cert.CertificateException: IOException: Sequence ta
    g error" (I got the certificate from Verisign)
    How to resolve this Error?
    can anyone help me?
    mail to:: [email protected]
    Thanks in Advance

    Hi,
    I resolved this error by making it sure that there are no extra spaces or unwanted caracter copied while copying the certificate response from the CA. Make sure you are copying the certificate response properly. In my case, some extra space was getting copied so after re-copyinf it properly, it worked.

  • There was an error while loading the message. Please try again later. get this when trying to open emails

    from today only when i try to open my emails i get the following message
    There was an error while loading the message. Please try again later.
    I did a restore earlier and not worked since then i ues Aol but have never had a problem before someone please help

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • 'setProgress is not a function' error while setting the progress of a progress bar manually

    I want to set value of a progress bar in an accordian but I am encountering 'setProgress is not a function' error. Any idea what's wrong with following code.
    Observation:
    If I move the progress bar out of the Accordian then the error goes away and the progress bar appears fine.
    I want to set the progress bar eventually to {repMonitor.currentItem.threatLevel} but for now I am just testing with hypothetical threat value i.e 60
        <mx:Accordion id="monAccordian" includeIn="Monitoring" x="10" y="10" width="554" height="242" change="monAccordianChange()" >       
           <mx:Repeater id="repMonitor" dataProvider="{monitoringArray}">
              <mx:Canvas width="100%" height="100%" label="{repMonitor.currentItem.firstName+' '+ repMonitor.currentItem.lastName}" >
                <mx:Image x="10" y="10" source="{repMonitor.currentItem.imageName}" width="175" height="118"/>
                  <s:Label x="200" y="14" text="Threat Level:"/>
                  <mx:ProgressBar x="200" y="30" mode="manual" label="" id="bar" width="200" creationComplete="bar.setProgress(60,100);" />
              </mx:Canvas>
           </mx:Repeater>
        </mx:Accordion>

    Okay.. Thanks.
    On another forum I ve been told that I need to use getRepeaterItem. How can I use it to set my progress bar such the value of progress may be taken from repMonitor.currentItem.threatLevel?

  • Error While loading the data with OLIBW7

    Hi Guys,
      while we are loading the set up tables we are getting the following error in OLIBW7 transaction "Error determining rate: foreign curr. MYR local curr. PHP date 23.02.2007"
    I asked around the functional consultants and they informed that Currency Exchange Rate is not being loaded to D53 at all.
    Can any one let me know how to fix this problem....
    Thanks in advance

    Hi
    did you get the solution for the issue you got while doing the setup for Sales orders.
    "Error determining rate: foreign curr. MYR local curr. PHP date 23.02.2007"
    thanks in advance,
    Bhaskar.

  • Error while integarting the DAC with the Informatica Integration services

    Hi Experts,
    I am setting up the BI APPS. I am following the documentation provided by oracle. Everything went on smoothly but when when I am trying to integrate the DAC with the Integration service created in informatica it is giving me the following error:
    Informatica(r) PMCMD, version [8.6.0 HotFix4], build [272.1017], Windows 32-bit
    Copyright (c) Informatica Corporation 1994 - 2008
    All Rights Reserved.
    Invoked at Mon Jun 01 14:10:47 2009
    [DOM_10033] [DOM_10033] Service [10.136.51.183] does not exist in domain [Domain_ZZDAP2FLM951].
    ERROR: Cannot connect to Integration Service [10.136.51.183].
    Completed at Mon Jun 01 14:10:48 2009
    =====================================
    ERROR OUTPUT
    =====================================
    Important Obeservation: When I am trying to connect the repository service from DAC it is connecting successfully.
    Can anyone please provide me the solution for this. It is really urgent.
    Thanks in advance.
    Satyabrat

    Here is what you need to do... there are some gaps in the documentation for 7.9.6 with infa 8.6:
    1) In infa 8.6 there is no repository and informatica server, instead you have repository service and integration service
    2) make sure you note down the name of the repository service and integration service when you do the post install of the informatica install
    3) when you try to register Infa repository in DAC, make sure you use the (hostname/services) as the name of the infa integration service,
    and in repostory name use the name of the repository service and not Oracle_BI_DW_base....
    if you still have errors upload or email ([email protected]) the DAC config screens

  • Getting Errors while setting the Transformation Function

    Hello All,
    I was trying to attach a Transformation function to existing capture process.
    But I am getting ORA-30625 error while I was trying to set my transformation function to one of the
    DBA rule_names.
    Following are details:
    SQL> select rule_name from dba_rules;
    RULE_NAME
    TEMP1
    TEMP3
    TEMP5
    TEMP7
    SQL> DECLARE
    2 action_ctx SYS.RE$NV_LIST;
    3 ac_name VARCHAR2(30) := 'STREAMS$_TRANSFORM_FUNCTION';
    4 BEGIN
    5 SELECT RULE_ACTION_CONTEXT
    6 INTO action_ctx
    7 FROM DBA_RULES R
    8 WHERE RULE_OWNER='STRMADMIN' AND RULE_NAME='TEMP1';
    9 action_ctx.ADD_PAIR(ac_name,
    10 SYS.ANYDATA.CONVERTVARCHAR2('hr.transformation'));
    11 DBMS_RULE_ADM.ALTER_RULE(
    12 rule_name => 'strmadmin.temp1',
    13 action_context => action_ctx);
    14 END;
    15 /
    DECLARE
    ERROR at line 1:
    ORA-30625: method dispatch on NULL SELF argument is disallowed
    ORA-06512: at line 9
    Can any body suggest me what to do...
    Thanks in advance.
    Regards,
    Srinivas Jaltaru
    ( [email protected] )

    Hello
    I added the line you suggested, Compiling is done successfully, But Capture process
    is not invoking the Transformation function that I have assigned to it.
    Transformation function I am using is :
    create or replace function scott.transformation (in_any IN SYS.AnyData)
    RETURN SYS.AnyData
    IS
    rc NUMBER;
    BEGIN
    insert into scott.log values ('abc');
    return in_any;
    end;
    1) Any extra initialization parameters are required..?
    2) My Streams environment is having only a Capture process for capturing changes. There are no other
    components like propagation, apply.
    Appreciating your suggestions.
    Thanks in advance.
    Srinivas Jaltaru
    ( [email protected] )
    Put the following line
    action_ctx := SYS.RE$NV_LIST(SYS.RE$NV_ARRAY());
    on the line immediately preceding the call to ADD_PAIR.
    This should allow the pl/sql function to compile successfully.

  • Error while binding the model with the custom controller

    Hi All,
    I first started with a dummy project and in that binded the model with the custom controller.
    For some reason, I deleted the project and created a new one. I have deleted the whole project from the workspace.
    Now, when I am trying to bind the model  again , I am getting an error when selecting the response parameters saying that DUPICATE ENTRIES.Ideally it should not happen when I am deleting it completely.
    I am using a Webservice Model. Can any one help me out to resolve the same.
    Looking forward for your response.
    Regards
    Dipendra

    Hi Raman,
    I did that and even I have Installed the IDE again.
    Still I have that error.
    Regards
    Dipendra

  • Error While Formatting the Date with Timestamp  Format in MS WORD Template

    Hey
    I have a requirement where i need to change the date from " 2009-08-11T20:51:47.000-05:00 " to 08-AUG-2009:8:51:47 PM
    For this i SQL wrote
    CAST(DAYOFMONTH("- Protocol Product"."Date Created") AS VARCHAR(2)) || '-' || CAST(MONTHNAME("- Protocol Product"."Date Created") AS CHAR(3)) || '-' || CAST(YEAR("- Protocol Product"."Date Created") AS CHAR(4))DATE,
    "- Protocol Product"."Date Created" to get the first part i.e "08-AUG-2009" and for the second part i was just changing the date in MS Word h:mm am/pm and its not showing the correct time its showing 11-Aug-2009 1:51 AM insteas of 8:51 PM
    Is there any way to get the Format i need by using the SQL
    Any Help Appreciated
    ~Srix

    I used the following XSL and its Working !
    <?xdoxslt:xdo_format_date($_XDOXSLTCTX, "YOUR COLUMN",'DD-MMM-YYYY HH12:MI:SS AM')?>

  • HT2693 I am trying to download the number app but it is reaching a point where an error appear and the download process stop. Any solution for this issue?

    I bought the number app (MS.Excel) but I am not able to download it to my iPad mini. The app reach a point when I receive an error message and the download stops.
    I tried to downloaded from iTunes on my laptop and I faced the same problem
    Any idea how I can overcome this problem?
    Thank you,

    Try using Image Capture to download to a folder on the Desktop.  If there's a damaged file on the iPhone that's preventing the download you can isolate it with Image Capture and then delete it from the iPhone.

  • ERROR While Configuring the SSL Key Pair SAP NW 7.3

    I am trying to create new key pair entry to use for SSL. I am getting weird error, after importing certificate response ssl-credential entry goes invalid.
    Below are list of step I carried prior getting error.
    1) Deleted existing Java key pair from existing view ICM_SSL_<Instance_ID>
    2) Generated new pair entry
    3) Generated certificate sign request.
    4) Sent to SAP CA at SAP Trust Center Service at service.sap.com/tcs.
    5) Import certificate request.
    And ssl-credential entry turns red , with error"This entry expired"
    Please see screenshot below

    I am trying to create new key pair entry to use for SSL. I am getting weird error, after importing certificate response ssl-credential entry goes invalid.
    Below are list of step I carried prior getting error.
    1) Deleted existing Java key pair from existing view ICM_SSL_<Instance_ID>
    2) Generated new pair entry
    3) Generated certificate sign request.
    4) Sent to SAP CA at SAP Trust Center Service at service.sap.com/tcs.
    5) Import certificate request.
    And ssl-credential entry turns red , with error"This entry expired"
    Please see screenshot below

  • 404 error while accessing the blob in cdn

    Hi Team,
    I have a public container where I store my blob via code.
    I am able to access the item from the container via tha blob url. But when I try to access the blob via CDN I get the 404-Not found error.
    I have set up the CDN 3 days back.
    When I was using the Free trial it was working fine.But when I created the new strorage/container and CDN endpoint with my Visual Studio premium subscription I am getting this issue.
    The endpoint and the quertystring are enabled.Do I need to pay for CDN, I don't think this should be the case.
    Please help me out on this.
    My CDN endpoint is - http://az678809.vo.msecnd.net/
    Eg: My blob url - http://chiprocontainer.blob.core.windows.net/sitecorecontainer/Images/Destination/San%20Fran%20GG%20Bridge.jpg

    hi,
    How did you set your container permission as "public"?
    I suggest you could add this setting permission code into your container:
    CloudBlobContainer container = blobClient.GetContainerReference("mycontainer");
    container.CreateIfNotExist();
    // Create a permission policy to set the public access setting for the container.
    BlobContainerPermissions containerPermissions = new BlobContainerPermissions();
    containerPermissions.PublicAccess = BlobContainerPublicAccessType.Container;
    //Set the permission policy on the container.
    container.SetPermissions(containerPermissions);
    About above code, I suggest you could refer to this docs(http://msdn.microsoft.com/en-us/library/microsoft.windowsazure.storage.blob.blobcontainerpublicaccesstype.aspx
    At the same time, I used the Fiddler and Azure Storage Explore to reproduce this issue:
    1. I create a container named "img" and upload an image
    2.And set the security property in Azure Storage Explore as Public  container. I could visit the CDN endpoint successfully.
    GET http://az678259.vo.msecnd.net/img/test/det/4.jpg HTTP/1.1
    Accept: text/html, application/xhtml+xml, */*
    Accept-Language: en-US,en;q=0.8,zh-Hans-CN;q=0.5,zh-Hans;q=0.3
    User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
    Accept-Encoding: gzip, deflate, peerdist
    Host: az678259.vo.msecnd.net
    If-Modified-Since: Wed, 22 Oct 2014 05:32:35 GMT
    If-None-Match: 0x8D1BBD0B814C51A
    DNT: 1
    Connection: Keep-Alive
    Pragma: no-cache
    X-P2P-PeerDist: Version=1.1
    X-P2P-PeerDistEx: MinContentInformation=1.0, MaxContentInformation=1.0
    But I visit your CDN endpoints, I got the 404 error:
    GET http://az678809.vo.msecnd.net/sitecorecontainer/Images/Destination/San%20Fran%20GG%20Bridge.jpg HTTP/1.1
    Accept: text/html, application/xhtml+xml, */*
    Accept-Language: en-US,en;q=0.8,zh-Hans-CN;q=0.5,zh-Hans;q=0.3
    User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
    Accept-Encoding: gzip, deflate, peerdist
    Host: az678809.vo.msecnd.net
    DNT: 1
    Connection: Keep-Alive
    X-P2P-PeerDist: Version=1.1
    After I changed the container permission, I could get the 404 error in my test container. So I suggest you could set the container permission firstly.
    Any questions about this issue, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for