401 Unauthorized error when calling a webservice

Have ColdFusion 11 installed, I have created a hello web service and I am trying to call it.  Each time I try to call the web service I get an error 401 Unauthorized.  I am not sure if I need to configure something more on the ColdFusion server, IIS or something else.
<cfcomponent displayname="Hello">
<cffunction name="helloWorld" returntype="string" access="remote">
     <cfreturn "Hello World!">
    </cffunction>
</cfcomponent>
<cfinvoke
  webservice="http://MyServer/Hello.cfc?wsdl"
  method="helloWorld"
  returnvariable="ws" refreshwsdl="yes">
</cfinvoke>
<cfdump var="#ws#">

It appears that you have inadvertently enforced HTTP authentication. If so, you will have to include the attributes, username="your_username" and password="your_password" in the cfinvoke tag.

Similar Messages

  • 401 Unauthorized Error When calling a SharePoint REST web service from SharePoint 2013 Workflow

    We have our Workflow Manger installed on the same server as our SharePoint 2013 WFE development environment. When creating a SharePoint 2013 Workflow all Calls to a SharePoint 2013 REST web service results in a 401 Unauthorized error.
    As an example I created a simple workflow that should return a JSON result. The REST Url returns the results in the browser without error.
    Set Variable:webServiceUrl to https://<hostnamedsitecollection>/_vti_bin/client.svc/web/lists/getbytitle('ISR%20Approvers')/Items?$select=Title&$filter=Title%20eq%20%27General%27
    then Build{...} Dictionary (Output to Variable:requestHeaders)
    then Call [%Variable:webServiceUrl%] HTTP web service with request (ResponseContent to Variable:responseContent |ResponseHeaders to responseHeaders | ResponseStatusCode to Variable:responseCode)
    The RequestHeader is set to the requestHeaders variable though the web service call properties
    then Log Variable:responseCode to the workflow history list
    After manually running the workflow in SharePoint on a list item in the ISR Approvers list it Logs "Unauthorized" in the Workflow History Log. It does this with every SharePoint REST web service call that I have tried through the workflow.
    It doesn't have anything to do with the Workflow Manger being installed on the same machine as the SharePoint WFE does it?
    Thank You for any insight

    Hi,
    According to your post, my understanding is that you had 401 Unauthorized Error when calling a SharePoint REST web service from SharePoint 2013 Workflow.
    Please make sure you use the ‘Call HTTP Web Service’ correctly.
    You can enter the URL into the brower to check whether it is correctly.
    You need to
    create the Request header requestHeaders
    using a Dictionary:
    Accept : application/json;odata=verbose
    Content-Type : application/json;odata=verbose
    To associate the
    requestHeaders variable, select the Call action
    property, set the RequestHeaders property to
    requestHeaders.
    Please refer to the following articles:
    Working with Web Services in SharePoint 2013 Workflows using SharePoint Designer 2013
    Calling the SharePoint 2013 Rest API from a SharePoint Designer
    Workflow
    In addtion, you need to make sure you install the workflow manager correctly.
    More information:
    Install and configure workflow for SharePoint Server 2013
    Known Issues in Workflow Manager 1.0
    Troubleshooting Workflow Manager 1.0 Management and Execution
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • (401) unauthorized error when accessing web service....

    Hello people! Can someone could possibly help me out. I'm try to consume a web service in .net technology. This was supposedly working already but lately I'm already given a (401) unauthorized error when consuming the web services. Here the code that was working couple of days ago....
    package samples;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import org.apache.axis.encoding.XMLType;
    import javax.xml.namespace.QName;
    public class LogIn
         private String url = "http://www-cebu/apps/webservices/fscservice.asmx?wsdl";
         private String action="FSC Services/LogIn";
         private String result="";
         private String username="";
         private String password="";
         private String domain="";
         public LogIn(String username, String password,String domain)
              this.username = username;
              this.password = password;
              this.domain = domain;
              try
                   Service service = new Service();
                   Call call = (Call)service.createCall();
                   call.setTargetEndpointAddress(new java.net.URL(url));
                   call.setOperationName(new QName("FSC Services/LogIn","LogIn"));
                   call.addParameter("username",org.apache.axis.encoding.XMLType.XSD_STRING,javax.xml.rpc.ParameterMode.IN);
                   call.addParameter("password",org.apache.axis.encoding.XMLType.XSD_STRING,javax.xml.rpc.ParameterMode.IN);
                   call.addParameter("domain",org.apache.axis.encoding.XMLType.XSD_STRING,javax.xml.rpc.ParameterMode.IN);
                   call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
                   call.setUseSOAPAction(true);
                   call.setSOAPActionURI(action);
                   result = (String)call.invoke(new Object[] {username,password,domain});
              catch (Exception e)
                   System.err.println(e.toString());
         public String getResult()
              return result;     
         public static void main(String [] args)
                   LogIn test = new LogIn("username","password","domain");     
                   System.out.println(test.getResult());
    }

    1. Use iFrame to show you report from Resporting Services in your Web App.
    Or :
    2. Use Report Viewer in your Web App if you use .NET, and use this code to pass your parameters :
    ReportViewer1.ServerReport.Credential = new System.Network.NetworkCredential(“your name”, “your password”, “your domain”);

  • Error when calling a Webservice's public method in Forms10g

    Hi,
    I'm getting the following error when calling a webservice's public method, i'm using Forms10g 10.1.2.3
    java.rmi.RemoteException; nested exception is: HTTP transport error javax.xml.soap.SOAPException
    java.security.PrivilegedActionException javax.xml.soap.SOAPException
    Message send failed javax.net.ssl.SSLException SSL handshake failed X509CertChI have added the Jar containing the client proxy in both Classpaths(system variable and default.env), the jar has been made with jdk 1.4
    I also have tested the client proxy from jDeveloper and it's working there, but in Forms i'm getting this error.
    I guess my problem might be that i'm calling a webservice that is secured since the url starts with https
    what should i do to fix this ??
    Regards
    Carlos

    I understand, so i have a doubt, why the webservice works on jDeveloper ??Not just JDeveloper even soapUI and Neatbeans have a way of working without a client certificate installed.
    I do not know how they achieve it. I know that they work without a client DC.
    Cheers,
    PS: See this http://stackoverflow.com/questions/8887434/webservices-ssl-https, it offers a clue.
    The java programs run unhindered when one-way authentication is being used. These products ship with a digital certificate that is in the path of most popular CAs.
    Corollary, if the Web Server is configured for mutual authentication then you need to install and configure the client certificate in the tools.
    Edited by: Prabodh on Dec 5, 2012 8:36 PM

  • Getting 401 Unauthorized error when accessing Resource History in OIM11gR2

    Hi,
    I am receiving the following error (In the Resource Histroy Popup window) when I tried to access the Resource History for completing a User provisioning (DB Resource using Oracle DB connector).
    I have setup OIM 11g R2 on Windows 2008 Server Enterprise R2 with Oracle DB 11g R2
    Error 401--Unauthorized
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.2 401 Unauthorized
    The request requires user authentication. The response MUST include a WWW-Authenticate header field (section 14.46) containing a challenge applicable to the requested resource. The client MAY repeat the request with a suitable Authorization header field (section 14.8). If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials. If the 401 response contains the same challenge as the prior response, and the user agent has already attempted authentication at least once, then the user SHOULD be presented the entity that was given in the response, since that entity MAY include relevant diagnostic information. HTTP access authentication is explained in section 11.
    I have read in other forum links that we need to configure the Authorization policies from OES APM console.
    I have setup the APM console, but I am not sure how to configure this related to my scenario
    I couldn't figure out what policies to be configured for my requirement under Application---->OIM----->oimdomain----->Authorization policies in APM console.
    I request experts to help on this as I am completely stuck here.
    Thanks,
    Madhu

    Hi user9212679,
    I am able to resolve the issue by reconfiguring the Domain properly with my FQDN of my VM.
    Earlier I was using my IP Address instead of FQDN and but the OIM is taking the FQDN of the machine and throwing 401 Unauthorized error.
    But I appreciate you help as it gave me clue of what could be wrong.
    Thanks,
    Madhu

  • 401 Unauthorized Error when Registering Workflow Manager

    I have installed the workflow manager successfully. However, when I try to run Register-SPWorkflowService I get a 401 Unauthorized error. I am running SharePoint 2013 Management Shell as administrator.
    When I use internet explorer to browse to https://FQDNofServer:12290 I get prompted for my password 3 times and then get the Not Authorized Error here as well. I have tried this from the local host as well as remote machines with the same result therefore,
    I don't think I need to disable loopback check.
    My user is a member of the Workflow AdminGroup as well as a local admin, farm administrator and I also added my account as an administrator for the Workflow Service Application in Central Administration. I also tried giving the workflow service account full
    read on the web application.
    I cannot find anything in the ULS logs or windows event viewer logs when the login fails. Any help would be appreciated.
    Thank You.

    Hi,
    Glad to hear that you solve this issue, thanks for your sharing.
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • OSB throwing "BEA-380000 Unauthorized" error when calling https

    Hello All,
    I am invoking webservice using OSB service and I am getting "BEA-380000 Unauthorized" error. The webservice is HTTPS .
    I enabled the weblogic SSL trace and it looks like SSL Handshake is successful.
    >>self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: Successfully completed post-handshake processing.>
    After the handshake I am getting "BEA-380000 Unauthorized" error.
    Can anyone help me to investigate the issue?
    The osb log file is below-------
    ####<Jun 19, 2013 3:24:24 PM CEST> <Info> <ALSB Logging> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264053> <BEA-000000> < [Soap Access, Soap Access_request, RequestLogging, REQUEST] PS_Generic_Soap_Adapter: Cablecom_ERP_SAP_CH_IOM503_124 Publishing to https://172.25.110.22:8043/sap/bc/srt/rfc/sap/z_ws_bsa_release_porder/300/z_ws_bsa_release_porder/z_ws_bsa_release_porder>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264065> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set weblogic.security.utils.SSLTruster to weblogic.security.utils.SSLTrustValidator@2dde6717.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264065> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set weblogic.security.utils.SSLHostnameVerifier to weblogic.security.utils.SSLWLSHostnameVerifier@34fcd47d.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264065> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set enforceConstraints level to 1.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264066> <BEA-000000> <SSLSetup: loading trusted CA certificates>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264066> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: addTrustedCA called.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264093> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Got SSLContext, protocol=TLS, provider=SunJSSE>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264095> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledCipherSuites(String[]): value=TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_DSS_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_DSS_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_RC4_128_SHA,TLS_ECDH_ECDSA_WITH_RC4_128_SHA,TLS_ECDH_RSA_WITH_RC4_128_SHA,TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_RC4_128_MD5,TLS_EMPTY_RENEGOTIATION_INFO_SCSV.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264095> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledProtocols(String[]): value=SSLv2Hello,SSLv3,TLSv1,TLSv1.1,TLSv1.2.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264095> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnableSessionCreation(boolean): value=true.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264096> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264096> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setWantClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264096> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setNeedClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264096> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setNeedClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264097> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264097> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264099> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 145.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264099> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264124> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_TASK
    bytesConsumed = 86 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264124> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_TASK
    bytesConsumed = 636 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264125> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_TASK
    bytesConsumed = 9 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264128> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_WRAP
    bytesConsumed = 0 bytesProduced = 139.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264128> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_WRAP
    bytesConsumed = 0 bytesProduced = 6.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264128> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 53.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264128> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264161> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 6 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264166> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = FINISHED
    bytesConsumed = 53 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264166> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: negotiatedCipherSuite: TLS_RSA_WITH_AES_128_CBC_SHA>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264167> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.getNeedClientAuth(): false>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264167> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: Peer certificate chain: [Ljava.security.cert.X509Certificate;@6ee4f34f>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264167> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: weblogic.security.utils.SSLTrustValidator.isPeerCertsRequired(): false>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264167> <BEA-000000> <validationCallback: validateErr = 0>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264169> <BEA-000000> <  cert[0] = [
      Version: V1
      Subject: CN=tsrSAPSBX01.intern.upc.ch, OU=I0020139603, OU=SAP Web AS, O=SAP Trust Community, C=DE
      Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
      Key:  Sun RSA public key, 1024 bits
      modulus: 179292036806620485918804919711928433244499815376568440587757413977992676729610723730712440151809520696043454811364142601367366025197824567437784372913655033390588836330766272601255260587177867263131005893781653504646623313565571707826556608307076192089536895471870912147173852420103041926818453926934928317821
      public exponent: 65537
      Validity: [From: Wed Jan 30 16:28:10 CET 2013,
                   To: Fri Jan 01 01:00:01 CET 2038]
      Issuer: CN=tsrSAPSBX01.intern.upc.ch, OU=I0020139603, OU=SAP Web AS, O=SAP Trust Community, C=DE
      SerialNumber: [    20130130 152810]
      Algorithm: [SHA1withRSA]
      Signature:
    0000: 04 E4 90 AF E9 C2 01 39   23 A0 61 7E 60 E8 C5 84  .......9#.a.`...
    0010: BB DE AE 81 09 FA 19 5A   63 E2 82 6B C9 C7 E0 E1  .......Zc..k....
    0020: 45 B3 6D BA EB CD A9 EC   33 B8 32 4F EC 4B BF CB  E.m.....3.2O.K..
    0030: 88 90 A3 C2 99 10 38 D4   DB C9 18 8C 73 18 E2 6E  ......8.....s..n
    0040: 8B B3 C6 8C 88 A3 71 EA   43 69 48 52 C0 11 5C 04  ......q.CiHR..\.
    0050: 1A 30 28 8F D4 E5 4B 15   50 13 AF DA 2F 74 4D BF  .0(...K.P.../tM.
    0060: A7 29 1C DD 08 AB 3D 51   04 B9 5F A6 C7 82 BB BB  .)....=Q.._.....
    0070: 62 90 B8 D7 B6 9E AA A4   B5 DE C5 A0 06 ED EB 5A  b..............Z
    ]>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264170> <BEA-000000> <weblogic user specified trustmanager validation status 0>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264171> <BEA-000000> <SSLTrustValidator returns: 0>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264171> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: No trust failure, validateErr=0.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264180> <BEA-000000> <Performing hostname validation checks: tsrsapsbx01.cioio.net>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264180> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: Successfully completed post-handshake processing.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264181> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 309 bytesProduced = 341.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264182> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 722 bytesProduced = 794.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:-4658cba0:13f5c4d8530:-8000-00000000000005c0> <1371648264182> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 8 bytesProduced = 74.>
    ####<Jun 19, 2013 3:24:24 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648264213> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 2405 bytesProduced = 2379.>
    ####<Jun 19, 2013 3:24:26 PM CEST> <Info> <Common> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029fb> <1371648266984> <BEA-000628> <Created "1" resources for pool "upc.jdbc.pe.erp.eBusiness11Datasource", out of which "0" are available and "1" are unavailable.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269215> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set weblogic.security.utils.SSLTruster to weblogic.security.utils.SSLTrustValidator@5a92606e.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269215> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set weblogic.security.utils.SSLHostnameVerifier to weblogic.security.utils.SSLWLSHostnameVerifier@75839609.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269216> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set enforceConstraints level to 1.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269216> <BEA-000000> <SSLSetup: loading trusted CA certificates>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269216> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: addTrustedCA called.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269242> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Got SSLContext, protocol=TLS, provider=SunJSSE>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269244> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledCipherSuites(String[]): value=TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_DSS_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_DSS_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_RC4_128_SHA,TLS_ECDH_ECDSA_WITH_RC4_128_SHA,TLS_ECDH_RSA_WITH_RC4_128_SHA,TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_RC4_128_MD5,TLS_EMPTY_RENEGOTIATION_INFO_SCSV.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269245> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledProtocols(String[]): value=SSLv2Hello,SSLv3,TLSv1,TLSv1.1,TLSv1.2.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269245> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnableSessionCreation(boolean): value=true.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269245> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269245> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setWantClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269246> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setNeedClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269246> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setNeedClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269246> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269246> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269248> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 145.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269248> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269273> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_TASK
    bytesConsumed = 86 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269274> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_TASK
    bytesConsumed = 636 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269275> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_TASK
    bytesConsumed = 9 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269278> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_WRAP
    bytesConsumed = 0 bytesProduced = 139.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269278> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_WRAP
    bytesConsumed = 0 bytesProduced = 6.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269279> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 53.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269279> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269311> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 6 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269312> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = FINISHED
    bytesConsumed = 53 bytesProduced = 0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269312> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: negotiatedCipherSuite: TLS_RSA_WITH_AES_128_CBC_SHA>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269312> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.getNeedClientAuth(): false>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269317> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: Peer certificate chain: [Ljava.security.cert.X509Certificate;@63c2f31c>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269317> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: weblogic.security.utils.SSLTrustValidator.isPeerCertsRequired(): false>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269317> <BEA-000000> <validationCallback: validateErr = 0>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269319> <BEA-000000> <  cert[0] = [
      Version: V1
      Subject: CN=tsrSAPSBX01.intern.upc.ch, OU=I0020139603, OU=SAP Web AS, O=SAP Trust Community, C=DE
      Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
      Key:  Sun RSA public key, 1024 bits
      modulus: 179292036806620485918804919711928433244499815376568440587757413977992676729610723730712440151809520696043454811364142601367366025197824567437784372913655033390588836330766272601255260587177867263131005893781653504646623313565571707826556608307076192089536895471870912147173852420103041926818453926934928317821
      public exponent: 65537
      Validity: [From: Wed Jan 30 16:28:10 CET 2013,
                   To: Fri Jan 01 01:00:01 CET 2038]
      Issuer: CN=tsrSAPSBX01.intern.upc.ch, OU=I0020139603, OU=SAP Web AS, O=SAP Trust Community, C=DE
      SerialNumber: [    20130130 152810]
      Algorithm: [SHA1withRSA]
      Signature:
    0000: 04 E4 90 AF E9 C2 01 39   23 A0 61 7E 60 E8 C5 84  .......9#.a.`...
    0010: BB DE AE 81 09 FA 19 5A   63 E2 82 6B C9 C7 E0 E1  .......Zc..k....
    0020: 45 B3 6D BA EB CD A9 EC   33 B8 32 4F EC 4B BF CB  E.m.....3.2O.K..
    0030: 88 90 A3 C2 99 10 38 D4   DB C9 18 8C 73 18 E2 6E  ......8.....s..n
    0040: 8B B3 C6 8C 88 A3 71 EA   43 69 48 52 C0 11 5C 04  ......q.CiHR..\.
    0050: 1A 30 28 8F D4 E5 4B 15   50 13 AF DA 2F 74 4D BF  .0(...K.P.../tM.
    0060: A7 29 1C DD 08 AB 3D 51   04 B9 5F A6 C7 82 BB BB  .)....=Q.._.....
    0070: 62 90 B8 D7 B6 9E AA A4   B5 DE C5 A0 06 ED EB 5A  b..............Z
    ]>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269321> <BEA-000000> <weblogic user specified trustmanager validation status 0>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269322> <BEA-000000> <SSLTrustValidator returns: 0>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269322> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: No trust failure, validateErr=0.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269326> <BEA-000000> <Performing hostname validation checks: tsrsapsbx01.cioio.net>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269326> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: Successfully completed post-handshake processing.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269327> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 309 bytesProduced = 341.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269329> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 722 bytesProduced = 794.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-00000000000029a2> <1371648269329> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 8 bytesProduced = 74.>
    ####<Jun 19, 2013 3:24:29 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648269359> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.unwrap(ByteBuffer,ByteBuffer[]) called: result=Status = OK HandshakeStatus = NOT_HANDSHAKING
    bytesConsumed = 2405 bytesProduced = 2379.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274361> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set weblogic.security.utils.SSLTruster to weblogic.security.utils.SSLTrustValidator@5435a197.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274362> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set weblogic.security.utils.SSLHostnameVerifier to weblogic.security.utils.SSLWLSHostnameVerifier@7c66f9ca.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274362> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Set enforceConstraints level to 1.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274362> <BEA-000000> <SSLSetup: loading trusted CA certificates>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274362> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: addTrustedCA called.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274389> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLCONTEXT: Got SSLContext, protocol=TLS, provider=SunJSSE>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274397> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledCipherSuites(String[]): value=TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_DSS_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_DSS_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_RC4_128_SHA,TLS_ECDH_ECDSA_WITH_RC4_128_SHA,TLS_ECDH_RSA_WITH_RC4_128_SHA,TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_RC4_128_MD5,TLS_EMPTY_RENEGOTIATION_INFO_SCSV.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274397> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledProtocols(String[]): value=SSLv2Hello,SSLv3,TLSv1,TLSv1.1,TLSv1.2.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274397> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnableSessionCreation(boolean): value=true.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274398> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274398> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setWantClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274398> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setNeedClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274398> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setNeedClientAuth(boolean): value=false.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274398> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274399> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setUseClientMode(boolean): value=true.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60efbc9f1d51:7343109:13f5c952092:-8000-0000000000002a82> <1371648274400> <BEA-000000> <[Thread[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads]]weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.wrap(ByteBuffer,ByteBuffer) called: result=Status = OK HandshakeStatus = NEED_UNWRAP
    bytesConsumed = 0 bytesProduced = 145.>
    ####<Jun 19, 2013 3:24:34 PM CEST> <Debug> <SecuritySSL> <viedfuspe55> <OSBNode1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <83ab60

    The error which you are getting is not related to SSL. Target service might be imposing basic authentication.
    To implement basic authentication you need to follow below steps in OSB -
    1. Create a service account with username and password (owner of target service must provide this info)
    2. In HTTP Transport Configuration of your business service, select "Basic" in "Authentication" setting and browse the service account you created in "Service Account" setting at same page
    3. Save and activate the configuration
    4. Test the business service using OSB test console
    You should get in touch with target service admin to understand which kind of authentication is required (if not basic) and where your request is failing exactly.
    Regards,
    Anuj

  • 10.4.2 401 Unauthorized error when i secured my project

    Hi ,
    I secured my application with authentication and authorization with default login page and error page.
    After i assigned users for an application role and doing grants for all the webpages and taskflows needed.. i am unable to login successfully into app.
    i get
    Error 401--Unauthorized
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.2 401 Unauthorized
    The request requires user authentication. The response MUST include a WWW-Authenticate header field (section 14.46) containing a challenge applicable to the requested resource. The client MAY repeat the request with a suitable Authorization header field (section 14.8). If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials. If the 401 response contains the same challenge as the prior response, and the user agent has already attempted authentication at least once, then the user SHOULD be presented the entity that was given in the response, since that entity MAY include relevant diagnostic information. HTTP access authentication is explained in section 11.
    Any1 please let me know y this issue arises..
    Prabas

    did u grant permission for the taskflow and the page in jazn-data.xml file?

  • BAPI_GET_PAYSLIP_HTML error when called as webservice

    Greetings
    I'm calling BAPI_GET_PAYSLIP_HTML as a webservice to make payslips available via web browser but it returns no output. I
    've tested the same bapi in se37 with the same parameters and we get the desired return.
    The problems isn't either with the calling procedure because I've made the same test (via webservice) to BAPI_GET_PAYSLIP we it had return.
    Could you help me with this?
    Thanks in advance
    Nuno

    hi!
    are you trying to hit this bapi when calling a BSP? Or are you trying to do this with ITS?
    also, check if adding the COMMIT statement right after the bapi will help.
    regards,
    manasa

  • 401 Unauthorized Error when accessing a task from REST API which contains Role or Privilege in Access Control definition

    Hi Team,
    As of IDM 7.2 SP8 patch2, when we use Enterprise role or Privilege in the access control definition of a task, accessing this task from UI5 i.e REST API is giving unauthorized error even though user is already having the required role or privilege.
    But the task is working fine if we use fixed user ID or keeping blank value in allowed users field.
    Attached the current access control definition of the task we configured & the error message info for reference
    Regards,
    Venkata Bavirisetty

    Hi Ralitsa,
    Thanks for your response and sorry for late reply.
    The XXXX in role is not used as a wild card. the name itself is in that format. I have searched the role and then selected from search list.
    Let me know if you need any clarifications?
    Refards,
    Venkata Bavirisetty

  • Connection time out error when calling a webservice on ICF

    Hi
       We have a webservice exposed on ECC 5.0 on the ICF. However, when we invoke the webservice - after 10 seconds , we get a error message
    Error reading server response: The operation has timed-out
    I checked ICMAN parameters
    icm/conn_timeout - and set its new value to 50000 ms ( 50 secs ) - the connection still timed out when the webservice tooks more than 10 seconds to process.
    icm/keep_alive_timeout - I don't see an option to change the new value for this parameter
    What am i missing here - how can I set the connection not to time out uptil say 45 seconds - what parameter do I change here ?

    I partly agree with Kaustubh,
    if you test the service from within SICF the parameter SAPLOCALHOSTFULL (FQHN = Fully-Qualified Host Name) is taken to build the test URL. If this host name is not correct resp. cannot be resolved by the server, you will run into an error.
    icm/host_name_full is only taken if SAPLOCALHOSTFULL is not maintained.
    So first of all you shold check this parameter befor increasing timeout parameters at random.
    If the parameter does not solve the problem, you should have a look into the ICM trace file (dev_icm) and search for "ERROR".
    Regards,
    Stefan

  • XML Deserialization Error when calling WebService from WebDynrpo

    Hi all,
    when calling a WebService-method from my WebDynpro-application, I get the following error message:
    "Deserializing fails. Nested message: XML Deserialization Error. Can not create instance of class [com.karmann.ApplMan.dto.SoftwareKomponenteDTO] when deserializing XML type [urn:com.karmann.ApplMan.dto][SoftwareKomponenteDTO].."
    SoftwareKomponenteDTO is a class that I have implemented. It implements Serializable and overwrites the methods "equals()" and "hashcode()". It contains members of types long, String and java.sql.Date.
    The method I call needs an argument of type SoftwareKomponenteDTO. Other methods which return something of type SoftwareKomponenteDTO do not make any problems.
    The same error message appears when I test the WebService-method in the WebService-navigator. So I assume that the problem is not the way I call the method from WebDynpro.
    Thanks for help,
    Christoph

    Thanks for this hint, Amar. But this points directly to my next problem: How can I set this parameter. I know how to set flat parameters (e.g. of type long, boolean, etc.). But how can I set a parameter of a complex type?
    For example I can call
        wdContext.currentSaveElement().setIdFather(long id)
    in order to set the parameter idFather of type long for the WebService-method save(). But there is no method
         wdContext.currentSaveElement().setIdFather(SoftwareKomponenteDTO aKomp)
    Could you please help me on more time?
    Kind regards,
    Christoph

  • XML Deserialization Error when calling WebService-method

    Hi all,
    when calling a WebService-method from my WebDynpro-application, I get the following error message:
    "Deserializing fails. Nested message: XML Deserialization Error. Can not create instance of class [com.karmann.ApplMan.dto.SoftwareKomponenteDTO] when deserializing XML type [urn:com.karmann.ApplMan.dto][SoftwareKomponenteDTO].."
    SoftwareKomponenteDTO is a class that I have implemented. It implements Serializable and overwrites the methods "equals()" and "hashcode()". It contains members of types long, String and java.sql.Date.
    The method I call needs an argument of type SoftwareKomponenteDTO. Other methods which return something of type SoftwareKomponenteDTO do not make any problems.
    The same error message appears when I test the WebService-method in the WebService-navigator. So I assume that the problem is not the way I call the method from WebDynpro.
    Thanks for help,
    Christoph

    Hi all,
    I found what my problem was. The complex type that I deliver to my method (i.e. SoftwareKomponenteDTO) must have a public constructor without parameters. I think that this is slightly confusing, because in the other direction (method delivers complex type as return value) this is not neccessary. Anyway, my problem's solved now.
    Regards,
    Christoph

  • OnPremise: Sharepoint Hosted App gives 401 unauthorized error while accessing UserProfile Rest Service

    Hi All,
    I have SharePoint hosted app deployed on On-Premise using(F5) which reads User Profile data consumes WCF(Hosted on same server) through REST API to insert data in to SQL DB(Different server).
    SharePoint hosted app was working as expected and suddenly it started asking for credential and not login(any user) to the application landing page.
    Checked SharePoint Logs, IIS Logs and Windows log but did not get any clue.
    WCF is accessible, User Profile access is also happening but not sure what changes done on server or infra level which causing this issue.
    I have an On-Premise Environment for SharePoint 2013. where we have created SharePoint hosted app which calls "http:///_api/SP.UserProfiles.PeopleManager/GetMyProperties" to get current user's data. but this gives me 401 unauthorized error.
    Notes:
    I had given read permission to user profile and full control to sitecollection in appmanifest. If I run this app on Office 365 developer site it works fine, but on premise environment it give 401 error.
    On premise environment when I deploy this app 3 times it prompt for  credential and finally gives the following error
    Error message after login 3 times:
    {"error":{"code":"-2147024891, System.UnauthorizedAccessException","message":{"lang":"en-US","value":"Access
    denied. You do not have permission to perform this action or access this resource."}}}
    -Lovekush Kumar 

    Add your site (http://*.app.contoso.com) to your local intranet sites in IE. 
    "app.contoso.com" is app domain.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • SOAP Asynch Message Giving HTTP 401 Unauthorized error

    Hi experts,
    <Br>
    We are sending ORDERS IDOC Asynchronously from ECC To XI and XI is sending it to Vendor using SOAP.
    This interface was working OK and now we had HTTP 401 error. Checked URL,Username and password to the Vendor. It looks OK. It is working OK if I try it in browser.
    </br>
    <Br>
    I tried to refresh the object by changing values and reactivating,did cache refresh..Still didn't work.When I try to check for the problem found J2EE_GUEST user was locked.Same was unlocked and tried again.
    </BR>
    <BR>
    This IDOC is requesting for acknowledgement( trying to suppress ack by running IDX_NOALE).
    But now I need to reprocess these failed messages.I was trying in different ways and it is not going thru.
    Any pointers are really appreciated.
    </BR>
    Adapter Engine Log is as follows:
    <BR>
    2009-10-27 16:37:30 Success The message was successfully retrieved from the receive queue.
    <BR>
    2009-10-27 16:37:30 Success The message status set to DLNG.
    <BR>
    2009-10-27 16:37:30 Success Delivering to channel: CC_ORDERS05_TO_XYZ_SOAP
    <BR>
    2009-10-27 16:37:30 Success MP: Entering module processor
    <BR>
    2009-10-27 16:37:30 Success MP: Processing local module localejbs/sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean
    <BR>2009-10-27 16:37:30 Success SOAP: request message entering the adapter with user J2EE_GUEST
    <BR>2009-10-27 16:37:30 Error Exception caught by adapter framework: SOAP: response message contains an error <BR>XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 401 Unauthorized
    <BR>2009-10-27 16:37:30 Success SOAP: completed the processing
    <BR>2009-10-27 16:37:30 Error SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - <BR>HTTP 401 Unauthorized
    <BR>2009-10-27 16:37:30 Success SOAP: sending a delivery error ack ...
    <BR>2009-10-27 16:37:30 Success SOAP: sent a delivery error ack
    <BR>2009-10-27 16:37:30 Success Acknowledgement creation triggered for type: SystemErrorAck
    <BR>2009-10-27 16:37:30 Success Acknowledgement creation triggered for type: AckNotSupported
    <BR>2009-10-27 16:37:30 Error MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: <BR>response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 401 Unauthorized
    <BR>2009-10-27 16:37:30 Success Acknowledgement sent successfully for type: SystemErrorAck
    <BR>2009-10-27 16:37:30 Success Acknowledgement sent successfully for type: AckNotSupported
    <BR>2009-10-27 16:37:30 Error Delivery of the message to the application using connection SOAP_http://sap.com/xi/XI/System <BR>failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error <BR>XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 401 Unauthorized.
    <BR>2009-10-27 16:37:30 Error The message status set to NDLV.
    <BR>
    <BR>Regards,
    <BR>Ramesh
    Edited by: RameshK99 on Oct 28, 2009 1:57 AM

    Can you run a sniffer tool & see the actual reason for 401 unauthorized error? 6172 weblog: Troubleshooting SOAP, HTTP and Mail Adapter Scenarios with TCPGateway by Stefan Grube...
    Generally, 401 unauthorized is when the target system rejects the request...  Also, What type of authentication does the target webservice have.?? B'cos i ran into a similar problem with Ms-Webservice. (they were using NTLM authentication). It works from a browser but not from PI. So we installed SOAP-AXIS adapter to support NTLM based authentication.
    Regards,
    Siva Maranani

Maybe you are looking for

  • Add Counter at the end of file name

    Hi all,    I am using NFS protocol and trying to add counter at the end of the file. I have given the Prefix as  '-' Format : 1 Step: 1 Mode: After First File Is the prefix is right? Am i giving the values in right way? Please help me. The format req

  • Error while using oracle client

    I agree to all what you have written .But as you said we often have client server co-existing on the same hardware platform and also i have additionally installed an oracle client .I agree that the TCP connections is via Net8 (Sql*Net) /ODBC etc. But

  • HT1848 Transferring from one computer to another

    I want to be able to move all my daughters iPod music, games, etc to my computer so I can help her manage it.  It is currently on another computer.  Can I do this safely without erasing everything she has?

  • False Patent Claims - HELP

    Hello Palm Blog, My comment is more of a historical support question. Our company has apps that run on the legacy Palm OS that are like forms / checklists. We have encountered a firm that claims they have the "patent on mobile forms / checklist for P

  • Database 10.2.3.0 to latest version ?

    I have a Db at 10.2.3.0 (AIX5.3) and what to upgrade it to the latest version, what patchset do I need to install ?