SOA Suite Business Rules: Error caching the Decision Services metadata

hi ofm users
im currentntly trying
SOA Suite 11.1.1.1.0
on Oracle XE
on Windows XP Pro
what im trying is a simple use case of business rule component,
my service is getWorkStatusByDay, that i implement using
business rules component using decision table.
my rule model is (conceptually):
Day{
     String id;
     String code;//mon,tue,wed,...,sat,sun
WorkStatus{
     String id;
     String code;//holiday, work
WorkStatus getWorkStatusByDay(Day):
is rule service that decides WorkStatus code by Day code,
eg:
if Day.code=mon,tue,wed,...,fri then we got WorkStatus.code=work
if Day.code=sat,sun then we got WorkStatus.code=holiday
i've successfully created the composite project, using
rule component, mediator, and exposed it as a webservice
compiled and deployed ok.
but when i try to run the service using soapUI WS tester,
i'm getting error in the console, see stacktrace below.
im able to reproduce the error by deploying the project
to another computer with a same spec as above.
So is there any solution to this ? how to fix this issue,
as this is a very basic sample scenario.
Any information will be appreciated,
as im looking forward to evaluating Oracle Business for a client project :)
[2010-08-11T14:07:14.593+07:00] [soa_server1] [ERROR] [] [oracle.soa.services.rules] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IdVyLm30nnWFLzmJOA1CO^J500000D,0] [WEBSERVICE_PORT.name: getWorkStatusByDayPT_pt] [APP: soa-infra] [composite_name: TestRule] [component_name: mapWorkStatusByDay] [component_instance_id: c984b23f-0370-478b-99e1-83b651e2e35c] [J2EE_MODULE.name: fabric] [WEBSERVICE.name: getWorkStatusByDay] [J2EE_APP.name: soa-infra] [composite_instance_id: 40001] <.> Error caching the Decision Services metadata.[[
Error caching the decision services metadata for path default/TestRule!1.0*91126208-425e-4d35-bca3-d2585ec941ea/mapWorkStatusByDay.
Check the underlying exception and correct the error. This is most likely due to a rule modeling isssue. Validate the rule dictionary in rule designer and fix any errors and warnings. If the error persists, contact Oracle Support Services.
ORABPEL-36109
Error caching the Decision Services metadata.
Error caching the decision services metadata for path default/TestRule!1.0*91126208-425e-4d35-bca3-d2585ec941ea/mapWorkStatusByDay.
Check the underlying exception and correct the error. This is most likely due to a rule modeling isssue. Validate the rule dictionary in rule designer and fix any errors and warnings. If the error persists, contact Oracle Support Services.
     at oracle.bpel.services.rules.impl.DecisionServiceCache.cacheDecisionServiceMetadata(DecisionServiceCache.java:1211)
     at oracle.bpel.services.rules.impl.DecisionServiceCache.prepare(DecisionServiceCache.java:359)
     at oracle.bpel.services.rules.impl.DecisionServiceImpl.preProcess(DecisionServiceImpl.java:1164)
     at oracle.bpel.services.rules.fabric.BusinessRulesServiceEngine.request(BusinessRulesServiceEngine.java:570)
     at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
     at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
     at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:144)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: oracle.rules.rl.exceptions.ParseException: encountered 'rule' when expecting one of:
<XML_IDENTIFIER> ...<IDENTIFIER> ...
at line 10 column 49 in main
     at oracle.rules.rl.exceptions.ExceptionFactory.createParseException(ExceptionFactory.java:577)
     at oracle.rules.rl.analyze.RulesetParser.generateParseException(RulesetParser.java:25)
     at oracle.rules.rl.parse.RLParser.jj_consume_token(RLParser.java:5430)
     at oracle.rules.rl.parse.RLParser.Symbol(RLParser.java:697)
     at oracle.rules.rl.parse.RLParser.Qname(RLParser.java:672)
     at oracle.rules.rl.parse.RLParser.ClassName(RLParser.java:795)
     at oracle.rules.rl.parse.RLParser.Type(RLParser.java:729)
     at oracle.rules.rl.parse.RLParser.Parameter(RLParser.java:886)
     at oracle.rules.rl.parse.RLParser.Parameters(RLParser.java:860)
     at oracle.rules.rl.parse.RLParser.Function(RLParser.java:1005)
[2010-08-11T14:07:14.718+07:00] [soa_server1] [ERROR] [] [oracle.soa.services.rules] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IdVyLm30nnWFLzmJOA1CO^J500000D,0] [WEBSERVICE_PORT.name: getWorkStatusByDayPT_pt] [APP: soa-infra] [composite_name: TestRule] [component_name: mapWorkStatusByDay] [component_instance_id: c984b23f-0370-478b-99e1-83b651e2e35c] [J2EE_MODULE.name: fabric] [WEBSERVICE.name: getWorkStatusByDay] [J2EE_APP.name: soa-infra] [composite_instance_id: 40001] <.> [[
oracle.fabric.common.BusinessFaultException
     at oracle.bpel.services.rules.impl.DecisionServiceCache.cacheDecisionServiceMetadata(DecisionServiceCache.java:1211)
     at oracle.bpel.services.rules.impl.DecisionServiceCache.prepare(DecisionServiceCache.java:359)
     at oracle.bpel.services.rules.impl.DecisionServiceImpl.preProcess(DecisionServiceImpl.java:1164)
     at oracle.bpel.services.rules.fabric.BusinessRulesServiceEngine.request(BusinessRulesServiceEngine.java:570)
     at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
     at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
     at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:144)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
-----

hi ofm users
im currentntly trying
SOA Suite 11.1.1.1.0
on Oracle XE
on Windows XP Pro
what im trying is a simple use case of business rule component,
my service is getWorkStatusByDay, that i implement using
business rules component using decision table.
my rule model is (conceptually):
Day{
     String id;
     String code;//mon,tue,wed,...,sat,sun
WorkStatus{
     String id;
     String code;//holiday, work
WorkStatus getWorkStatusByDay(Day):
is rule service that decides WorkStatus code by Day code,
eg:
if Day.code=mon,tue,wed,...,fri then we got WorkStatus.code=work
if Day.code=sat,sun then we got WorkStatus.code=holiday
i've successfully created the composite project, using
rule component, mediator, and exposed it as a webservice
compiled and deployed ok.
but when i try to run the service using soapUI WS tester,
i'm getting error in the console, see stacktrace below.
im able to reproduce the error by deploying the project
to another computer with a same spec as above.
So is there any solution to this ? how to fix this issue,
as this is a very basic sample scenario.
Any information will be appreciated,
as im looking forward to evaluating Oracle Business for a client project :)
[2010-08-11T14:07:14.593+07:00] [soa_server1] [ERROR] [] [oracle.soa.services.rules] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IdVyLm30nnWFLzmJOA1CO^J500000D,0] [WEBSERVICE_PORT.name: getWorkStatusByDayPT_pt] [APP: soa-infra] [composite_name: TestRule] [component_name: mapWorkStatusByDay] [component_instance_id: c984b23f-0370-478b-99e1-83b651e2e35c] [J2EE_MODULE.name: fabric] [WEBSERVICE.name: getWorkStatusByDay] [J2EE_APP.name: soa-infra] [composite_instance_id: 40001] <.> Error caching the Decision Services metadata.[[
Error caching the decision services metadata for path default/TestRule!1.0*91126208-425e-4d35-bca3-d2585ec941ea/mapWorkStatusByDay.
Check the underlying exception and correct the error. This is most likely due to a rule modeling isssue. Validate the rule dictionary in rule designer and fix any errors and warnings. If the error persists, contact Oracle Support Services.
ORABPEL-36109
Error caching the Decision Services metadata.
Error caching the decision services metadata for path default/TestRule!1.0*91126208-425e-4d35-bca3-d2585ec941ea/mapWorkStatusByDay.
Check the underlying exception and correct the error. This is most likely due to a rule modeling isssue. Validate the rule dictionary in rule designer and fix any errors and warnings. If the error persists, contact Oracle Support Services.
     at oracle.bpel.services.rules.impl.DecisionServiceCache.cacheDecisionServiceMetadata(DecisionServiceCache.java:1211)
     at oracle.bpel.services.rules.impl.DecisionServiceCache.prepare(DecisionServiceCache.java:359)
     at oracle.bpel.services.rules.impl.DecisionServiceImpl.preProcess(DecisionServiceImpl.java:1164)
     at oracle.bpel.services.rules.fabric.BusinessRulesServiceEngine.request(BusinessRulesServiceEngine.java:570)
     at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
     at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
     at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:144)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: oracle.rules.rl.exceptions.ParseException: encountered 'rule' when expecting one of:
<XML_IDENTIFIER> ...<IDENTIFIER> ...
at line 10 column 49 in main
     at oracle.rules.rl.exceptions.ExceptionFactory.createParseException(ExceptionFactory.java:577)
     at oracle.rules.rl.analyze.RulesetParser.generateParseException(RulesetParser.java:25)
     at oracle.rules.rl.parse.RLParser.jj_consume_token(RLParser.java:5430)
     at oracle.rules.rl.parse.RLParser.Symbol(RLParser.java:697)
     at oracle.rules.rl.parse.RLParser.Qname(RLParser.java:672)
     at oracle.rules.rl.parse.RLParser.ClassName(RLParser.java:795)
     at oracle.rules.rl.parse.RLParser.Type(RLParser.java:729)
     at oracle.rules.rl.parse.RLParser.Parameter(RLParser.java:886)
     at oracle.rules.rl.parse.RLParser.Parameters(RLParser.java:860)
     at oracle.rules.rl.parse.RLParser.Function(RLParser.java:1005)
[2010-08-11T14:07:14.718+07:00] [soa_server1] [ERROR] [] [oracle.soa.services.rules] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IdVyLm30nnWFLzmJOA1CO^J500000D,0] [WEBSERVICE_PORT.name: getWorkStatusByDayPT_pt] [APP: soa-infra] [composite_name: TestRule] [component_name: mapWorkStatusByDay] [component_instance_id: c984b23f-0370-478b-99e1-83b651e2e35c] [J2EE_MODULE.name: fabric] [WEBSERVICE.name: getWorkStatusByDay] [J2EE_APP.name: soa-infra] [composite_instance_id: 40001] <.> [[
oracle.fabric.common.BusinessFaultException
     at oracle.bpel.services.rules.impl.DecisionServiceCache.cacheDecisionServiceMetadata(DecisionServiceCache.java:1211)
     at oracle.bpel.services.rules.impl.DecisionServiceCache.prepare(DecisionServiceCache.java:359)
     at oracle.bpel.services.rules.impl.DecisionServiceImpl.preProcess(DecisionServiceImpl.java:1164)
     at oracle.bpel.services.rules.fabric.BusinessRulesServiceEngine.request(BusinessRulesServiceEngine.java:570)
     at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
     at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
     at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:144)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
-----

Similar Messages

  • Business Rule Error: Fact not found in the rule engine working memory, rule

    I am trying to create a simple decision table with an input(ValidateInput) and a output(ValidateOutput). The input and output schemas have unbounded and nested elements(Parent-child relationship). When I create a condition(specific condition on input) and in the action I am asserting the output object. But when I run using EM it throws the following exception. It would be helpful if somebody could tell me what could be the problem. Please note when I set the output as ValidateInput object then it runs fine. Also it executes fine with ValidateOutput if it doesn't have unbounded(List) element inside it.
    Error Message: {http://xmlns.oracle.com/OracleRules10/OracleRules10_DecisionService_1}operationErroredFault
    Fault ID     rules:211
    Fault Time     Jun 18, 2011 10:45:13 AM
    Non Recoverable Business Fault :
    Fact not found in the rule engine working memory, rule session execution failed. The rule session 270013 failed because an instance of the fact com.example.customer.ValidateResponse could not be found in the working memory of the rule session. This is most likely a rule modeling error. The decision service interaction expects the fact instance to exist in the working memory of the rule session. Check the rule actions in rule designer and make sure that a fact of the expected type is being asserted. If the error persists, contact Oracle Support Services. 270013
    Edited by: reachsky on 18 Jun, 2011 9:57 AM

    It's working now..I had to use Global variable to declare child element of the output variable and use the same during action.

  • Fact Not Found Business Rules Error

    Hi
    I am encountering the following fault while executing one of the condition of the rule. The other condition works fine. Can anyone please tell me the reason for this error, I have asserted the fact with values and also am not getting any errors in the Business Rule Validation Messages, so i am not sure why I am encountering the following error.
    <bpelFault><faultType>0</faultType><operationErroredFault xmlns="http://xmlns.oracle.com/CustOraBR4/CustOraBR4_DecisionService"><part name="payload"><errorInfo xmlns="http://xmlns.oracle.com/CustOraBR4/CustOraBR4_DecisionService"><errorMessage>Fact not found in the rule engine working memory, rule session execution failed. The rule session 360002 failed because an instance of the fact com.oracle.xmlns.bpm.bpmobject.data.bruleoutput.BRuleOutputType could not be found in the working memory of the rule session. This is most likely a rule modeling error. The decision service interaction expects the fact instance to exist in the working memory of the rule session. Check the rule actions in rule designer and make sure that a fact of the expected type is being asserted. If the error persists, contact Oracle Support Services. 360002</errorMessage></errorInfo></part></operationErroredFault></bpelFault>
    Regards
    Venkat

    Hi,
    Just checked my old backup file and you are right. It does not have the business rules. One reason I can think of is they are not part of UJFS structure and in fact uses a table driven. All the rules can found with the tables UJP*.
    You can print them into html and copy into an excel. From there I think you have to manually copy into the target system. If you are using transport route, you do not have worry as the transports cover the table driven rules with the required config in the UJT_TRANS_CHG table.
    Thanks,
    Sreeni

  • Modify Business Rules without redeploying the application

    Hello everyone,
    When using a "Business Rules" with a BPMN Process, we can change the business rules without redoploying the application by using BPM Composer. I would like to know if it is possible to do the same thing when we use a business rules with a BPEL Process.
    Thank you in advance for your answer

    Hi Neeraj,
    Thanks for your answer,
    BPMN Process exist only in Oracle BPM Suite, in Oracle SOA Suite we have a BPEL Process to model the business activities
    My problem is when I try to open a deployed project from Business Composer, it opens only projects where I use a BPMN Process. So when I use a business rules with a BPEL Process, I can't open the deployed project from the Business Composer.
    Regards,
    Edited by: Bilou on 1 juin 2012 12:53

  • SAP BPC 7.5 NW business rules error

    Hi,
    I am facing business rules error in BPC 7.5 NW SP 01 client. When i click on any business rules for ex- carry forward rules to fill in the information, it's giving error like " Application has genarated an exception that could not be handled" Process id = 10x104c (4172) Thread id = 0x1170
    No recent changes happend in the servers. Any suggestions plz.

    Hi,
    I am facing business rules error in BPC 7.5 NW SP 01 client. When i click on any business rules for ex- carry forward rules to fill in the information, it's giving error like " Application has genarated an exception that could not be handled" Process id = 10x104c (4172) Thread id = 0x1170
    No recent changes happend in the servers. Any suggestions plz.

  • Error while deploying decision services on server "bg1ws0044"

    hi'
    I have followed tutorial provided in the sample in the SOA suite
    "C:\product\10.1.3.1\OracleAS_1\bpel\samples\demos\ExpenseRequestApproval"
    for integrating BPEL and business rules, however the after deploying the ant is giving following below error
    I am using JDeveloper studio edition 10.1.3.1.0 and SOA 10.1.3.1.0
    please tell me what is the issue
    thanks
    Yatan
    error:
    Buildfile: D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\ExpenseRequest3\build.xml
    validateTask:
    [echo]
    | Validating workflow
    [validateTask] url is file:/D:/Oracle-SaaS/Downloads/jdevstudio10131/integration/bpm/support/files/WorkflowTaskDefinition.xsd
    [validateTask] url is file:/D:/Oracle-SaaS/Downloads/jdevstudio10131/integration/bpm/support/files/WorkflowTaskDefinition.xsd
    [validateTask] Validation of workflow task definitions is completed without errors
    deployProcess:
    [echo]
    | Deploying bpel process ExpenseRequest3 on bg1ws0044, port 80
    [deployProcess] Deploying process D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\ExpenseRequest3\output\bpel_ExpenseRequest3_1.0.jar
    [deployProcess] Successfully deployed the process "ExpenseRequest3" on server "bg1ws0044" and port "80"
    deployTaskForm:
    [echo]
    | Deploying workflow form for ExpenseRequest3 on bg1ws0044, port 80
    [deployTaskForm] 09/07/24 15:17:07 Notification ==>Application Deployer for default_ExpenseRequest3_1_0_ExpenseApproval STARTS.
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:07 Notification ==>Copy the archive to C:\product\10.1.3.1\OracleAS_1\j2ee\oc4j_soa\applications\default_ExpenseRequest3_1_0_ExpenseApproval.ear
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:07 Notification ==>Initialize C:\product\10.1.3.1\OracleAS_1\j2ee\oc4j_soa\applications\default_ExpenseRequest3_1_0_ExpenseApproval.ear begins...
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:07 Notification ==>Unpacking default_ExpenseRequest3_1_0_ExpenseApproval.ear
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:07 Notification ==>Done unpacking default_ExpenseRequest3_1_0_ExpenseApproval.ear
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:07 Notification ==>Unpacking workflowform.war
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Done unpacking workflowform.war
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Initialize C:\product\10.1.3.1\OracleAS_1\j2ee\oc4j_soa\applications\default_ExpenseRequest3_1_0_ExpenseApproval.ear ends...
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Starting application : default_ExpenseRequest3_1_0_ExpenseApproval
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Initializing ClassLoader(s)
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Initializing EJB container
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Loading connector(s)
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Starting up resource adapters
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Initializing EJB sessions
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Committing ClassLoader(s)
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Initialize workflowform begins...
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Initialize workflowform ends...
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Started application : default_ExpenseRequest3_1_0_ExpenseApproval
    [deployTaskForm]
    [deployTaskForm] 09/07/24 15:17:08 Notification ==>Application Deployer for default_ExpenseRequest3_1_0_ExpenseApproval COMPLETES. Operation time: 344 msecs
    [deployTaskForm]
    [deployTaskForm] Successfully deployed form on server "bg1ws0044"
    deployDecisionServices:
    [echo]
    | Deploying decision services for ExpenseRequest3 on bg1ws0044, port 80
    BUILD FAILED
    D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\ExpenseRequest3\build.xml:116: Error while deploying decision services on server "bg1ws0044"
    Total time: 9 seconds

    after "verbose=true"
    this is the error:
    | Deploying decision services for SalesRequest1 on bg1ws0044, port 80
    [deployDecisionServices] Start of deploying decision services.
    [deployDecisionServices] Deploy decision service in directory D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService
    [deployDecisionServices] Start deploying decision service from directory D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService to J2EE context /rules/default/SalesRequest1/1.0/DecisionService
    [deployDecisionServices] Replace placeholders in file D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl
    [deployDecisionServices] Replace placeholders in file D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl done.
    [deployDecisionServices] Replace placeholders in file D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp
    [deployDecisionServices] Replace placeholders in file D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp done.
    [deployDecisionServices] Start compiling fact type classes in directory D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes
    [deployDecisionServices] Compiling from shell, src=D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes, classpath=D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\lib\ojc.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-oracle.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel-ant.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel-common.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel-thirdparty.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\webservices\lib\orawsdl.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\lib\xmlparserv2.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\lib\xml.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\j2ee\home\lib\oc4j-internal.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\j2ee\home\lib\adminclient.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\bpm\support\files;D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\lib\jdev.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\xml-apis.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\xercesImpl.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\jakarta-oro-2.0.8.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\commons-net-1.3.0.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-xslp.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-xalan1.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-weblogic.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-vaj.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-trax.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-swing.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-stylebook.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-starteam.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-nodeps.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-netrexx.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-launcher.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-junit.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jsch.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jmf.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jdepend.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-javamail.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jai.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-icontract.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-commons-net.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-commons-logging.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-resolver.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-regexp.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-oro.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-log4j.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-bsf.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-bcel.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-antlr.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\jdk\lib\tools.jar
    [deployDecisionServices] Source file exists. Read Java source file names.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/ObjectFactory.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChain.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainType.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainTypeImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequest.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestType.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestTypeImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponse.java to the list of Java sources to compile.
    [deployDecisionServices] Adding D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponseImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Compiled class(es) "D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/ObjectFactory.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChain.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainType.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainTypeImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequest.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestType.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestTypeImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponse.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponseImpl.java"
    [deployDecisionServices] Error in ant execution: Java compilation failed.
    Failed to compile file(s) "D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/ObjectFactory.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChain.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainType.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainTypeImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequest.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestType.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestTypeImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponse.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponseImpl.java".
    Exception reported is: D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated\SalesRequestTypeImpl.java:87: Class generated.ItemsType not found.
    return (ItemsType) super.getElement("items", "http://xmlns.oracle.com/ExpenseRequest", (oracle.xml.jaxb.JaxbNode)obj, 4);
    ^
    1 error
    Please verify that file D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/ObjectFactory.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChain.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainType.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesApprovalChainTypeImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequest.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestType.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesRequestTypeImpl.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponse.java, D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\decisionservices\DecisionService\war\WEB-INF\classes\generated/SalesResponseImpl.java is valid java file or if all required libraries are included in your classpath.
    classpath: D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\lib\ojc.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-oracle.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel-ant.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel-common.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\lib\orabpel-thirdparty.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\webservices\lib\orawsdl.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\lib\xmlparserv2.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\lib\xml.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\j2ee\home\lib\oc4j-internal.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\j2ee\home\lib\adminclient.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\integration\bpm\support\files;D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\lib\jdev.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\xml-apis.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\xercesImpl.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\jakarta-oro-2.0.8.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\commons-net-1.3.0.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-xslp.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-xalan1.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-weblogic.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-vaj.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-trax.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-swing.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-stylebook.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-starteam.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-nodeps.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-netrexx.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-launcher.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-junit.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jsch.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jmf.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jdepend.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-javamail.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-jai.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-icontract.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-commons-net.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-commons-logging.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-resolver.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-regexp.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-oro.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-log4j.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-bsf.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-apache-bcel.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\ant\lib\ant-antlr.jar;D:\Oracle-SaaS\Downloads\jdevstudio10131\jdk\lib\tools.jar
    BUILD FAILED
    D:\Oracle-SaaS\Downloads\jdevstudio10131\jdev\mywork\BPELIntegrationwithBusinessRules\SalesRequest1\build.xml:116: Error while deploying decision services on server "bg1ws0044"
    Total time: 9 seconds

  • Error while deploying Decision Service.

    Hi!! ))
    I work with 10.1.3.1 and i try to deploy my process (here it is http://starangor.pix.ru/i/users/s/t/starangor/normal/2af18ff05be954ed8e2cd3aa2ba0ef58.jpg).
    Domain.log:
    <2007-05-23 14:42:05,720> <INFO> <default.collaxa.cube.services> <DeploymentListener::onProcessUninitAspect> Path = /default/BPELrulishe2/1.0
    <2007-05-23 14:42:07,594> <INFO> <default.collaxa.cube.compiler> validating "D:\product\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\.bpel_BPELrulishe2_1.0_2e9b4fe06711807cfad74cf82d933058.tmp\BPELrulishe2.bpel" ...
    <2007-05-23 14:42:37,677> <INFO> <default.collaxa.cube.engine.deployment> <CubeProcessFactory::generateProcessClass>
    Process "BPELrulishe2" (revision "1.0") successfully compiled.
    <2007-05-23 14:42:37,974> <INFO> <default.collaxa.cube.engine.deployment> Process "BPELrulishe2" (revision "1.0") successfully loaded.
    <2007-05-23 14:42:37,974> <INFO> <default.collaxa.cube.services> <DeploymentListener::onProcessDeployAspect> Path = /default/BPELrulishe2/1.0
    <2007-05-23 14:42:38,786> <INFO> <default.collaxa.cube.services> <DeploymentListener::onProcessInitAspect> Path = /default/BPELrulishe2/1.0
    Message from Apache Ant - Log:
    Buildfile: D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\build.xml
    validateTask:
    [echo]
    | Validating workflow
    [validateTask] Validation of workflow task definitions is completed without errors
    deployProcess:
    [echo]
    | Deploying bpel process BPELrulishe2 on delalande.int.rdtex.ru, port 80
    [deployProcess] Start of validating settings
    [deployProcess] End of validating settings
    [deployProcess] Start of the deployment of process BPELrulishe2
    [deployProcess] Deploying process D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\output\bpel_BPELrulishe2_1.0.jar
    [deployProcess] Accesing URL /integration/services/deploy/deployHttpClientProcess.jsp
    [deployProcess] bpel_BPELrulishe2_1.0.jar deployed successfully.
    [deployProcess] End of the deployment
    [deployProcess] Done deploying process BPELrulishe2
    [deployProcess] Successfully deployed the process "BPELrulishe2" on server "delalande.int.rdtex.ru" and port "80"
    deployTaskForm:
    [echo]
    | Deploying workflow form for BPELrulishe2 on delalande.int.rdtex.ru, port 80
    [deployTaskForm] Start of deploying forms
    [deployTaskForm] End of deploying forms
    [deployTaskForm] There are no forms to deploy
    deployDecisionServices:
    [echo]
    | Deploying decision services for BPELrulishe2 on delalande.int.rdtex.ru, port 80
    [deployDecisionServices] Start of deploying decision services.
    [deployDecisionServices] Deploy decision service in directory D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService
    [deployDecisionServices] Start deploying decision service from directory D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService to J2EE context /rules/default/BPELrulishe2/1.0/DecisionService
    [deployDecisionServices] Replace placeholders in file D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl
    [deployDecisionServices] Replace placeholders in file D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl done.
    [deployDecisionServices] Replace placeholders in file D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp
    [deployDecisionServices] Copy operation failed for D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp, error: D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp
    [deployDecisionServices] Error in ant execution: Replace placeholders in JSP file failed
    BUILD FAILED
    D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELrulishe2\build.xml:116: Error while deploying decision services on server "delalande.int.rdtex.ru"
    Total time: 56 seconds
    Why it can't find GetDecisionServiceInfo.jsp?
    and where can I get it?

    At this time i create Desicion Service das you say with command prompt.
    Just in case i paste all content of command prompt
    and that was in cmd:
    Wnen i create it in wizard and before click Finish:
    <RuleEngineFactory::loadConfiguration> Load configuration from DecisionServiceCo
    nfiguration.xml
    <RuleEngineFactory::loadConfiguration> DecisionServiceConfiguration.xml not foun
    d, intialize with minimal configuration.
    <RuleEngineFactory::loadConfiguration> Try to load rule engine provider Oracle
    <RuleEngineFactory::loadConfiguration> Try to load fact context OracleJaxb
    <RuleEngineFactory::loadConfiguration> Loaded 1 rule providers and 1 fact contex
    t providers.
    java.lang.NullPointerException
    at oracle.tip.tools.ide.pm.rule.wizard.DecisionServiceWizard.wizardFinis
    hed(DecisionServiceWizard.java:286)
    at oracle.bali.ewt.wizard.BaseWizard.processWizardEvent(Unknown Source)
    at oracle.bali.ewt.wizard.BaseWizard.processEventImpl(Unknown Source)
    at oracle.bali.ewt.LWComponent.processEvent(Unknown Source)
    at oracle.bali.ewt.wizard.BaseWizard.doFinish(Unknown Source)
    at oracle.bali.ewt.wizard.BaseWizard$Action.actionPerformed(Unknown Sour
    ce)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:18
    49)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
    a:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:234)
    at java.awt.Component.processMouseEvent(Component.java:5488)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:163)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:153)
    at java.awt.Dialog$1.run(Dialog.java:515)
    at java.awt.Dialog.show(Dialog.java:536)
    at java.awt.Component.show(Component.java:1300)
    at java.awt.Component.setVisible(Component.java:1253)
    at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
    at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
    at oracle.tip.tools.ide.pm.rule.wizard.DecisionServiceWizard.display(Dec
    isionServiceWizard.java:218)
    at oracle.tip.tools.ide.pm.addons.ExtensionsDNDDropHandler.showDecisionS
    erviceWizard(ExtensionsDNDDropHandler.java:217)
    at oracle.tip.tools.ide.pm.addons.ExtensionsDNDDropHandler.handleSwimLan
    eDrop(ExtensionsDNDDropHandler.java:202)
    at oracle.tip.tools.ide.pm.addons.ExtensionsDNDDropHandler.handleDrop(Ex
    tensionsDNDDropHandler.java:92)
    at oracle.tip.tools.ide.common.graph.DefaultGraphPaneDropTargetListener.
    routeToDropHandler(DefaultGraphPaneDropTargetListener.java:264)
    at oracle.tip.tools.ide.common.graph.DefaultGraphPaneDropTargetListener.
    handleDrop(DefaultGraphPaneDropTargetListener.java:249)
    at oracle.tip.tools.ide.pm.bpelgraph.collaxalaf.BPELGraphPaneDropTargetL
    istener.handleDrop(BPELGraphPaneDropTargetListener.java:215)
    at oracle.tip.tools.ide.common.graph.DefaultGraphPaneDropTargetListener.
    drop(DefaultGraphPaneDropTargetListener.java:322)
    at java.awt.dnd.DropTarget.drop(DropTarget.java:430)
    at sun.awt.dnd.SunDropTargetContextPeer.processDropMessage(SunDropTarget
    ContextPeer.java:500)
    at sun.awt.dnd.SunDropTargetContextPeer.access$800(SunDropTargetContextP
    eer.java:53)
    at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchDropEven
    t(SunDropTargetContextPeer.java:812)
    at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchEvent(Su
    nDropTargetContextPeer.java:736)
    at sun.awt.dnd.SunDropTargetEvent.dispatch(SunDropTargetEvent.java:29)
    at java.awt.Component.dispatchEventImpl(Component.java:3826)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212
    at java.awt.LightweightDispatcher.processDropTargetEvent(Container.java:
    3963)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3817)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    And message that appear after i click finish in create Decision Service wizard:
    <DecisionServiceBuilder::populateMaps> Add rule engine RuleEngineSTAS
    <RuleEngineFactory::createRuleEngine> Create rule engine for RuleEngineSTAS, pro
    vider is Oracle
    <OracleRuleEngine::getLastModified> Check timestamp of repository /D:/temp/StasS
    OA/sample_repository
    <OracleRuleEngine::<init>> Create new rule engine for RuleEngineSTAS, repository
    type File
    <DecisionServiceBuilder::populateMaps> Add decision service Dec
    <DecisionServiceBuilder::createPartnerLink> BpelProcess.xsd already exists in /D
    :/JDEV10132/jdev/mywork/ApplicationNLC/BPELDEC/bpel/
    <DecisionServiceBuilder::createPartnerLink> Copy and replace DecisionService.xsd
    to /D:/JDEV10132/jdev/mywork/ApplicationNLC/BPELDEC/bpel/\DecTypes.xsd
    <DecisionServiceBuilder::createPartnerLink> Create PartnerLink WSDL for Dec in d
    irectory /D:/JDEV10132/jdev/mywork/ApplicationNLC/BPELDEC/bpel/
    <WSDLGenerator::createWSDL> Create client side WSDL for service Dec in directory
    /D:/JDEV10132/jdev/mywork/ApplicationNLC/BPELDEC/bpel/
    <WSDLGenerator::createWSDL> Create Definition object for Dec, targetNamespace: h
    ttp://xmlns.oracle.com/BPELDEC/Dec
    <WSDLGenerator::createDefinition> Create client side WSDL for Dec, targetNamespa
    ce=http://xmlns.oracle.com/BPELDEC/Dec
    <RuleEngineFactory::createRuleEngine> Create rule engine for RuleEngineSTAS, pro
    vider is Oracle
    <OracleRuleEngine::getLastModified> Check timestamp of repository /D:/temp/StasS
    OA/sample_repository
    <OracleRuleEngine::<init>> Create new rule engine for RuleEngineSTAS, repository
    type File
    <OracleRuleEngine::getRuleCatalog> Lookup rule catalog OrderBookingStas/INITIAL
    <OracleRuleEngine::getRuleCatalogs> Start loading rule catalogs.
    <OracleRuleEngine::getRuleCatalogs> Initailize rule repository.
    <OracleRuleEngine::initRuleRepository> Connect to File Repository at /D:/temp/St
    asSOA/sample_repository
    <OracleRuleEngine::getRuleCatalogs> Load catalogs.
    <OracleRuleEngine::getRuleCatalog> Found rule catalog OrderBookingStas/INITIAL,
    return.
    <OracleRuleCatalog::getRuleSet> Lookup ruleset RRR
    <OracleRuleCatalog::getRuleSets> Load rulesets.
    <OracleRuleCatalog::getRuleSets> Load rulesets done.
    <OracleRuleCatalog::getRuleSet> Found ruleset RRR, return.
    <RuleEngineUtil::getFactTypeSchemaFiles> Resolve fact XSD's from XSD's in direct
    ory /D:/JDEV10132/jdev/mywork/ApplicationNLC/BPELDEC/bpel/\rules\xsd
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Initialize data model.
    <OracleDataModel::getFactTypes> Import 21 fact types into data model.
    <OracleDataModel::getFactTypes> 3 XML facts imported, Done.
    <RuleEngineUtil::resolveSchemaLocation> Resolve schema for fact stasrule.STASRUL
    E from file:/D:/temp/StasSOA/OrderBookingStas/STAS.xsd to file:/D:/JDEV10132/jde
    v/mywork/ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Lookup fact type stasrule.STASRULE
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <OracleDataModel::getFactType> Return fact type stasrule.STASRULE
    <OracleDataModel::getXSD> Get XSD for fact stasrule.STASRULE
    <OracleDataModel::getXSD> Try to build XSD from file:/D:/JDEV10132/jdev/mywork/
    ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getXSD> Find XSD node for stasrule.STASRULE
    <OracleDataModel::findXSDNode> XSD node element STASRULE
    <WSDLGenerator::createDefinition> Add port type for pattern Assert
    <WSDLGenerator::createDefinition> Add port type for pattern AssertExecute
    <WSDLGenerator::createDefinition> Add port type for pattern AssertExecuteWatchSt
    ateful
    <WSDLGenerator::createDefinition> Add port type for pattern AssertExecuteWatchSt
    ateless
    <WSDLGenerator::createDefinition> Add port type for pattern Watch
    <WSDLGenerator::createDefinition> Add WSIF binding for Dec
    <WSDLGenerator::createWSDL> Write Definition object to /D:/JDEV10132/jdev/mywork
    /ApplicationNLC/BPELDEC/bpel/;Dec.wsdl
    <DecisionServiceBuilder::prepareForDeployment> BPEL project directory: D:\JDEV10
    132\jdev\mywork\ApplicationNLC\BPELDEC\bpel
    <DecisionServiceBuilder::prepareForDeployment> BPEL project Rules XSD directory:
    D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELDEC\bpel\rules\xsd
    <DecisionServiceBuilder::prepareForDeployment> Create configuration file D:\JDEV
    10132\jdev\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\classe
    s\decisionservices.xml
    <DecisionServiceBuilder::createServiceConfiguration> Set file repository locatio
    n to repositoryresource:sample_repository
    <DecisionServiceBuilder::prepareForDeployment> Copy rule repository from D:\temp
    \StasSOA\sample_repository to D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELDEC\de
    cisionservices\Dec\war\WEB-INF\repository\sample_repository
    <DecisionServiceBuilder::prepareForDeployment> Create WSDL file D:\JDEV10132\jde
    v\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\wsdl\Dec.wsdl
    <WSDLGenerator::createWSDL> Create server side WSDL for service Dec in directory
    D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-IN
    F\wsdl
    <WSDLGenerator::createWSDL> Create Definition object for Dec, targetNamespace: h
    ttp://xmlns.oracle.com/BPELDEC/Dec
    <WSDLGenerator::createDefinition> Create server side WSDL for Dec, targetNamespa
    ce=http://xmlns.oracle.com/BPELDEC/Dec
    <WSDLGenerator::createDefinition> Add port type for pattern Assert
    <WSDLGenerator::createDefinition> Add port type for pattern AssertExecute
    <WSDLGenerator::createDefinition> Add port type for pattern AssertExecuteWatchSt
    ateful
    <WSDLGenerator::createDefinition> Add port type for pattern AssertExecuteWatchSt
    ateless
    <WSDLGenerator::createDefinition> Add port type for pattern Watch
    <WSDLGenerator::createDefinition> Add SOAP binding for Dec, address: http://${ho
    stname}:${port}/rules/${domain_id}/${process_id}/${process_revision}
    <WSDLGenerator::createWSDL> Write Definition object to D:\JDEV10132\jdev\mywork\
    ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\wsdl;Dec.wsdl
    <OracleRuleEngine::getRuleCatalog> Lookup rule catalog OrderBookingStas/INITIAL
    <OracleRuleEngine::getRuleCatalogs> Start loading rule catalogs.
    <OracleRuleEngine::getRuleCatalogs> Initailize rule repository.
    <OracleRuleEngine::initRuleRepository> Connect to File Repository at /D:/temp/St
    asSOA/sample_repository
    <OracleRuleEngine::getRuleCatalogs> Load catalogs.
    <OracleRuleEngine::getRuleCatalog> Found rule catalog OrderBookingStas/INITIAL,
    return.
    <RuleEngineUtil::getFactTypeSchemaFiles> Resolve fact XSD's from XSD's in direct
    ory D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELDEC\bpel\rules\xsd
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Initialize data model.
    <OracleDataModel::getFactTypes> Import 21 fact types into data model.
    <OracleDataModel::getFactTypes> 3 XML facts imported, Done.
    <RuleEngineUtil::resolveSchemaLocation> Resolve schema for fact stasrule.STASRUL
    E from file:/D:/temp/StasSOA/OrderBookingStas/STAS.xsd to file:/D:/JDEV10132/jde
    v/mywork/ApplicationNLC/BPELDEC/bpel/rules/xsd/STAS.xsd
    <OracleDataModel::getFactTypes> Started.
    <OracleDataModel::getFactTypes> Fact Types already loaded.
    <DecisionServiceBuilder::prepareForDeployment> Copy 3 files to directory D:\JDEV
    10132\jdev\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\wsdl
    <DecisionServiceBuilder::copyFiles> Copy STASRULES.xsd to directory D:\JDEV10132
    \jdev\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\wsdl
    <DecisionServiceBuilder::copyFiles> STASRULES.xsd doesn't exist at file:/D:/temp
    /StasSOA/OrderBookingStas/STASRULES.xsd
    <DecisionServiceBuilder::copyFiles> Copy STAS.xsd to directory D:\JDEV10132\jdev
    \mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\wsdl
    <DecisionServiceBuilder::copyFiles> Copy OrderBookingRules.xsd to directory D:\J
    DEV10132\jdev\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WEB-INF\wsd
    l
    <DecisionServiceBuilder::copyFiles> OrderBookingRules.xsd doesn't exist at file:
    /D:/temp/StasSOA/OrderBookingStas/OrderBookingRules.xsd
    <DecisionServiceBuilder::prepareForDeployment> Not copying D:\JDEV10132\jdev\myw
    ork\ApplicationNLC\BPELDEC\bpel\rules\xsd\STAS.xsd, file already exists in direc
    tory D:\JDEV10132\jdev\mywork\ApplicationNLC\BPELDEC\decisionservices\Dec\war\WE
    B-INF\wsdl
    java.lang.NullPointerException
    at java.io.File.<init>(File.java:277)
    at oracle.bpel.services.rules.util.DecisionServiceBuilder.prepareForDepl
    oyment(DecisionServiceBuilder.java:717)
    at oracle.tip.tools.ide.pm.rule.wizard.DecisionServiceWizard.wizardFinis
    hed(DecisionServiceWizard.java:403)
    at oracle.bali.ewt.wizard.BaseWizard.processWizardEvent(Unknown Source)
    at oracle.bali.ewt.wizard.BaseWizard.processEventImpl(Unknown Source)
    at oracle.bali.ewt.LWComponent.processEvent(Unknown Source)
    at oracle.bali.ewt.wizard.BaseWizard.doFinish(Unknown Source)
    at oracle.bali.ewt.wizard.BaseWizard$Action.actionPerformed(Unknown Sour
    ce)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:18
    49)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
    a:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:234)
    at java.awt.Component.processMouseEvent(Component.java:5488)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:163)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:153)
    at java.awt.Dialog$1.run(Dialog.java:515)
    at java.awt.Dialog.show(Dialog.java:536)
    at java.awt.Component.show(Component.java:1300)
    at java.awt.Component.setVisible(Component.java:1253)
    at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
    at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
    at oracle.tip.tools.ide.pm.rule.wizard.DecisionServiceWizard.display(Dec
    isionServiceWizard.java:218)
    at oracle.tip.tools.ide.pm.addons.ExtensionsDNDDropHandler.showDecisionS
    erviceWizard(ExtensionsDNDDropHandler.java:217)
    at oracle.tip.tools.ide.pm.addons.ExtensionsDNDDropHandler.handleSwimLan
    eDrop(ExtensionsDNDDropHandler.java:202)
    at oracle.tip.tools.ide.pm.addons.ExtensionsDNDDropHandler.handleDrop(Ex
    tensionsDNDDropHandler.java:92)
    at oracle.tip.tools.ide.common.graph.DefaultGraphPaneDropTargetListener.
    routeToDropHandler(DefaultGraphPaneDropTargetListener.java:264)
    at oracle.tip.tools.ide.common.graph.DefaultGraphPaneDropTargetListener.
    handleDrop(DefaultGraphPaneDropTargetListener.java:249)
    at oracle.tip.tools.ide.pm.bpelgraph.collaxalaf.BPELGraphPaneDropTargetL
    istener.handleDrop(BPELGraphPaneDropTargetListener.java:215)
    at oracle.tip.tools.ide.common.graph.DefaultGraphPaneDropTargetListener.
    drop(DefaultGraphPaneDropTargetListener.java:322)
    at java.awt.dnd.DropTarget.drop(DropTarget.java:430)
    at sun.awt.dnd.SunDropTargetContextPeer.processDropMessage(SunDropTarget
    ContextPeer.java:500)
    at sun.awt.dnd.SunDropTargetContextPeer.access$800(SunDropTargetContextP
    eer.java:53)
    at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchDropEven
    t(SunDropTargetContextPeer.java:812)
    at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchEvent(Su
    nDropTargetContextPeer.java:736)
    at sun.awt.dnd.SunDropTargetEvent.dispatch(SunDropTargetEvent.java:29)
    at java.awt.Component.dispatchEventImpl(Component.java:3826)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212
    at java.awt.LightweightDispatcher.processDropTargetEvent(Container.java:
    3963)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3817)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

  • Error while deploying decision services

    Hi,
    I am trying to access rule engine through decision service. it is giving build failed at the time of deployment.
    it is telling "BUILD FAILED Error while deploying decision services on server "localhost" "
    Any Idea?
    Thanks,
    Nimisha

    There should be more errors in the build process log?
    Also, ensure you don't have spaces in your Jdev / workspace directory path? If you do, close Jdev and move it all to a directory without spaces.
    I have seen problems when deploying from a directory where there is spaces in the directory path.
    hope that helps
    Jon

  • Event Log stopped working - Error 1747 : The Authentication Service is Unknown

    I reccently noticed that my scheduled tasks were no longer running. I tried to bring up the task scheduler and it said the service was not running. I checked the service and sure enough, it was not running. I tried to start it and it failed because the windows event log service, which is a dependency, was also not running. I tried to start the event log service, and gave the error above in the subject line.
    The event log service uses a log on of "Local Service". There are other services that use the same log on and they start up with no problem. I have searched the internet for a solution to this and have tried several things I found with no luck. One was to run SFC, another was to delete the Windows/Logs and Windows/System32/Logfiles folders so they would be re-created on startup. I also tried subinacl to reset the ACLs on registry branches and the subfolders of %SystemDrive% as recommeded in another forum.
    I am running Vista Home Premium and all the latest updates have neen applied. Anyone have any further ideas? (short of re-installing Vista).
    Thanks.

    Hi there Robin. I am an IT Technician & felt that I needed to begin communication with you regarding this issue. I recently made a post in this thread detailing my issues & found resolution. I just wanted to share my post with you & hope that the information is useful to others that need to resolve these issues without re-installing their operating systems. Please find my post below:
    Hi all. I am an IT technician & have recently been troubleshooting a customer's Windows Vista Home Premium laptop in a wireless home network.
    In a nutshell the laptop suddenly stopped connecting to the wireless router; upon investigation I found lots of windows services were not starting; this sent me on a bit of a wild goose chase as this showed all signs of some kind of trojan / malware infection hogging the system. Here are some of the things I saw:
    1). Norton 360 wasn't even running correctly & I was unable to view it's firewall status.
    2). Windows firewall was disabled & I was unable to start it (service failed error message).
    3). I was unable to view windows event logs & received "Error 1747 : The Authentication Service is Unknown"
    4). Windows Side Bar was all blanked out & not showing any gadgets
    5). I attempted a system restore but that failed (I saw references in system restore that the Bonjour service had been un-installed)
    I did loads of further investigation & found this thread. It would appear that removing, or even trying to remove / un-install the Bonjour service may cause the above mentioned issues in windows Vista. I have not seen this kind of errata in windows XP.
    I have heard of people pulling their hair out & re-installing the operating system possibly due to experiencing these issues.
    Please Read On.... 
    Resolution that worked for me:
    I ran the Winsock corruption fix that is mentioned in previous threads as per microsoft's instructions found at the following URL: http://support.microsoft.com/kb/811259 
    Manual steps to recover from Winsock2 corruption for Windows Vista users
    Winsock corruption can cause connectivity problems. To resolve this issue by using Network Diagnostics in Windows Vista, follow these steps:
    1.
    Click , and then click Network.
    2.
    Click Network and Sharing Center.
    3.
    In the Network and Sharing Center box, click Diagnose and Repair.
    Note You may also access the Network and Sharing Center in Control Panel.
    If the Network and Diagnostic tool was unable to find a problem, you can manually repair or reset Winsock.
    Manual steps to repair or to reset Winsock for Windows Vista users
    1.
    Click , type cmd in the Start Search box, right-click cmd.exe, click Run as administrator, and then press Continue.
    2.
    Type netsh winsock reset at the command prompt, and then press ENTER.
    Note If the command is typed incorrectly, you will receive an error message. Type the command again. When the command is completed successfully, a confirmation appears, followed by a new command prompt. Then, go to step 3.
    3.
    Type exit, and then press ENTER
    Hey Presto!!!! After re-booting everything is back online & all necessary windows services & norton 360 are starting as normal.
    Further Information on Bonjour Service:
    http://en.wikipedia.org/wiki/Bonjour_(software)
    As I understand & in my experience the Bonjour service is installed as a sub-aplet with certain 3rd party software applications including Apples itunes & Adobe newest Creative Suite 3 installs Apple’s Bonjour service even if you don’t install Version Cue. Its main goal is to provide zero-configuration connectivity between Version Cue server and the suite’s applications.
    A bit more CSi & i've established how to un-install Bonjour service; there is a great topic on this subject at the following URL: http://www.raymond.cc/blog/archives/2008/02/10/how-to-uninstall-or-remove-bonjour-mdnsresponderexe/
    Thanks to all for your post & input...it has really helped to get this issue resolved (well for me anyway) & has of course save a re-install!!!!
    I will keep an eye on this thread...please post your resolutions / experiences to help others.
    Kind regards

  • Error 1075: The dependency service does not exist or has been marked for deletion

    Windows 7 Pro laptop will not connect to corporate domain. Multiple identical twin laptops have no problem.
    Best suggestion so far has been to leave the domain and rejoin it, BUT the relevant buttons are grayed out and the comment says "Note: The identification of the computer cannot be changed because:- The Workstation service is not running. Open the Services
    snap-in (services.msc) to ensure it is running and set its Startup Type as "Automatic"."
    In services.msc the Workstation service is already set to Automatic but is not started. When I try to start it manually the response is "Windows could not start the Workstation service on Local Computer." and then "Error 1075: The dependency service does
    not exist or has been marked for deletion."
    Rebooting gets me nowhere.
    In all other respects that laptop appears fine and can connect to the Internet, but NOT to the network. I have brought it and a twin laptop home to try on my domestic network and get the same results.
    Any ideas, please?

    Hi,
    Let us go to services.msc and navigate to Network Store Interface Service. Please check whether this service has been set to Automatic and turned on.
    Kim Zhou
    TechNet Community Support

  • Windows could not start the FLEXnet Licensing Service service on Local Computer Error 1068: The dependency service or group failed to start.

    Today I installed Adobe Director 11.5. I received a couple of errors in the FLEXnet Licensing Service. It looks It could not start. I tried to download the Licence fix what I found on Google but that doesn't work, so I checked the 'Service' at service (windows).
    It's status is empty. When I double click on the FLEXnet Licensing Service, clicked on start at the opened window and an error is coming: 
    Windows could not start the FLEXnet Licensing Service service on Local Computer
    Error 1068: The dependency service or group failed to start.
    I don't understand what it says with this message, only that it is impossible to start. However, that is not what I am trying of course, I want to start the FLEXnet Licensing Service, service. 
    Re-installing of the software, doesn't make any change. How can I start it so Director is also working?

    Hi Don1233,
    Please consider seek help at the software vendor side.
    For the services didn't start, follow the suggestions posted by Elton in the thread below:
    https://social.technet.microsoft.com/Forums/en-US/e35da253-f0df-41d1-8df2-b73fa54742a0/windows-could-not-start-the-flexnet-licensing-service-service-on-local-computer-error-1068-the?forum=w7itproinstall
    Best regards
    Michael Shao
    TechNet Community Support

  • Check Point VPN-1 Securemote service causes Error 1075: The dependency service does not exist or has been marked for deletion

    Has anyone ever managed to solve this one?
    We have a problem on Windows 7 SP1 32bit systems.
    when we try to start the Check Point VPN-1 Securemote service we get this message:
    Error 1075: The dependency service does not exist or has been marked for deletion
    When we install a clean Windows 7 from an ISO the checkpoint client without any issues
    when we use the same Windows Setup source and install it from SCCM TS - the CheckPoint client doesn't start
    the client we're installing is : CP_SeucRemoteSecureClient_NGX_R30_HFA3
    which is supported for Win7 x86
    other than that there are no special prerequisites for the CheckPoint client. therefore we know the problem is local :/
    we tried to isolate and minimize the cause of the issues by trying to see the differences between a clean installation from ISO and a clean installation from SCCM
    We know for sure the problem is not from SCCM Client, Programs and Features, Updates, Group Policy
    it seems like the configuration is the same but we can't seem to find any online solution about this issue
    any suggestions?
    thanks
    Tamir Levy
    Tamir Levy

    Hi,
    Please check if all the dependencies services are running, if not, please start them:
    DNS Server
    Remote Procedure Call (RPC)
    Netlogon
    Server
    Workstation
    Any error message, please post back.
    You can also check solution in this article:
    http://support.microsoft.com/kb/269375
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • How do i get the decision service wizard .? step 2  in  AutoLoanBroker.pdf.

    I am trying to Modelling Auto Loan Flow Process Using JDeveloper Studio .I followed the procedure given in the ink http://download.oracle.com/docs/cd/E10291_01/doc.1013/e10538/weblogic.htm#B
    In the step 5 of the Modelling Auto Loan Flow Process Using JDeveloper Studio .
    The step 2 in AutoLoanBroker.pdf.I tried to drag and drop the decision service actrivity to the partnerlink section. it does not drop.When i try to drop the decide activity after receiveinput node of AutoLoanFlow process .I get the edit Decide wizard. The procedure is not clear .
    The autoLoanDemo is in C:\product\10.1.3.1\OracleAS_1\bpel\samples\demos\AutoLoanDemo
    How do i get the decision service wizard .? which is in step 2 of AutoLoanBroker.pdf.

    Apple doesn't repair iPads. They only provide a replacement refurbished iPad (for about 1/2 the cost of a new iPad.
    Do a Google search looking for a 3rd party iPad repair company in Nova Scotia.
     Cheers, Tom

  • Business Rules Error when Decision Function surfaced as WebService in BPM

    To use a BusinessRule as from a Business Rules activity,it needs to be surfaced as a WebService.
    I've run into an issue where as soon as I check that box and save, the BusinessRule in question goes into a error mode when viewed from the BPM Project Manager (which is why this question is posted here).
    The scenario is this:
    My types are defiend in XSD. There is a SimpleType - FooStepTypeType - which is a retricted xs:string, the common way top create an enumeration. I import this as an XML fact, it creates a Enum bucketset, which is perfect. I create a decision function - DecisionFunction1 - which has an input parameter of this type and a boolean output. I set up a simple decision table to use the input and assert the output. The editor is happy.
    At this point, I can't use the DF in my process, as it's not exposed a service, and won't be selectable via the the Properties/Implementation of a Business Rules activity.
    A soon as I mark the DF as a WebService and save it, an the rule disappears from the Rules section of the Business Catalog and reappears at the root of the catalog in error. In some cases it can't be edited.
    Hovering over the error file produced this error message:
    The argument ‘step’ of decision function ‘DecisionFunction1’ could not build because of ‘BPM-71517: Unable to identify the parameter QName. Cause: ‘FooStepTypeType. Action: Make sure that the decision function parameter is of XML type and exactly one XML Schema Element exists that represents the parameter’.
    My XSD previously did not contain a freestanding element of this type, but had elements defined in another complex type of this type. Adding a freestanding element didn't change anything. In fact it seems that elements are not avaialble to be imported as XMLFacts, only types.
    At this point, if the Rules editor is still open, the DF can be "unserviced" and after saving may be recoverable with a JDev restart. If not, manually removing the DF from the .rules xml file can help recover the file so that it can be edited again.
    SO: THE QUESTIONS.
    Why can't I use a simpleType as an input parameter for a DF exposed as a WebService? What is BPM-71517 asking me to do exactly? I can't find any references to it via searching. Why does eveything seem fine until I expose it?
    Addendum - using JDev 11.1.1.4.0 with BPM tools 11.1.1.4.0.5682
    Addendum2 - upgraded to 11.1.1.5.0 and the problem is still there.....
    TIA,
    Bill
    Edited by: wylderbeast on May 20, 2011 9:38 AM
    Edited by: wylderbeast on May 20, 2011 10:09 AM
    Edited by: wylderbeast on May 31, 2011 3:22 PM

    Further invesitgation bears this problem out.
    Oracle support recommend wrapping the SimpleType in a ComplexType. This does work, but now I have an extra wrapper element to deal with. I either have to use the wrapped type in my other complex, composed Types and/or add an external wrapping element when trying to create Business Services in BPM to call the BusinessRules I've created.
    This is a bit messy.
    To be clear, this does not seem to be an issue with Business Rules; the BR editor and generation of Facts (including simple restricted types -> JAXB 2.0/Java Enumerations) seems to work correctly. There seems to be an issue exposing DFs as Services. The code which generated the WSDL and its supporting types seems to choke on restricted SimpleTypes.
    As a side note, it seems that HumanTasks have a similar limitation
    Edited by: wylderbeast on May 31, 2011 3:27 PM

  • Business Rule error: Accounts are not available in the rule table

    Hi everybody,
    I have a problem running the Business Rule for the profit/loss copy to the equity account.
    The Business Rule I set reads from all P&L accounts, P&L specific flow, acual category, all datasources and then it writes everything keeping the source settings apart from the account destination (the equity profit/loss account) and the flow destination (I write in two different flows, so the rule is made up of two equal lines differing only in the flow destination). "PROFIT" is the ID I chose.
    Then I created the related script logic (ID=CALCACCOUNT):
    *RUN_PROGRAM CALC_ACCOUNT
    CATEGORY_M = %CATEGORY_M_SET%
    CURRENCYLABEL = %CURRENCYLABEL_SET%
    TID_RA = %TIME_SET%
    CALC=PROFIT
    *ENDRUN_PROGRAM
    Finally, the prompt ( process chain: CPMB/RUNCALCACCOUNT):
    PROMPT(SELECTINPUT,,,,"CATEGORY_M,CURRENCYLABEL,TIME")
    TASK(/CPMB/RUNCALCACCOUNT_LOGIC,SUSER,%USER%)
    TASK(/CPMB/RUNCALCACCOUNT_LOGIC,SAPPSET,%APPSET%)
    TASK(/CPMB/RUNCALCACCOUNT_LOGIC,SAPP,%APP%)
    TASK(/CPMB/RUNCALCACCOUNT_LOGIC,SELECTION,%SELECTION%)
    TASK(/CPMB/RUNCALCACCOUNT_LOGIC,LOGICFILENAME,CALCACCOUNT.LGF)
    But anytime I run the package it fails giving me the message error: "Accounts are not available in the rule table".
    I tried every possible change but nothing; if someone could help me somehow I'd be really grateful!!
    Thanks
    Filippo

    Hi James,
    Thanks for your quick response. There is no currency dimension in the application... I've tested with the correct businessrule as CALC value, but this didn't do the trick.
    Any other suggestions?
    Regards,
    Vincent

Maybe you are looking for