RPE-01038: Failed to evaluate expression null.

Hi, gurus! :)
Upon executing a process flow, I got the following error message:
RPE-01003: An infrastructure condition prevented the request from completing.
RPE-01038: Failed to evaluate expression null.  Please modify the expression, redeploy and retry again.
RPE-01003: An infrastructure condition prevented the request from completing.
RPE-02227: Cannot test Control Center user OWF_MGR. This user must match the login credentials of the evaluation location configured on owning module.
RPE-01003: An infrastructure condition prevented the request from completing.
java.lang.NullPointerException
I suspect I got this error from improper use of parameters (just started using). I've searched for answers in the internet, still I am not sure how to efficiently and correctly use parameters. I'm dealing with this "literal" confusion. I would like to confirm the following:
1. If a local parameter is an integer, how should I set the value and literal field? (say, set value to 0, literal = true?)
2. How about for while loops? The condition is automatically a string. If I use the paramater par_loc, how should I write it (say, par_loc < 100).
3. For Assign operators, data type is also an automatic string. What if I want to have an integer value? Or maybe an integer value thru an expression? (e.g. par_loc + 20).
The questions above somehow summarize the activity I created.
I'll try to do more tests and research and give you an update if I found any solution.
Any help will be deeply appreciated. Thank you, gurus!
Manoy :)

Thanks, Carsten! :)
I applied what you suggested. I still got the same error.
1. Defined the parameter via local variable --> same error as above
2. Defined it under start activity --> got a new error:
RPE-02075: Oracle Workflow failed to process the execution request for Activity PF_WHILE:WHILE_LOOP. This may be because dependent objects have not yet been deployed.
ORA-20007: The execution cannot be activated because not all required parameters have been set
WB_RT_WORKFLOW_UTIL_10G.Execute_Any_Task(PKG_WL, WB_IK_20090327_083358_51724, 12463, RUN)
WB_RT_WORKFLOW_UTIL_10G.Execute_Task(PKG_WL, WB_IK_20090327_083358_51724, 12463, RUN)
Wf_Engine_Util.Function_Call(WB_RT_WORKFLOW_UTIL_10G.EXECUTE_TASK, PKG_WL, WB_IK_20090327_083358_51724, 12463, RUN)
RPE-02083: Process PF_WHILE has errored Activities. Dependent objects may not have been deployed. You can use Oracle Workflow Monitor to retry the activities or abort the Process
Did I miss something? :|
Manoy

Similar Messages

  • Fail to evaluate expression

    Hi,
    I have and entity bean and a manager bean for this entity.
    in this manager bean if i want to test if a value in the entity is null than raise an error.
    e.g TABLE EMP(FIRSTNAME,LASTNAME)
    my manager bean contains an insnatce of the entity bean
    e.g EMP managed = new EMP();
    if (managed.getFirstName != null) then ...
    in the watch window the expression managed.getFirstName returns "?"
    or when i expand in the watch window the "managed"
    i get FIRSTNAME NULL STRING
    Kindly advice how can to bypass this problem
    Thank you in adavnce

    The expression in a formula node cannot be changed at run-time. Instead, use Eval Formula Node (Analyze>Mathematics>Formula palette) or the Advanced Formula Parsing functions on the sub-palette under there. These functions are not in the LabVIEW base package.

  • Conditional Split - Expression Evaluates to Null

    Hi everyone!
    I'm using a conditional split to discriminate modified records. My expression looks like this:
    col1_source != col1_dest || col2_source != col2_des.....and so on. I use OLE DB Command afterward to update modified records.
    It all works fine if no columns evaluate to null. If any (source or dest.) evaluates to null, component fails.
    Any tips how to solve a problem?
    It has to work like this:
    If colX_source is null and colX_dest is not null --> Update
    If colX_source is not null and colX_dest is null --> Update
    If both colX_source and colX_dest are null --> No update
    p.s. i apologize if a similar thread exists, I haven't found something of use to me.

    Thank you both for a quick response.
    I understood the derived column idea but not the isnull idea. 
    If I want to cover all the cases in which I want the update to execute, my expression (if I haven’t missunderstood sth) should look like this: 
    isNull(col1_source) && !IsNull(col1_dest) || !isNull(col1_source) && IsNull(col1_dest) || col1_source != col1_dest
    Isn’t it true that again, the last part of the expression col1_source != col1_dest evaluates to null if one of the columns is null? And that the only solution to the problem is a derived column which transforms null values in “”?
    I’m new to SSIS and slowly learning that programming logic is not always the SSIS logic.
     

  • The Expression Engine failed to evaluate the expression for a Subportal Act

    Anyone seen this error before and know of a fix? We're getting it on our 6.1 MP1 portal after we deployed our custom sso solution.
    "62     12-19-2007     12:58:37.292     Error     Portal_UI_Infrastructure     portal.c27mynrspaxr01.webadm     .NET #32     com.plumtree.portaluiinfrastructure.condition.ConditionTypeManager     The Expression Engine failed to evaluate the expression for a Subportal Action.
    System.NullReferenceException: Object reference not set to an instance of an object.
    at com.plumtree.portaluiinfrastructure.condition.ConditionTypeManager.EvaluateExpressionForSubportalAction(AActivitySpace asCurrentSpace, IApplication application, IXPRequest xpRequest, Object ptUserSession) in e:\buildroot\Release\portalui\6.1.x\ptwebui\portaluiinfrastructure\dotnet\prod\src\com\plumtree\portaluiinfrastructure\condition\ConditionTypeManager.cs:line 260 <ptLogMsgEnd>"

    As far as i know this is a harmless error. Our portal generated that message every time someone browsed /portal/server.pt.

  • Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.

    Hi,
    I am trying to run a long running process, by redirecting to the LongRunningView using the code below. But its throwing exception Can anyone please help
    string strCurrentUrl = SPUtility.OriginalServerRelativeRequestPath;
    strCurrentUrl = strCurrentUrl + "?ListName=" + strListName;
    ////Initiates the Excel Import
    if (ObjdtExcel != null && ObjdtExcel.Rows.Count > 0)
    ExcelImportJob objJob = new ExcelImportJob(strTabName, ObjdtExcel, strFileExt, SPContext.Current.Site.ID, SPContext.Current.Web.ID, strWorkflow, strListName);
    objJob.Title = "Excel Import Job";
    //// Redirect the user to another page when finished.
    objJob.RedirectWhenFinished = false;
    //// Specify if the user can cancel this.
    objJob.UserCanCancel = false;
    //// Specify the refresh rate of the job, here, the page polls every 5 seconds for completion.
    objJob.MillisecondsToWaitForFinish = 15000;
    //// Finally, start the job on a web.
    objJob.Start(SPContext.Current.Web);
    string strUrl = string.Format("{0}?JobId={1}&Source={2}", PROGRESS_PAGE_URL, objJob.JobId, strCurrentUrl);
    SPUtility.Redirect(strUrl, SPRedirectFlags.Default, HttpContext.Current);
    The exception being "Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack."
    Arjun Menon U.K

    Hi Arjun,
    Any update?
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Deploying Business Definition error: RPE-02150: Failed to connect

    During deploying a business definition module, I encountered an error message like this: "RPE-02150: Failed to connect with user EUL_FROM_OWB, password ***, connection null. Disco export file 2230.eex written to directory owb/deployed_files."
    I have 10.2 as the database, OWB R2, and OracleBI Discoverer 10g (10.1.2.2).
    In fact, I did not have problem previously when I was using database 10.1.
    Any hints? Thanks.
    John

    I hope this will find you in good faith...
    I have tried a workaround on this issue and it worked fantastically.
    The error message in Control Centre will generate an .eex file.
    Before you deploy your objects make sure you've selected the Business Area and the Items you want to deploy, and then deploy.
    Once done, locate your eex file and manually import this file via Oracle Discoverer Administrator.
    hope this will help
    Ots

  • RPE-02150: Failed to connect with user... when deploying location

    Hello.
    I've created cube and 3 dimentions in OWB 10.2, then derived them to make business definition for Discoverer 10.1.
    When I try to deploy this business definition, I get error "RPE-02150: Failed to connect with user xxx, password ***, connection null. Disco export file 5039.eex written to directory owb/deployed_files." The error appears at deploying location step. What feature is that?
    Thanks,
    Evgeni

    Hi,
    same situation, same behaviour. I've seen, that the location for the discoverer could only be of type 10.1 database in the lov of the location form. But the database is 10.2. Perhaps that might be the problem.
    Do you have any other suggestions?
    Ciao Stephan

  • Javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.null

    Hi Folks,
    I was trying to do the tutorial "Securing Services Using the AquaLogic Service Bus", but when I called the Web Service Method I got the error message listed bellow.
    What happened ?
    Tutorial link:
    "http://dev2dev.bea.com/pub/a/2006/04/securing-service-bus.html?page=1"
    Exception:
    "Unable to invoke service: SOAPFaultException - FaultCode [{http://schemas.xmlsoa
    p.org/soap/envelope/}Server] FaultString [Failed to process signature.null] Faul
    tActor [null]No Detail; nested exception is:
    javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.null
    java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoa
    p.org/soap/envelope/}Server] FaultString [Failed to process signature.null] Faul
    tActor [null]No Detail; nested exception is:
    javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.null
    at webservice.Echo_Stub.doEcho(Echo_Stub.java:37)
    at webservice.EchoServiceClient.main(EchoServiceClient.java:48)
    Caused by: javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.nu
    ll
    at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:265)
    at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandle
    r.java:106)
    at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.jav
    a:91)
    at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandle
    r.java:79)
    at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.jav
    a:254)
    at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.
    java:224)
    at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(Clie
    ntDispatcher.java:161)
    at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDisp
    atcher.java:116)
    at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)
    at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:335)
    at webservice.Echo_Stub.doEcho(Echo_Stub.java:32)"

    Hi Folks,
    I was trying to do the tutorial "Securing Services Using the AquaLogic Service Bus", but when I called the Web Service Method I got the error message listed bellow.
    What happened ?
    Tutorial link:
    "http://dev2dev.bea.com/pub/a/2006/04/securing-service-bus.html?page=1"
    Exception:
    "Unable to invoke service: SOAPFaultException - FaultCode [{http://schemas.xmlsoa
    p.org/soap/envelope/}Server] FaultString [Failed to process signature.null] Faul
    tActor [null]No Detail; nested exception is:
    javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.null
    java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoa
    p.org/soap/envelope/}Server] FaultString [Failed to process signature.null] Faul
    tActor [null]No Detail; nested exception is:
    javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.null
    at webservice.Echo_Stub.doEcho(Echo_Stub.java:37)
    at webservice.EchoServiceClient.main(EchoServiceClient.java:48)
    Caused by: javax.xml.rpc.soap.SOAPFaultException: Failed to process signature.nu
    ll
    at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:265)
    at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandle
    r.java:106)
    at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.jav
    a:91)
    at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandle
    r.java:79)
    at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.jav
    a:254)
    at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.
    java:224)
    at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(Clie
    ntDispatcher.java:161)
    at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDisp
    atcher.java:116)
    at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)
    at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:335)
    at webservice.Echo_Stub.doEcho(Echo_Stub.java:32)"

  • Deployment failed: The evaluate phase failed. The Adapter used in the evalu

    Hi All,
    I am deploying an application in Oracle Application Server ( 10.1.2.0.2) made using EJB and myfaces as the front end.
    While deploying the application i am facing the following Error.
    Deployment failed: The evaluate phase failed. The Adapter used in the evaluate may have thrown an exception.
    Resolution:
    Please call Oracle support.
    Base Exception:
    java.lang.NoClassDefFoundError
    org/apache/commons/logging/LogFactory. org/apache/commons/logging/LogFactory
    I have all the ADF libraries in applib of OC4J. Also, i have added "jsp-el-api.jar" in the applib of OC4J, as mention in reply to similar error in the forum.
    But still i am getting the same error when i try to deploy the application.
    Please help.
    Thanks and Regards,
    Vikram singh

    The one you're missing is something like commons-logging-xxx.jar. It either needs to be included in the EAR and the MANIFEST.MF, or you can put it in app-lib with the other stuff.

  • CorrelationSet with JMS: "Failed to evaluate correlation query"

    Hi,
    i want to send a message over JMS to another service and then receive the correlated message back in my BPEL process.
    The only documentation i found was http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/async.htm#CIHBIEEJ
    Here the error message:
    callbackClient (faulted)
    [2007/01/31 10:16:41] "{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure" has been thrown.less
    - <selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    - <part name="summary">
    <summary>
    Failed to evaluate correlation query.
    Failed to evaluate the correlationAlias query "/ns2:Request/ns2:Header/@Nummer" on the element "oracle.xml.parser.v2.XMLElement@b0abcb"
    Please check your BPEL/WSDL source to make sure that property alias is defined correctly.
    </summary>
    </part>
    </selectionFailure>
    Here the source of invoke and receive:
    <invoke name="callbackClient" partnerLink="ControlEntrance"
    portType="ns1:Produce_Message_ptt" operation="Produce_Message"
    inputVariable="callbackClient_Produce_Message_InputVariable">
    <correlations>
    <correlation initiate="yes" set="myCorrelationSet"
    pattern="out"/>
    </correlations>
    </invoke>
    <receive name="Receive_1" partnerLink="ControlExit"
    portType="ns3:Consume_Message_ptt" operation="Consume_Message"
    variable="Receive_1_Consume_Message_InputVariable"
    createInstance="no">
    <correlations>
    <correlation initiate="no" set="myCorrelationSet"/>
    </correlations>
    </receive>
    If i change the pattern="out" to "in" (invoke-node), then the instance never completes in the BPELConsole (stops before invoke in AUDIT) but my JMS-webservice is executed....
    If pattern="in" i see in the logfile:
    ORABPEL-03813
    Failed to evaluate correlation query.
    Failed to evaluate the correlationAlias query "/ns2:Request/ns2:Header/@Nummer" on the element "oracle.xml.parser.v2.XMLElement@ccef02"
    Please check your BPEL/WSDL source to make sure that property alias is defined correctly.
    So it is the same error but my webservice is invoked and i can provide a ORABPEL-number...
    Message was edited by:
    HEWizard

    Hi,
    "The property alias was not defined correctly in the BPEL/WSDL source, or the payload is not as expected"...
    I bet on the latter... the payload is not as expected... Have you checked the payload?
    Cheers,
    Vlad

  • Failed to evaluate correlation query

    Hi,
    can anyone help me in resolving this error even after giving all the correlation properly. i am getting the following error message
    Failed to evaluate correlation query.
    Failed to evaluate the correlationAlias Query /esa:processServiceOrder/esa:ServiceOrder/esa:id" on the element "oracle.xml.parser.v2.XMLElement@29b829b8"
    Please check your BPEL/WSDL source to make sure that property alias is defined correctly.

    Hi,
    "The property alias was not defined correctly in the BPEL/WSDL source, or the payload is not as expected"...
    I bet on the latter... the payload is not as expected... Have you checked the payload?
    Cheers,
    Vlad

  • RPE-02085: Failed to test wb_rti_workflow_util.initialize

    Hi,
    I'm getting the below error when i try to deploy process flow via deployment manager.
    RPE-02085: Failed to test wb_rti_workflow_util.initialize through deployed Workflow Database Link ORCL@WB_LK_LD_INV. Please check that "EXECUTE ANY PROCEDURE" privilege is set and that the OWB Runtime is available.
    - ORA-04052: error occurred when looking up remote object RUNTIME_OWNER.WB_RTI_WORKFLOW_UTIL@ORCL@WB_LK_LD_INV
    ORA-12545: Connect failed because target host or object does not exist
    What would be the cause?
    I'm exactly following the toturial which given by http://www.oracle.com/technology/obe/obe_bi/index.html
    Even I have given grant EXECUTE ANY PROCEDURE to owf_mgr but still i'm getting the same error.
    Please help me...
    Below is the details of my installation:
    Database : 10.1.0.2.0
    OWB: 10.1.0.2.0
    OWF: 2.6.3
    Thanks
    Raj Kumar

    U need to login into repository owner and grant the all privilages on wb_rti_workflow_util package to your user ( owf_mgr , in ur case)
    in short
    grant all on wb_rti_workflow_util to owf_mgr ( u need to type this command from repository owner login )
    Nikita

  • "Application failed to evaluate" during OSD after SP1 Upgrade

    Hi,
    Today i upgraded out configuration manager from 2012 rtm to 2012 sp1. The update process completet without any errors but now i'm unable to install application during osd. The first application crashed with the message:
    Installation job completed with exit code 0x00000000
    Execution status received: 16 (Application failed to evaluate )
    in smsts.log
    I know that there are some gotcha's regarding application installation during osd after sp1 upgrade. I already did the following steps:
    - Update the deployment type of the application in my osd task sequence
    - Re-Add the Network Access Account
    - Removed the first application in the task sequence to see if the problem is application related
    - Checked the option "Allow this application to be installed.." in the application properties
    - Reboot my site servers
    I can install application via Software Center without any problems, also the software updates are working normally.
    Thanks in advance

    Hi,
    How are things going? Please let us know if there is any progress.
    Regards.
    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.

  • 11G ws proxy client gives me Failed to process signature.null

    Hi
    I got this error maybe someone can help me
    thanks Edwin
    java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Failed to process signature.null] FaultActor [null]No Detail; nested exception is:
         weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Failed to process signature.null
         at nl.ordina.ws.client.CreditCheck_Stub.checkOrder(CreditCheck_Stub.java:39)
         at nl.ordina.ws.TestWS.main(TestWS.java:65)
    Caused by: weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Failed to process signature.null
         at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:355)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandler.java:115)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.java:100)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandler.java:88)
         at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.java:309)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:269)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(ClientDispatcher.java:213)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:150)
         at weblogic.wsee.ws.WsStub.invoke(WsStub.java:87)
         at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:337)
         at nl.ordina.ws.client.CreditCheck_Stub.checkOrder(CreditCheck_Stub.java:34)
         ... 1 more
    Caused by: weblogic.xml.crypto.wss.WSSecurityException: Failed to process signature.null
         at weblogic.xml.crypto.wss.SecurityImpl.processAndMarshalSignature(SecurityImpl.java:359)
         at weblogic.xml.crypto.wss.SecurityImpl.add(SecurityImpl.java:142)
         at weblogic.xml.crypto.wss.SecurityBuilderImpl.addSignature(SecurityBuilderImpl.java:909)
         at weblogic.xml.crypto.wss.SecurityBuilderImpl.addSignatureWithToken(SecurityBuilderImpl.java:348)
         at weblogic.xml.crypto.wss.SecurityBuilderImpl.addSignatureInternal(SecurityBuilderImpl.java:329)
         at weblogic.xml.crypto.wss11.internal.SecurityBuilderImpl.addSignature(SecurityBuilderImpl.java:351)
         at weblogic.wsee.security.wss.plan.SecurityMessageArchitect.processIntegrity(SecurityMessageArchitect.java:904)
         at weblogic.wsee.security.wss.plan.SecurityMessageArchitect.constructMessage(SecurityMessageArchitect.java:310)
         at weblogic.wsee.security.wss.plan.SecurityMessageArchitect.buildWssMessage(SecurityMessageArchitect.java:136)
         at weblogic.wsee.security.wss.plan.SecurityMessageArchitect.buildWssMessage(SecurityMessageArchitect.java:119)
         at weblogic.wsee.security.wss.SecurityPolicyArchitect.processOutbound(SecurityPolicyArchitect.java:217)
         at weblogic.wsee.security.wss.SecurityPolicyArchitect.processMessagePolicy(SecurityPolicyArchitect.java:117)
         at weblogic.wsee.security.wss.SecurityPolicyConductor.processRequestOutbound(SecurityPolicyConductor.java:120)
         at weblogic.wsee.security.wss.SecurityPolicyConductor.processRequestOutbound(SecurityPolicyConductor.java:92)
         at weblogic.wsee.security.wssp.handlers.WssClientHandler.processOutbound(WssClientHandler.java:113)
         at weblogic.wsee.security.wssp.handlers.WssClientHandler.processRequest(WssClientHandler.java:68)
         at weblogic.wsee.security.wssp.handlers.WssHandler.handleRequest(WssHandler.java:92)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:107)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:132)
         ... 4 more
    Caused by: weblogic.xml.crypto.dsig.api.XMLSignatureException
         at weblogic.xml.crypto.dsig.SignedInfoImpl.createSignature(SignedInfoImpl.java:101)
         at weblogic.xml.crypto.dsig.XMLSignatureImpl.sign(XMLSignatureImpl.java:204)
         at weblogic.xml.crypto.wss.SecurityImpl.processAndMarshalSignature(SecurityImpl.java:355)
         ... 23 more
    Caused by: weblogic.xml.crypto.api.KeySelectorException: Failed to resolve key using SecurityTokenReference weblogic.xml.crypto.wss11.internal.bst.BSTR@160e069 URI: str_Gd32NOIPFZLwvql9
         at weblogic.xml.crypto.common.keyinfo.KeyResolver.getKeyFromSTR(KeyResolver.java:309)
         at weblogic.xml.crypto.common.keyinfo.KeyResolver.select(KeyResolver.java:127)
         at weblogic.xml.crypto.dsig.SignedInfoImpl.getSignKey(SignedInfoImpl.java:216)
         at weblogic.xml.crypto.dsig.SignedInfoImpl.createSignature(SignedInfoImpl.java:99)
         ... 25 more
    Process exited with exit code 0.
    this is the ws code
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    import weblogic.jws.Policy;
    @WebService
    @Policy(uri = "policy:Wssp1.2-2007-Wss1.0-UsernameToken-Plain-X509-Basic256.xml")
    public class CreditCheck {
    @WebMethod
    public CreditObject CheckOrder(Integer customerId,Integer orderId, double orderTotal ) {
    CreditObject credit = new CreditObject();
    if (orderTotal > 1000) {
    credit.setApproved(false);
    credit.reason = "order total too high";
    } else credit.setApproved(true);
    return credit;
    client code
    package nl.ordina.ws;
    import java.security.cert.X509Certificate;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.rpc.Stub;
    import nl.ordina.ws.client.CreditCheck;
    import nl.ordina.ws.client.CreditCheckService;
    import nl.ordina.ws.client.CreditCheckService_Impl;
    import weblogic.security.SSL.TrustManager;
    import weblogic.wsee.security.bst.ClientBSTCredentialProvider;
    import weblogic.wsee.security.bst.StubPropertyBSTCredProv;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import weblogic.wsee.security.util.CertUtils;
    import weblogic.xml.crypto.wss.WSSecurityContext;
    import weblogic.xml.crypto.wss.provider.CredentialProvider;
    public class TestWS {
    public static void main(String[] args) {
    try {
    String username = "weblogic";
    String password = "weblogic";
    String clientKeyStore = "d:/wsclient.jks";
    String clientKeyStorePass = "welcome";
    String clientKeyAlias = "wsclient";
    String clientKeyPass = "welcome";
    String serverCertFile = "d:/weblogic.crt";
    String wsdl = "http://localhost:7101/ws-ws_security-context-root/CreditCheckPort?wsdl";
    CreditCheckService service = new CreditCheckService_Impl(wsdl);
    CreditCheck port = service.getCreditCheckPort();
    List credProviders = new ArrayList();
    X509Certificate serverCert = (X509Certificate) CertUtils.getCertificate(serverCertFile);
    CredentialProvider cp = new ClientUNTCredentialProvider(username, password);
    credProviders.add(cp);
    cp = new ClientBSTCredentialProvider(clientKeyStore,
    clientKeyStorePass,
    clientKeyAlias,
    clientKeyPass,
    "JKS",
    serverCert);
    credProviders.add(cp);
    Stub stub = (Stub) port;
    stub._setProperty(WSSecurityContext.CREDENTIAL_PROVIDER_LIST, credProviders);
    stub._setProperty(StubPropertyBSTCredProv.SERVER_ENCRYPT_CERT,CertUtils.getCertificate(serverCertFile));
    stub._setProperty(WSSecurityContext.TRUST_MANAGER,
    new TrustManager(){
    public boolean certificateCallback(X509Certificate[] chain, int validateErr){
    return true;
    CreditObject credit = port.checkOrder(10,10,1100);
    System.out.println(credit.getReason());
    // Add your own code here
    } catch (Exception ex) {
    ex.printStackTrace();
    Here the certificates I generated and also added to wls
    key
    D:\oracle\Middleware\jdk160_05\bin\keytool -genkey -dname "CN=WSCLIENT, OU=ICT, O=Ordina, L=Nieuwegein, S=Utrecht, C=NL" -alias wsclient -keystore d:\wsclient.jks -storepass welcome -keypass welcome -keysize 1024
    request
    D:\oracle\Middleware\jdk160_05\bin\keytool -certreq -alias wsclient -dname "CN=WSCLIENT, OU=ICT, O=Ordina, L=Nieuwegein, S=Utrecht, C=NL" -file d:\wsclient.csr -keystore d:\wsclient.jks -storepass welcome -keypass welcome -keysize 1024
    sign request
    d:\tools\openssl\bin\openssl x509 -CA d:/projecten/certs/cacert.pem -CAkey d:/projecten/certs/cakey.pem -CAserial d:/projecten/certs/serial.txt -req -in d:\wsclient.csr -out d:\wsclient.crt -days 365
    import CA
    D:\oracle\Middleware\jdk160_05\bin\keytool -import -file d:/projecten/certs/cacert.pem -alias ca -keystore d:\wsclient.jks -storepass welcome -keypass welcome
    import WSCLIENT
    D:\oracle\Middleware\jdk160_05\bin\keytool -import -file d:\wsclient.crt -alias wsclient -keystore d:\wsclient.jks -storepass welcome -keypass welcome
    import ca in wls
    D:\oracle\Middleware\jdk160_05\bin\keytool -import -file d:/projecten/certs/cacert.pem -alias ca -keystore D:\oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase
    D:\oracle\Middleware\jdk160_05\bin\keytool -import -file d:\wsclient.crt -alias wsclient -keystore D:\oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase
    D:\oracle\Middleware\jdk160_05\bin\keytool -import -file d:\demoidentity.cer -alias demoidentity -keystore d:\wsclient.jks -storepass welcome

    Hi,
    You need to use two NICs for Reverse Proxy, one for Internet interface and one for internal interface. If you use only one NIC for Reverse Proxy, you may meet unknown issues.
    Please check if you change the time-out time. Setting the time-out value to a value greater than 180 prevents the Lync Web App from experiencing disconnecting and reconnecting unexpectedly
    Please double check the settings of Reverse Proxy with the help of the link below:
    http://blogs.technet.com/b/nexthop/archive/2013/02/19/using-iis-arr-as-a-reverse-proxy-for-lync-server-2013.aspx
    Also, the media workflow for mobile client need the support of Edge Server, so you also need to deploy the Edge Server in DMZ zone for Media function such as A/V call.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • Failed to evaluate package P01000XX, Error code 0x80070002

    I have a package that got deleted while it still had all the DP's listed under content location, so now I have every site flagged with a big yellow warning.
    Not really a big deal but before I could just look at all 54 secondary's at a glance and see green but now I have to select each one to check its status.
    Anyone know how to remove it like it never existing so my update status points will go back to green?

    Hi,
    Does the smsdpmon.log still say "Failed to evaluate package P01000F3, Error code 0x80070002" now?
    Please check the blog below.
    If the package is not on the site, you must remove the package from WMI on the distribution point. The namespace to connect to is root\sccmdp.
    Troubleshooting Content Mismatch Warnings on a Distribution Point in
    System Center 2012 Configuration Manager
    Best Regards,
    Joyce
    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]

Maybe you are looking for

  • DB2 and rational Applicatio Developer

    Hello Friends, i am doing database connectivity with DB2 on Rational Application Developer. when i connect using the core java,it is working,but when i convert it into the Servlet and run onto it,it is not running,i also tried to create the data pool

  • IC_BASE look and feel (Default theme)  very urgent !!!

    Hi Gurus, Somehow the theme of my BSP application ic_base has been changed, entire look and feel of the application has been changed. Is the link between ic_base.css file with the ic_base bsp application has been changed? How can I restore my look an

  • User Based Security in Power BI (Power Pivot / Power View)

    I am looking for a way to implement User based security (based on user access needs to restrict data) for my Power BI reports. Is there any way implement this kind of security. We have this support in traditional OLAP cube by creating roles and manag

  • Scripting with Alert in ICWC

    hi , does anyone know how Interactive scripts works in IC Webclient. Q:If Script is assigned to Call List/Campaign, how agent will know that to this call list a script is assigned. *We are not using CTI integration. In alert i have seen that there is

  • How can I get it to print output of inputstream?

    Please forgive me for running two similar thread but the other thread ahs strayed from primal concern of coding. Some help with the code please??? I have set up an inputstream and outputstream to the "ftp process" of java.lang.Runtime I have sent the