SOADEMO - deploying SOAOrderBooking build.xml "Could not get Deployment M..

Hi All, I have seen a few issues with the SOA demo but still not able to resolve my issue so posting a thread.
First off using SOA suite 10.1.3.1.0 and Jdev 10.1.3.1.0, so the same versions. Downloaded the demo from the same oracle page as downloaded suite from etc so should be compatible. Installed SOA Suite on an OE Linux 4 update 5 install. Using jdev on Vista laptop. I appreciate that these are not the most current versions but they should work as on the Oracle site and I am not able to install newer versions for the next few weeks.
Going through the install guide for the demo and hitting a problem with deploying the build.xml for SOAOrderBooking as a few others have. The first error I am getting is:
[deployDecisionServices] Failed at "Could not get DeploymentManager".
I have checked the build.properties file which matches exactly that from the 'SelectManufacturer' which deployed fine.
One of the main differences between these two is that the 'SelectManufacturer' does not have any decision services.
One thread I saw suggested changing in the properties file
platform=ias_10g
#platform=oc4j_10g
to
# platform=ias_10g
platform=oc4j_10g
I did do this and the deployment when further but then fails at a later stage. I should not have to make this change anyway as I am using ias_10g so I have gone back to the original. Why would this change allow me to get further?? Appreciate any comments on this bit apart from my general problem.
Any ideas why the deployment of the decision services would fail?
I have spent a fair bit of time as you do trying to resolve it but no luck so any help greatly appreciated. Searched google, metalink, technet etc.
FYI I have edited the properties file to use a different port for HTTP etc. Again these settings worked fine for 'SelectManufacturer' so do not think there is a problem with the URI being used.
Also appreciate on debugging could anyone tell me under the IAS control panel which log component I should set to get some more debug info on this deployment error. I have tried a few without success and cannot find a clear explanation of the various component logs.
Thanks for reading my post Cel

Hi James, thanks again for your reply.
I went on to the linux server and ran the below to validate the URI:
/oracle/product/10.1.3.1/OracleAS_1/jdk/bin/java -jar /oracle/product/10.1.3.1/OracleAS_1/j2ee/home/admin_client.jar deployer:oc4j:opmn://del4100.cel:6003/appserver/oc4j_soa oc4jadmin <password> -validateURI
This is the same command being executed by jdeveloper when I try to deploy the decision service.
I get the same error as with jdev:
Failed at "Could not get DeploymentManager".
I had a further look at the command and omitted the name of the application server instance which in my case is 'appserver', the default when you install SOA Suite.
so now ran:
/oracle/product/10.1.3.1/OracleAS_1/jdk/bin/java -jar /oracle/product/10.1.3.1/OracleAS_1/j2ee/home/admin_client.jar deployer:oc4j:opmn://del4100.cel:6003/oc4j_soa oc4jadmin <password> -validateURI
This validated the successfully. Went back to jdev and commented out the line from the build.properties:
# asinstancename=appserver
Re-ran the ant build and this time the deployment of the decision service succeeded.
This has now failed on the next stage of the build on compiling the bpel process SOAOrderBooking which I shall look at now.
Do you know why the above would not work with the appserver instance name. I have checked and it is the correct name and spelling?
I have another error now on the next stage of the build and wonder if this is related to it.
The error I am getting is that could not read the wsdl and:
Error happened when reading wsdl at "http://localhost:7777/esb/wsil/Fulfillment/OrderFulfillment?wsdl", because "Failed to read wsdl file at: "http://localhost:7777/esb/wsil/Fulfillment/OrderFulfillment?wsdl", caused by: java.net.ConnectException. : Connection refused: connect".
Thanks for your suggestions and welcome any other comments on this next error as I wonder if it is related to the first one that I have worked around.
Thanks Cel

Similar Messages

  • Problem in the setup of oracle soa " could not get deployment manage"

    hi,
    i'm trying to install Oracle SOA with oracle database XE, but i'm having an error message in the oracle bpel process manager configuration assistant: 'could not get deployment manage'..
    can u help me please!!!

    Is the database up and running, can you connect to the orabpel user?
    cheers
    James

  • Could not parse deployment descriptor: org.xml.sax.SAXParseException

    I am using Taglib in JSP file .
    I am calling the AbcTagLib from my jsp Login.jsp file.
    The entries for the taglib is there in web.xml file.
    Please see the attachments.
    I am getting the following errors while running my JSP file:
    Parsing of JSP File '/jsp/Login.jsp' failed:
    /jsp/Login.jsp: Could not parse deployment descriptor: org.xml.sax.SAXParseException:
    Could not parse: taglib starting at line 1
    probably occurred due to an error in /jsp/Login.jsp:
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    Please look in to it and suggest some solution.
    The files are :
    AbcTagLib.tld
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc. //DTD JSP Tag Library 1.1//EN"
    "web-jsptaglib_1_1.dtd">
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>TagLib</shortname>
         <tag>
         <name>label</name>
         <tagclass>com.abc.internet.common.taglib.LiteralTag</tagclass>
         <bodycontent>empty</bodycontent>
         <info>This is a simple tag for ABC</info>
              <attribute>
                   <name>name</name>
                   <required>false</required>
                   <rtexpvalue>false</rtexpvalue>
              </attribute>
         </tag>
         <tag>
         <name>linkAccess</name>
         <tagclass>com.abc.internet.common.taglib.LinkAccessTag</tagclass>
         <bodycontent>JSP</bodycontent>
         <info>this is the tag class for showing the button</info>
         <attribute>
         <name>linkId</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         <attribute>
         <name>flag</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         </tag>
    </taglib>
    web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN'
    'file:///D:/bea/wlserver6.0sp1/web-app_2_2.dtd'>
    <web-app>
    <taglib>
    <taglib-uri>AbcTagLib</taglib-uri>
    <taglib-location>/WEB-INF/AmsTagLib.tld</taglib-location>
    </taglib>
    </web-app>
    Login.jsp
    <%@ page language="Java" errorPage="/jsp/AbcJspError.jsp" import="java.util.Vector,com.abc.internet.common.util.UtilFunctions,com.abc.internet.welcome.form.LoginForm,com.abc.internet.common.util.*"%>
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <HTML>
    <HEAD>
         <TITLE>LOGIN SCREEN</TITLE>
         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </HEAD>
    <BODY class="imgSpacerTan" onUnload="javascript:funcCloseErrorWindow();">
    <html:form action="/struts/Login" name="LoginForm" type="com.abc.internet.welcome.form.LoginForm"
    onsubmit="onLogin()">
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr>
                   <td align="left">
                        <img border="0" src="../images/logo.gif">
                   </td>
              </tr>
         </table>
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >Welcome
    to the</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >ABC
    System</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=20>  </td></tr>
         </table>
         <table cellpadding=0 cellspacing=0 border=5 bordercolor="#293163" class="deadlineHistoryTablebgcolor"
    align="center">
              <tr class="deadlineHistoryTablebgcolor">
                   <td class="deadlineHistoryTablebgcolor">
                        <table cellpadding=10 cellspacing=10 border=0 width="400" class="deadlineHistoryTablebgcolor"
    align="center">
                             <tr>
                                  <td>
                                       <script language="javascript">
                                            if(navigator.appName.indexOf("Netscape") != -1)
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolor="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                            else
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolorlight="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                       </script>
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" bordercolor="#293163"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td>
                                                                     <font class="fontBlue">   USER ID       &nbsp:  </font><input
    type="text" name="iv-user">
                                                                </td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>     
                                  </td>
                             </tr>
                             <tr>
                                  <td>
                                       <table cellpadding=0 cellspacing=0 border=1 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td align="center" ><input type="submit" value="Submit" onclick="return
    (onLogin())" ></td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>
                                  </td>
                             </tr>
                        </table>
                   </td>
              </tr>
         </table>
    </html:form>     
    </body>
    </html>
    Thanks

    I am using Taglib in JSP file .
    I am calling the AbcTagLib from my jsp Login.jsp file.
    The entries for the taglib is there in web.xml file.
    Please see the attachments.
    I am getting the following errors while running my JSP file:
    Parsing of JSP File '/jsp/Login.jsp' failed:
    /jsp/Login.jsp: Could not parse deployment descriptor: org.xml.sax.SAXParseException:
    Could not parse: taglib starting at line 1
    probably occurred due to an error in /jsp/Login.jsp:
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    Please look in to it and suggest some solution.
    The files are :
    AbcTagLib.tld
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc. //DTD JSP Tag Library 1.1//EN"
    "web-jsptaglib_1_1.dtd">
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>TagLib</shortname>
         <tag>
         <name>label</name>
         <tagclass>com.abc.internet.common.taglib.LiteralTag</tagclass>
         <bodycontent>empty</bodycontent>
         <info>This is a simple tag for ABC</info>
              <attribute>
                   <name>name</name>
                   <required>false</required>
                   <rtexpvalue>false</rtexpvalue>
              </attribute>
         </tag>
         <tag>
         <name>linkAccess</name>
         <tagclass>com.abc.internet.common.taglib.LinkAccessTag</tagclass>
         <bodycontent>JSP</bodycontent>
         <info>this is the tag class for showing the button</info>
         <attribute>
         <name>linkId</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         <attribute>
         <name>flag</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         </tag>
    </taglib>
    web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN'
    'file:///D:/bea/wlserver6.0sp1/web-app_2_2.dtd'>
    <web-app>
    <taglib>
    <taglib-uri>AbcTagLib</taglib-uri>
    <taglib-location>/WEB-INF/AmsTagLib.tld</taglib-location>
    </taglib>
    </web-app>
    Login.jsp
    <%@ page language="Java" errorPage="/jsp/AbcJspError.jsp" import="java.util.Vector,com.abc.internet.common.util.UtilFunctions,com.abc.internet.welcome.form.LoginForm,com.abc.internet.common.util.*"%>
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <HTML>
    <HEAD>
         <TITLE>LOGIN SCREEN</TITLE>
         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </HEAD>
    <BODY class="imgSpacerTan" onUnload="javascript:funcCloseErrorWindow();">
    <html:form action="/struts/Login" name="LoginForm" type="com.abc.internet.welcome.form.LoginForm"
    onsubmit="onLogin()">
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr>
                   <td align="left">
                        <img border="0" src="../images/logo.gif">
                   </td>
              </tr>
         </table>
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >Welcome
    to the</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >ABC
    System</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=20>  </td></tr>
         </table>
         <table cellpadding=0 cellspacing=0 border=5 bordercolor="#293163" class="deadlineHistoryTablebgcolor"
    align="center">
              <tr class="deadlineHistoryTablebgcolor">
                   <td class="deadlineHistoryTablebgcolor">
                        <table cellpadding=10 cellspacing=10 border=0 width="400" class="deadlineHistoryTablebgcolor"
    align="center">
                             <tr>
                                  <td>
                                       <script language="javascript">
                                            if(navigator.appName.indexOf("Netscape") != -1)
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolor="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                            else
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolorlight="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                       </script>
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" bordercolor="#293163"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td>
                                                                     <font class="fontBlue">   USER ID       &nbsp:  </font><input
    type="text" name="iv-user">
                                                                </td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>     
                                  </td>
                             </tr>
                             <tr>
                                  <td>
                                       <table cellpadding=0 cellspacing=0 border=1 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td align="center" ><input type="submit" value="Submit" onclick="return
    (onLogin())" ></td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>
                                  </td>
                             </tr>
                        </table>
                   </td>
              </tr>
         </table>
    </html:form>     
    </body>
    </html>
    Thanks

  • RFC problem: could not get functionname from XML requst (sic)

    I'm developing an interface that attempts to call a receiver RFC on an SAP 4.6c system.  It's a very small simple interface, and it's all working until it tries to call the RFC.  The error is
    Exception caught by adapter framework: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not get functionname from XML requst: com.sap.aii.af.rfc.RfcAdapterException: failed to read funtionname from XML document: missing namespace declara
    I've created an RFC channel, which is green in the adapter monitoring.  The RFC imports without a problem, and appears in my interface mapping.  My mapping program converts to the RFC message type (as evidenced in sxmb_moni.  I have a receiver agreement referencing the interface mapping, which must be working as the mapping is called. 
    Could anyone point me to what else I could check?  I saw a post about the same error message, where the respondent found something in the logs which helped them  Could you expand on what you found, and in which log please?  Any pointers as to which logging options I could switch on and check would be gratefully received.
    Regards
    Alan Graham

    Thanks for the responses.
    I set up a communications channel of type RFC, which is
    showing green in the adapter monitor.  If I deliberately
    break it, eg by changing the password, the adapter shows
    as red in the monitor.  I assume therefore that the
    adaptor settings are correct.
    The XML going to the adapter looks correct AFAIK.  My problem is that I don't know enough about the requied XML to know if what I'm seeing in the logs is sufficient.  In SXMB_MONI, in the 'call adapter' section of a failed message, the outbound binding includes
    <SAP:ToInterfaceNamespace>urn:sap-com:document:sap:rfc:functions</SAP:ToInterfaceNamespace>/code]
    Also, the interface determination SOAP header, in the MAIN section includes
    [code]<SAP:Receiver>
      <SAP:Party agency="" scheme="" />
      <SAP:Service>D04</SAP:Service>
      <SAP:Interface namespace="urn:sap-com:document:sap:rfc:functions">Z_MPU_3PSCE_FREIGHT_UPLOAD</SAP:Interface>
      </SAP:Receiver>
    These are the correct values for the RFC name and the namespace, AFAIK.
    I'm using an interface mapping (which uses and ABAP class as the mapping program) which references the interface of the RFC.  The logs tell me this works, ie, the class is called and the resulting XML appears in the payload of the response.
    Alan

  • [DeployDecisionServices] Failed at "Could not get DeploymentManager"

    Hi Everyone,
    I've a small deployment issues which you guys might be able to help me with. I've created a simple business rule using Oracle Business Rule in my embedded OC4J instance and I've also created a BPEL project that consumes this Oracle Business Rule as a "decision service". All is fine until I deploy the BPEL project to my local machine, ANT returns the following messages in the Apache Ant of the Jdeveloper console:
    --- START ---
    Buildfile: C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\build.xml
    validateTask:
    [echo]
    | Validating workflow
    [validateTask] Validation of workflow task definitions is completed without errors
    deployProcess:
    [echo]
    | Deploying bpel process BPELProcess1 on localhost, port 8888
    [deployProcess] Deploying process C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\output\bpel_BPELProcess1_1.0.jar
    [deployProcess] Successfully deployed the process "BPELProcess1" on server "localhost" and port "8888"
    deployTaskForm:
    [echo]
    | Deploying workflow form for BPELProcess1 on localhost, port 8888
    [deployTaskForm] There are no forms to deploy
    deployDecisionServices:
    [echo]
    | Deploying decision services for BPELProcess1 on localhost, port 8888
    [deployDecisionServices] Start of deploying decision services.
    [deployDecisionServices] Deploy decision service in directory C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService
    [deployDecisionServices] Start deploying decision service from directory C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService to J2EE context /rules/default/BPELProcess1/1.0/DecisionService
    [deployDecisionServices] Replace placeholders in file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl
    [deployDecisionServices] Replace placeholders in file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl done.
    [deployDecisionServices] Replace placeholders in file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp
    [deployDecisionServices] Replace placeholders in file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp done.
    [deployDecisionServices] Start compiling fact type classes in directory C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes
    [deployDecisionServices] Compiling from shell, src=C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes, classpath=C:\Jdeveloper10.132\jdev\lib\ojc.jar;C:\Jdeveloper10.132\ant\lib\ant-oracle.jar;C:\Jdeveloper10.132\integration\lib\orabpel.jar;C:\Jdeveloper10.132\integration\lib\orabpel-ant.jar;C:\Jdeveloper10.132\integration\lib\orabpel-common.jar;C:\Jdeveloper10.132\integration\lib\orabpel-thirdparty.jar;C:\Jdeveloper10.132\webservices\lib\orawsdl.jar;C:\Jdeveloper10.132\lib\xmlparserv2.jar;C:\Jdeveloper10.132\lib\xml.jar;C:\Jdeveloper10.132\j2ee\home\lib\oc4j-internal.jar;C:\Jdeveloper10.132\j2ee\home\lib\adminclient.jar;C:\Jdeveloper10.132\integration\bpm\support\files;C:\Jdeveloper10.132\jdev\lib\jdev.jar;C:\Jdeveloper10.132\ant\lib\xml-apis.jar;C:\Jdeveloper10.132\ant\lib\xercesImpl.jar;C:\Jdeveloper10.132\ant\lib\jakarta-oro-2.0.8.jar;C:\Jdeveloper10.132\ant\lib\commons-net-1.3.0.jar;C:\Jdeveloper10.132\ant\lib\ant.jar;C:\Jdeveloper10.132\ant\lib\ant-xslp.jar;C:\Jdeveloper10.132\ant\lib\ant-xalan1.jar;C:\Jdeveloper10.132\ant\lib\ant-weblogic.jar;C:\Jdeveloper10.132\ant\lib\ant-vaj.jar;C:\Jdeveloper10.132\ant\lib\ant-trax.jar;C:\Jdeveloper10.132\ant\lib\ant-swing.jar;C:\Jdeveloper10.132\ant\lib\ant-stylebook.jar;C:\Jdeveloper10.132\ant\lib\ant-starteam.jar;C:\Jdeveloper10.132\ant\lib\ant-oracle-adfp.jar;C:\Jdeveloper10.132\ant\lib\ant-nodeps.jar;C:\Jdeveloper10.132\ant\lib\ant-netrexx.jar;C:\Jdeveloper10.132\ant\lib\ant-launcher.jar;C:\Jdeveloper10.132\ant\lib\ant-junit.jar;C:\Jdeveloper10.132\ant\lib\ant-jsch.jar;C:\Jdeveloper10.132\ant\lib\ant-jmf.jar;C:\Jdeveloper10.132\ant\lib\ant-jdepend.jar;C:\Jdeveloper10.132\ant\lib\ant-javamail.jar;C:\Jdeveloper10.132\ant\lib\ant-jai.jar;C:\Jdeveloper10.132\ant\lib\ant-icontract.jar;C:\Jdeveloper10.132\ant\lib\ant-commons-net.jar;C:\Jdeveloper10.132\ant\lib\ant-commons-logging.jar;C:\Jdeveloper10.132\ant\lib\ant-apache-resolver.jar;C:\Jdeveloper10.132\ant\lib\ant-apache-regexp.jar;C:\Jdeveloper10.132\ant\lib\ant-apache-oro.jar;C:\Jdeveloper10.132\ant\lib\ant-apache-log4j.jar;C:\Jdeveloper10.132\ant\lib\ant-apache-bsf.jar;C:\Jdeveloper10.132\ant\lib\ant-apache-bcel.jar;C:\Jdeveloper10.132\ant\lib\ant-antlr.jar;C:\Jdeveloper10.132\jdk\lib\tools.jar
    [deployDecisionServices] Source file exists. Read Java source file names.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/Applicant.java to the list of Java sources to compile.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/ApplicantImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/Applicantinfo.java to the list of Java sources to compile.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/ApplicantinfoImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/ObjectFactory.java to the list of Java sources to compile.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/PersonInfo.java to the list of Java sources to compile.
    [deployDecisionServices] Adding C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/PersonInfoImpl.java to the list of Java sources to compile.
    [deployDecisionServices] Compiled class(es) "C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/Applicant.java, C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/ApplicantImpl.java, C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/Applicantinfo.java, C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/ApplicantinfoImpl.java, C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/ObjectFactory.java, C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/PersonInfo.java, C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\classes\sample/PersonInfoImpl.java"
    [deployDecisionServices] Compilation of fact type classes done.
    [deployDecisionServices] Delete file DecisionService-web.war
    [deployDecisionServices] Generating the web archive DecisionService-web.war in directory C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\ear
    [deployDecisionServices] Restore WSDL template file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\WEB-INF\wsdl\DecisionService.wsdl
    [deployDecisionServices] Restore JSP template file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\war\public_html\GetDecisionServiceInfo.jsp
    [deployDecisionServices] Replace placeholders in file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\ear\META-INF\application.xml
    [deployDecisionServices] Replace placeholders in file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\ear\META-INF\application.xml done.
    [deployDecisionServices] Delete file DecisionService.ear
    [deployDecisionServices] Generating the application archive DecisionService.ear in directory C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService
    [deployDecisionServices] Restore template file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\ear\META-INF\application.xml.template
    [deployDecisionServices] Deploying web service to platform oc4j_10g
    [deployDecisionServices] Start of deploying DecisionService.ear to ias
    [deployDecisionServices] java oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline deployer:oc4j:localhost:23791 oc4jadmin welcome1 -deploy -file C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\decisionservices\DecisionService\DecisionService.ear -deploymentName rules_default_BPELProcess1_1_0_DecisionService
    [deployDecisionServices] Start of deploy apps
    [deployDecisionServices]
    [deployDecisionServices]
    [deployDecisionServices] Failed at "Could not get DeploymentManager".
    [deployDecisionServices]
    [deployDecisionServices] This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    [deployDecisionServices]
    [deployDecisionServices] More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
    [deployDecisionServices]
    [deployDecisionServices]
    [deployDecisionServices] Error in ant execution: null
    BUILD FAILED
    C:\Jdeveloper10.132\jdev\mywork\BPEL with Oracle Business Rule\BPELProcess1\build.xml:116: Error while deploying decision services on server "localhost"
    Total time: 1 minute 37 seconds
    --- END ---
    It is able to deploy the BPEL artifact but unable for the decision service, i.e. the Business Rule. I've been looking at web resources for answers but unable to find one. Your assistance is much appreciated and my gut feeling is that it is only a minor glitch which I need to fix. Thank you very much everyone.
    Regards,
    John

    Hi Everyone,
    I've resolved the error. It was the fact that I was pointing to the wrong rmi port. I found out by typing out the "opmnctl status -l" on the command line and realised that my rmi port was 12401 instead of 23791. Hence, under the "deployDecisionServices" namespace in the build.xml file, I modified it from "rmiport="${rmiport}" to "rmiport="12401"" and deploy it and everything works. Thank you everyone for your time and efforts.
    Regards,
    John

  • [java] Failed at "Could not get DeploymentManager".

    I am running the second example in the BPEL Help tutorial. In that we are supposed to run ant from tutorials\127.OrderBookingTutorial\PriceQuote and it gives error because it is not able to resolve
    my PC name 5mq9p91. I changed couple of build.properties files and for hostname put in the IP address, so some of these worked, but some of the places still have 5mq9p91 causing FAILURE.
    Where does ant get my machine name, how I can get it to pull full qualified name or the IP address?
    ERROR:
    [echo] Deploying SelectManufacturingUI using "admin_client.jar deployer:oc4j:opmn://5MQ9P91:6003/home -file C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI/SelectManufacturingUI.ear ..."
    [java] Failed at "Could not get DeploymentManager".
    (1. EXECUTION OF ANT BELOW)
    Actual problem is once I complete this exercise, partner link has compilation error, because the WSDL does not have complete qualified PC name.
    In the WSDL you can see the reference to "soap:address location="http://5MQ9P91:8888/orabpel/default/RapidDistributors/1.0""
    how do I change this to have complete qualified address?
    Actual Error:
    Error:
    [Error ORABPEL-10903]: failed to read wsdl
    [Description]: in "bpel.xml", Error loading schemas from wsdl.
    Error while loading schemas from wsdl file at location "http://11.111.111.11:8888/orabpel/default/RapidDistributors/RapidDistributors?wsdl". The reason is http://5MQ9P91:8888/orabpel/xmllib/ws-addressing.xsd.
    Please verify the schemas defined in wsdl.
    [Potential fix]: If your site has a proxy server, then you may need to configure your BPEL Server, designer and browser with your proxy server configuration settings (see tech note on http://otn.oracle.com/bpel for instructions).
    (2. RapidDistributors WSDL INFO BELOW)
    Few things I did to solve the problem, without much success:
    Installed BPEL and when I use firefox I get DNS Lookup Error
    http://5mq9p91:8888/
    Now if I use http://5mq9p91.na.zzzzz.net:8888/ it works fine and if I use the IP address it works fine.
    Have the same problem with IE, but after putting entried in C:\WINDOWS\system32\drivers\etc\hosts file problem went away.
    I also added DNS Suffix na.zzzzz.com in the Control Panel --> Network --> TCP/IP --> Advanced --> DNS Tab
    (3. IPCONFIG /ALL DETAILS BELOW)
    1. EXECUTION OF ANT
                   C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote>ant
                   Buildfile: build.xml
                   RapidDistributors:
                   Trying to override old definition of task customize
                   pre-build:
                   validateTask:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Validating workflow
                   [echo] --------------------------------------------------------------
                   [echo]
                   [validateTask] Validation of workflow task definitions is completed without errors
                   compile:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Compiling bpel process RapidDistributors, revision 1.0
                   [echo] --------------------------------------------------------------
                   [echo]
                   [bpelc] validating "C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\RapidDistributors\bpel\RapidDistributors.bpel" ...
                   [bpelc] BPEL suitcase generated in: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\RapidDistributors\output\bpel_RapidDistributors_1.0.jar
                   deployProcess:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Deploying bpel process RapidDistributors on 11.111.111.11, port 8888
                   [echo] --------------------------------------------------------------
                   [echo]
                   [deployProcess] Deploying process C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\RapidDistributors\output\bpel_RapidDistributors_1.0.jar
                   [deployProcess] Successfully deployed the process "RapidDistributors" on server "11.111.111.11" and port "8888"
                   deployTaskForm:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Deploying workflow form for RapidDistributors on 11.111.111.11, port 8888
                   [echo] --------------------------------------------------------------
                   [echo]
                   [deployTaskForm] There are no forms to deploy
                   deployDecisionServices:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Deploying decision services for RapidDistributors on 11.111.111.11, port 8888
                   [echo] --------------------------------------------------------------
                   [echo]
                   [deployDecisionServices] There are no decision services to deploy
                   process-deploy:
                   post-build:
                   deploy:
                   SelectManufacturing:
                   Trying to override old definition of task customize
                   pre-build:
                   validateTask:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Validating workflow
                   [echo] --------------------------------------------------------------
                   [echo]
                   [validateTask] url is file:/C:/home/bpel/ProcessManager/product/10.1.3.1/OracleAS_1/bpel/system/services/schema/WorkflowTaskDefinition.xsd
                   [validateTask] Validation of workflow task definitions is completed without errors
                   compile:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Compiling bpel process SelectManufacturing, revision 1.0
                   [echo] --------------------------------------------------------------
                   [echo]
                   [bpelc] validating "C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturing\bpel\SelectManufacturing.bpel" ...
                   [bpelc] BPEL suitcase generated in: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturing\output\bpel_SelectManufacturing_1.0.jar
                   deployProcess:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Deploying bpel process SelectManufacturing on 11.111.111.11, port 8888
                   [echo] --------------------------------------------------------------
                   [echo]
                   [deployProcess] Deploying process C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturing\output\bpel_SelectManufacturing_1.0.jar
                   [deployProcess] Successfully deployed the process "SelectManufacturing" on server "11.111.111.11" and port "8888"
                   deployTaskForm:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Deploying workflow form for SelectManufacturing on 11.111.111.11, port 8888
                   [echo] --------------------------------------------------------------
                   [echo]
                   [deployTaskForm] 07/07/12 09:22:47 Notification ==>Application Deployer for default_SelectManufacturing_1_0_Approval STARTS.
                   [deployTaskForm] 07/07/12 09:22:47 Notification ==>Undeploy previous deployment
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initialize C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\j2ee\home\applications\default_SelectManufacturing_1_0_Approval.ear begins...
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initialize C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\j2ee\home\applications\default_SelectManufacturing_1_0_Approval.ear ends...
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Starting application : default_SelectManufacturing_1_0_Approval
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initializing ClassLoader(s)
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initializing EJB container
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Loading connector(s)
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Starting up resource adapters
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initializing EJB sessions
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Committing ClassLoader(s)
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initialize workflowform begins...
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Initialize workflowform ends...
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Started application : default_SelectManufacturing_1_0_Approval
                   [deployTaskForm] 07/07/12 09:22:48 Notification ==>Application Deployer for default_SelectManufacturing_1_0_Approval COMPLETES. Operation time: 718 msecs
                   [deployTaskForm] Successfully deployed form on server "11.111.111.11"
                   deployDecisionServices:
                   [echo]
                   [echo] --------------------------------------------------------------
                   [echo] | Deploying decision services for SelectManufacturing on 11.111.111.11, port 8888
                   [echo] --------------------------------------------------------------
                   [echo]
                   [deployDecisionServices] There are no decision services to deploy
                   process-deploy:
                   post-build:
                   deploy:
                   SelectManufacturingUI:
                   Trying to override old definition of task customize
                   deploy:
                   [echo] Deploying SelectManufacturingUI from C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI:
                   [echo]
                   schemac:
                   build_ear:
                   [jar] Building jar: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI\SelectManufacturingUI.war
                   [ear] Building ear: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI\SelectManufacturingUI.ear
                   deployOc4j:
                   deployBindWebAppOc4j:
                   deployIas_10gR2:
                   deployBindWebAppIas_10gR2:
                   deployIas_10gR3:
                   [echo] Deploying SelectManufacturingUI using "admin_client.jar deployer:oc4j:opmn://5MQ9P91:6003/home -file C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI/SelectManufacturingUI.ear ..."
                   [java] Failed at "Could not get DeploymentManager".
                   [java] This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
                   [java] More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
                   [java] Java Result: 1
                   deployBindWebAppIas_10gR3:
                   [echo] Binding WebAp SelectManufacturingUI using "admin_client.jar deployer:oc4j:opmn://5MQ9P91:6003/home ..."
                   [java] Failed at "Could not get DeploymentManager".
                   [java] This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
                   [java] More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
                   [java] Java Result: 1
                   deployBindWebAppIas:
                   deployOraclej2ee:
                   deployNonOraclej2ee:
                   [delete] Deleting: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI\SelectManufacturingUI.war
                   [delete] Deleting: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\SelectManufacturingUI\SelectManufacturingUI.ear
                   CreateOrderBookingUI:
                   Trying to override old definition of task customize
                   deploy:
                   [echo] Deploying CreateOrderBookingUI from C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI/jsp:
                   [echo]
                   schemac:
                   build_ear:
                   [jar] Building jar: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI\CreateOrderBookingUI.war
                   [ear] Building ear: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI\CreateOrderBookingUI.ear
                   deployOc4j:
                   deployBindWebAppOc4j:
                   deployIas_10gR2:
                   deployBindWebAppIas_10gR2:
                   deployIas_10gR3:
                   [echo] Deploying CreateOrderBookingUI using "admin_client.jar deployer:oc4j:opmn://5MQ9P91:6003/home -file C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI/CreateOrderBookingUI.ear ..."
                   [java] Failed at "Could not get DeploymentManager".
                   [java] This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
                   [java] More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
                   [java] Java Result: 1
                   deployBindWebAppIas_10gR3:
                   [echo] Binding WebAp CreateOrderBookingUI using "admin_client.jar deployer:oc4j:opmn://5MQ9P91:6003/home ..."
                   [java] Failed at "Could not get DeploymentManager".
                   [java] This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
                   [java] More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
                   [java] Java Result: 1
                   deployBindWebAppIas:
                   deployOraclej2ee:
                   deployNonOraclej2ee:
                   [delete] Deleting: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI\CreateOrderBookingUI.war
                   [delete] Deleting: C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI\CreateOrderBookingUI.ear
                   deploy:
                   BUILD SUCCESSFUL
                   Total time: 50 seconds
                   C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote>
    2. RapidDistributors WSDL INFO
         http://11.111.111.11:8888/orabpel/default/RapidDistributors/RapidDistributors?wsdl
              <?xml version="1.0" encoding="UTF-8" ?>
              - <definitions name="RapidDistributors" targetNamespace="http://xmlns.oracle.com/RapidDistributors" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://xmlns.oracle.com/RapidDistributors" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:ns1="http://www.globalcompany.com/ns/sales" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:client="http://xmlns.oracle.com/RapidDistributors">
              - <types>
              - <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/RapidDistributors" xmlns="http://www.w3.org/2001/XMLSchema">
              - <element name="RapidDistributorsProcessRequest">
              - <complexType>
              - <sequence>
              <element name="input" type="string" />
              </sequence>
              </complexType>
              </element>
              - <element name="RapidDistributorsProcessResponse">
              - <complexType>
              - <sequence>
              <element name="result" type="string" />
              </sequence>
              </complexType>
              </element>
              </schema>
              - <schema xmlns="http://www.w3.org/2001/XMLSchema">
              <import namespace="http://www.globalcompany.com/ns/sales" schemaLocation="OrderBookingPO.xsd" />
              </schema>
              - <schema xmlns="http://www.w3.org/2001/XMLSchema">
              <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://5MQ9P91:8888/orabpel/xmllib/ws-addressing.xsd" />
              </schema>
              </types>
              - <message name="RapidDistributorsResponseMessage">
              <part name="payload" element="ns1:SupplierInfo" />
              </message>
              - <message name="RapidDistributorsRequestMessage">
              <part name="payload" element="ns1:OrderItems" />
              </message>
              - <message name="WSAMessageIDHeader">
              <part name="MessageID" element="wsa:MessageID" />
              </message>
              - <message name="WSAReplyToHeader">
              <part name="ReplyTo" element="wsa:ReplyTo" />
              </message>
              - <message name="WSARelatesToHeader">
              <part name="RelatesTo" element="wsa:RelatesTo" />
              </message>
              - <portType name="RapidDistributorsCallback">
              - <operation name="onResult">
              <input message="tns:RapidDistributorsResponseMessage" />
              </operation>
              </portType>
              - <portType name="RapidDistributors">
              - <operation name="initiate">
              <input message="tns:RapidDistributorsRequestMessage" />
              </operation>
              </portType>
              - <binding name="RapidDistributorsBinding" type="tns:RapidDistributors">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
              - <operation name="initiate">
              <soap:operation style="document" soapAction="initiate" />
              - <input>
              <soap:header message="tns:WSAReplyToHeader" part="ReplyTo" use="literal" encodingStyle="" />
              <soap:header message="tns:WSAMessageIDHeader" part="MessageID" use="literal" encodingStyle="" />
              <soap:body use="literal" />
              </input>
              </operation>
              </binding>
              - <binding name="RapidDistributorsCallbackBinding" type="tns:RapidDistributorsCallback">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
              - <operation name="onResult">
              <soap:operation style="document" soapAction="onResult" />
              - <input>
              <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle="" />
              <soap:body use="literal" />
              </input>
              </operation>
              </binding>
              - <service name="RapidDistributorsCallbackService">
              - <port name="RapidDistributorsCallbackPort" binding="tns:RapidDistributorsCallbackBinding">
              <soap:address location="http://set.by.caller" />
              </port>
              </service>
              - <service name="RapidDistributors">
              - <port name="RapidDistributorsPort" binding="tns:RapidDistributorsBinding">
              <soap:address location="http://5MQ9P91:8888/orabpel/default/RapidDistributors/1.0" />
              </port>
              </service>
              - <plnk:partnerLinkType name="RapidDistributors">
              - <plnk:role name="RapidDistributorsProvider">
              <plnk:portType name="tns:RapidDistributors" />
              </plnk:role>
              - <plnk:role name="RapidDistributorsRequester">
              <plnk:portType name="tns:RapidDistributorsCallback" />
              </plnk:role>
              </plnk:partnerLinkType>
              </definitions>
    3. IPCONFIG /ALL DETAILS
                   C:\>ipconfig /all
                   Windows IP Configuration
                        Host Name . . . . . . . . . . . . : 5MQ9P91
                        Primary Dns Suffix . . . . . . . : na.zzzzz.net
                        Node Type . . . . . . . . . . . . : Hybrid
                        IP Routing Enabled. . . . . . . . : No
                        WINS Proxy Enabled. . . . . . . . : No
                        DNS Suffix Search List. . . . . . : na.zzzzz.net
                                            na.zzzzz.net
                                            zzzzz.net
                   Ethernet adapter Local Area Connection:
                        Connection-specific DNS Suffix . : na.zzzzz.net
                        Description . . . . . . . . . . . : Broadcom NetXtreme 57xx Gigabit Controller
                        Physical Address. . . . . . . . . : 00-13-72-BA-E2-DF
                        Dhcp Enabled. . . . . . . . . . . : Yes
                        Autoconfiguration Enabled . . . . : Yes
                        IP Address. . . . . . . . . . . . : 11.111.111.11
                        Subnet Mask . . . . . . . . . . . : 255.255.255.0
                        Default Gateway . . . . . . . . . : 13.141.178.1
                        DHCP Server . . . . . . . . . . . : 13.135.65.50
                        DNS Servers . . . . . . . . . . . : 13.135.0.11
                                            13.135.0.13
                                            13.151.1.16
                        Primary WINS Server . . . . . . . : 13.135.65.50
                        Secondary WINS Server . . . . . . : 13.151.32.32
                        Lease Obtained. . . . . . . . . . : Wednesday, July 11, 2007 6:02:29 PM
                        Lease Expires . . . . . . . . . . : Monday, July 16, 2007 6:02:29 PM
                   Ethernet adapter {4AC576C8-F05E-422F-BA75-A986D1994DDF}:
                        Connection-specific DNS Suffix . :
                        Description . . . . . . . . . . . : Nortel IPSECSHM Adapter - Packet Scheduler Miniport
                        Physical Address. . . . . . . . . : 44-45-53-54-42-00
                        Dhcp Enabled. . . . . . . . . . . : No
                        IP Address. . . . . . . . . . . . : 0.0.0.0
                        Subnet Mask . . . . . . . . . . . : 0.0.0.0
                        Default Gateway . . . . . . . . . :
                   C:\>

    Solution:
    C:\HOME\bpel\ProcessManager\product\10.1.3.1\OracleAS_1\bpel\utilities\ant-orabpel.properties
    changed hostname and put in the IP Address, and this worked.
    But now that I run ANT it still has the "Could not get DeploymentManager" problem, so it was not because of machine name translation.
    so now what?
    more over, actual problem is to fix the WSDL file:
    "http://11.111.111.11:8888/orabpel/default/RapidDistributors/RapidDistributors?wsdl".
    If WSDL file is fixed my tutorial example may work....
    Any body...please help!!!!

  • Java.lang.Exception: Could not get name for DC project

    Hello Experts,
    We have a code which is downloaded from SVN repository.
    I have imported the code from my desktop into NWDS and when I try to deploy it throws,
    java.lang.Exception: Could not get name for DC project
    I have referred few threads in SCN and solution suggested is to change the workspace and create a new DC & copy the _comp from old DC.
    I tried the above solution but there are lot of build errors as we have few RFC models and it is throwing build errors for missing model reference.
    Kindly help me on how to fix the error.
    Thanks, Swarnaprakash

    Dear Swarnaprakash,
    The Web Dynpro DCs Import C:\----\user\.dtc\LocalDevelopment\DCs\sap.com\test and
    the related package for DC  is missing once check it after try to import.
    Depending on which Java compiler preferences are set, you may see some
    warnings in the "Task" view after importing the project. If the severity level for problems of type "Unused imports" (set in Preferences – Java – Compiler) has the value "Warning", the compiler will issue a warning for unused import references. Ignore these warnings!
    Still You getting means delete your .metadata before take the backup.after open the NWDS again it will set new configurations in your system.
    Thanks & Regards,
    Durga Rao.

  • WLS 10.3.3 - BEA-280061 The persistent store could not be deployed

    Hi,
    We have an application which is using WLS 10.3.3. After installing, whenever we start a managed server, it fails with:
    <BEA-280061> <The persistent store "XYZ" could not be deployed: java.io.IOException: [Store:280044]The file store directory "/<PATH TO STORE>/XYZ" does not exist
    java.io.IOException: [Store:280044]The file store directory "/<PATH TO STORE>/XYZ" does not exist
         at weblogic.store.io.file.StoreDir.throwIOException(StoreDir.java:173)
         at weblogic.store.io.file.StoreDir.createDirectory(StoreDir.java:226)
         at weblogic.store.admin.FileAdminHandler.prepareCommon(FileAdminHandler.java:158)
         at weblogic.store.admin.FileAdminHandler.prepare(FileAdminHandler.java:104)
         at weblogic.management.utils.GenericManagedService.prepareDeployment(GenericManagedService.java:204)
         at weblogic.management.utils.GenericServiceManager.prepareDeployment(GenericServiceManager.java:121)
         at weblogic.management.internal.DeploymentHandlerHome.invokeHandlers(DeploymentHandlerHome.java:628)
         at weblogic.management.internal.DeploymentHandlerHome.prepareInitialDeployments(DeploymentHandlerHome.java:408)
         at weblogic.management.deploy.internal.DeploymentAdapter$2.doPrepare(DeploymentAdapter.java:98)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    On investigation, the data/store directory does exist and the path is correct, but the store name directory does not - so for example if the store is called XYZ, there is no folder XYZ in data/store.
    There are no errors in the managed server log at all up until this point.
    We can get this working by:
    * Starting the Managed server
    * It fails
    * ShutDown the Managed Server
    * Create the folder XYZ using mkdir
    * Start the Managed Server (this works)
    This is the associated section from the config.xml:
    <file-store>
    <name>XYZ</name>
    <target>manserv-1</target>
    </file-store>
    This is a four node cluster and this store is deployed to all of the nodes - all four nodes have the same issue.
    Obviously I'd like to know why this is happening so we can correct it. I have looked round the web but can't see this particular error anywhere.
    Thanks in advance for any help
    Edited by: 843385 on Mar 10, 2011 6:03 AM

    Make sure the directory to which the file store points in available.
    - Target attribute of the file store (The server instances or migratable targets defined in the current domain that are candidates for hosting the
    file store. In a clustered environment, a recommended best practice is to target a custom file store to the same migratable target as the migratable
    JMS service, so that a member server will not be a single point of failure. A file store can also be configured to automatically migrate from an
    unhealthy server instance to a healthy server instance with the help of the server health monitoring services.)
    - Directory attribute of the file store (The path name to the file system directory where the file store maintains its data files. When targeting a
    file store to a migratable target, the store directory must be accessible from all candidate server members in the migratable target. For highest
    availability, you can use a SAN (Storage Area Network) disk.)
    Note that a filestore is a singleton service and is targetted to one server in the cluster at a time, in your case manserv-1.
    So on the machine where manserv-1 runs you must make sure the directory "/<PATH TO STORE>/XYZ exists.

  • GetCoreResourceModificationDate could not get path to timestamp file

    Porting my InDesign CS5.5 Plugin to InDesign CS6, when I build a debug version of the plugin and deploy it to the  InDesign CS6 Debug version and launch InDesign I get "PlugInData::GetCoreResourceModificationDate could not get path to timestamp file: C:\Program Files (x86)\Adobe\Adobe InDesign CS6 Debug\Plug-ins\SCC\(SCCINDDEXTRACTION V7.1.0.17 FOR CS6 Resources)\timestamp.idrc" which suggests that InDesign is expecting to find a "timestamp.idrc" file in the root of my plugin's resources subfolder. I have searched the sdk and google and have found nothing about a timestamp resource for InDesign plugins. Is my plugin resource (.rc or .fr file) supposed to include some kind of timestamp that would cause the resource compiler to generate a timestamp.idrc file?

    OK, I fixed this, but not sure how.
    I think the cache was corrupt.

  • An error occured while creating the new dataset Could not get type informat

    Uses: Windows XP Pro SP3+; OracleXE; Oracle 8i Client; ODP.NET; Visual Studio 2005 PRO;
    I had OracleXE and was using OracleXE's Oracle.DataAccess Version 10.2.0.100 which was located in C:\oraclexe\app\oracle\product\10.2.0\server\BIN. Then to use Oracle Developer Tools for VS, I installed ODAC where the Oracle.DataAccess's version was 2.111.6.20.
    Everything connected via SqlPlus and even was able to Oracle XE Home page and was able to loginto it. Further, was even able to create connection with Oracle Dot Net Provider. The problem was created when I tried to create a datasource from DataSource Menu in VS.2005. It was giving an error saying "An error occured while creating the new dataset Could not get type information for dataset". However I wittnessed that Dataset is been created in Solutions Explorer but not in Data Source Tab. Further researching I was able to create Datasets with Microsofts Oracle Data provider with out any issue.
    My Path variable list the following:
    C:\app\Administrator\product\11.1.0\client_1;
    C:\app\Administrator\product\11.1.0\client_1\bin;
    C:\oraclexe\app\oracle\product\10.2.0\server\bin;
    C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\;
    C:\Program Files\Borland\BDS\4.0\Bin;
    C:\PROGRA~1\Borland\Delphi5\Projects\Bpl;
    C:\PROGRA~1\Borland\vbroker\jre\Bin;
    C:\PROGRA~1\Borland\vbroker\Bin;
    C:\PROGRA~1\Borland\Delphi5\Bin;C:\orant\bin;
    C:\WINDOWS\system32;C:\WINDOWS;
    C:\WINDOWS\System32\Wbem;
    c:\Program Files\Microsoft SQL Server\90\Tools\binn\;
    C:\Program Files\Microsoft SQL Server\80\Tools\BINN;
    C:\Program Files\java\jdk1.6.0_07\bin.
    Further I got 2 Oracle Homes one which C:\orant and other is located in C:\app\Administrator\product\11.1.0\client_1.
    Also noted that while deploying at client site I started gett'n this error:
    "Unable to install or run the application. The application requires that assembly Oracle.DataAcces version be installed in Global Assembly Cache First."
    Is it due to change in the production machine? Any help in this regard is greatly appreciated.

    Hi Pushpa,
    Which enhancement package are you on currently? This is observed in cases where originals in DIR's are invisible and sometimes error message 26296 occurs in transaction CV01n. Hence,please check your entries in the table SDOKPROP to avoid such a problem in your system.
    Further,suggest you explore if the below resolutions can be adopted in your case.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=10321987
    http://wiki.sdn.sap.com/wiki/display/PLM/OriginalsinvisibleafterEHP3or+EHP4
    Regards,
    Pradeepkumar haragoldavar

  • JAPEXample01 published in sdn:error Could not get a value to be injected

    HI friends ,
    I am  trying to replicate the example JPAEXample01 using JPA in CE1 from  the blogs written by
    Sabine Heider/Adrian Görler.
    During the testing of the method create employee i am getting the following error.
    "Could not get a value to be injected from the factory."
    I tried couple of examples using the above process, still held up with same error.
    Any pointers to trouble shoot this ?
    Thanks in advance
    Chandra Dasari.

    HI Pritya Ranjan,
    Let me know the entities  and their relations ships you are using for quicker response.
    To know the proper error, use the path as mentioned
    nwa->problem management ->logs & traces->locks.
    Email the error code,
    The issue might be because of some many probabilities mentioned below.
    Point no 1
    Are you using Named queries  : If so check the queries syntax, the syntax used here is different from regulat sql queries.
    Point no 2:
    Are you using Java DIctionary  or generic  db and connecting to max db?
    check this part also
    Point no 3:
    Check your connection profile parameters:
    Point no 4 :
    Check the data-source-alias,persistence.xml and data-source.xml parameters..
    Beacuse i trouble shooted a lot on JPA's and found why the typical error's occurs.
    Regards
    chandra dasari

  • Dispatcher yellow,J2EE status info unavailable,Could not get file from DB

    Hello Experts,
    I have successfully installed a ECC 6.0 server-ABAP +JAVA  system (DB2 v9.5 FP4 windows server 2008-x64 bit).
    Kernel: 700 , Patch: 185 ; SP level : rel 700 , level 17
    I upgraded JSPM sucessfully from 14 to 17.Then i was trying to apply JAVA sp's one by one using single sp option JSPM tool.
    I DEPLOYED the first sp component sucesfully but after that the next component gave warning in JSPM check that SDM is not started.
    I checked MMC.Dispatcher was YELLOW and J2EE status info unavailable. Cannot use JCMON to start SDM..option 20 gives error--cannot access shared memory
    I already tried Notes   784568 and 997510
    Relevant logs:-
    jvm_bootstrap.out
    =================================================================================================
    Error synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    com.sap.engine.frame.core.configuration.InvalidPersistentDataStreamException: Could not get file from DB.
    Attempt to fully materialize lob data that is too large for the JVM.
    Disable data source property "fullyMaterializeLobData" for locator-based lob implementation. ERRORCODE=-4499, SQLSTATE=null ERRORCODE=-4499, SQLSTATE=null
    Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Unable to synchronize native files for instance [ID140026]!
    ==============================================================================================
    dev_jcontrol
    =============================================================================================
    Thr 4360] *** ERROR => JsfOpenShm: FtInit(SESSION, 2, 176) failed (got (rc = 0 operation successful), expected (rc = 8 already initialized)) [jsfxxshm.c   913]
    [Thr 4360] *** ERROR => Can't create shared memory segment 69 (rc = 1) [jcntrxx.c    1749]
    [Thr 4360] *** ERROR => Can't initialize JControl Administration [jcntrxx.c    273]
    [Thr 4360] JControlCloseProgram: started (exitcode = -1)
    [Thr 4360] *** ERROR => JsfCloseShm: FiDetachIndex(SESSION) failed (rc = 6 invalid argument) [jsfxxshm.c   1243]
    [Thr 4360] *** ERROR => JsfCloseShm: FiDetachIndex(ALIAS) failed (rc = 6 invalid argument) [jsfxxshm.c   1250]
    [Thr 4360] *** ERROR => JsfCloseShm: FiDetachIndex(SERVICE) failed (rc = 6 invalid argument) [jsfxxshm.c   1257]
    =================================================================================================
    log_bootstrap_ID0140026.0
    ==========================================================================================
    Error synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    com.sap.engine.frame.core.configuration.InvalidPersistentDataStreamException: Could not get file from DB.
    ============================================================================================
    Eagerly looking forward to a solution from you experts..
    Thanks,
    Rakesh

    Hi,
    I am facing the same related problem with ECC 6.0.
    My dispatcher started it is showing yellow-  dialog queue standstill, J2EE status info unavailable
    after some time dispatcher has stopped.
    Please check my below trace file for dispatcher:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      03
    sid        DEV
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    114
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        13108
    Fri Nov 27 02:31:55 2009
    kernel runs with dp version 229000(ext=109000) (@(#) DPLIB-INT-VERSION-229000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (03 13108) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 114 successfully loaded
         shared lib "dw_xtc.dll" version 114 successfully loaded
         shared lib "dw_stl.dll" version 114 successfully loaded
         shared lib "dw_gui.dll" version 114 successfully loaded
         shared lib "dw_mdm.dll" version 114 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3903
    Fri Nov 27 02:31:59 2009
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5361]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >sapdev_DEV_03                           <
    DpShMCreate: sizeof(wp_adm)          15800     (1436)
    DpShMCreate: sizeof(tm_adm)          4232256     (21056)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1536)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 08290040, size: 4889440)
    DpShMCreate: allocated sys_adm at 08290040
    DpShMCreate: allocated wp_adm at 08292090
    DpShMCreate: allocated tm_adm_list at 08295E48
    DpShMCreate: allocated tm_adm at 08295E78
    DpShMCreate: allocated wp_ca_adm at 0869F2B8
    DpShMCreate: allocated appc_ca_adm at 086A5078
    DpShMCreate: allocated comm_adm at 086A6FB8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 08727E78
    DpShMCreate: allocated gw_adm at 08727EB8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 08727EE8
    DpShMCreate: allocated wall_adm at 08727EF0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Fri Nov 27 02:32:00 2009
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1023 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 13356
      argv[0] = D:\usr\sap\DEV\DVEBMGS03\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\DEV\DVEBMGS03\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\DEV\SYS\profile\DEV_DVEBMGS03_sapdev
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2919
      argv[5] = -DSAPSYSTEM=03
      argv[6] = -DSAPSYSTEMNAME=DEV
      argv[7] = -DSAPMYNAME=sapdev_DEV_03
      argv[8] = -DSAPPROFILE=D:\usr\sap\DEV\SYS\profile\DEV_DVEBMGS03_sapdev
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1629]
    ***LOG Q0K=> DpMsAttach, mscon ( sapdev.visu.com) [dpxxdisp.c   11753]
    DpStartStopMsg: send start message (myname is >sapdev_DEV_03                           <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    Fri Nov 27 02:32:01 2009
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 114
    Release check o.K.
    Fri Nov 27 02:32:05 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1468
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2927) [nixxi.cpp    4248]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=13356)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Fri Nov 27 02:32:40 2009
    ERROR => W0 (pid 13364) died [dpxxdisp.c   14441]
    ERROR => W1 (pid 13372) died [dpxxdisp.c   14441]
    ERROR => W2 (pid 13380) died [dpxxdisp.c   14441]
    ERROR => W3 (pid 13388) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W4 (pid 13396) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W5 (pid 13404) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W6 (pid 13412) died [dpxxdisp.c   14441]
    ERROR => W7 (pid 13420) died [dpxxdisp.c   14441]
    ERROR => W8 (pid 13428) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W9 (pid 13436) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W10 (pid 13444) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:50 2009
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Thu Nov 26 21:02:50 2009
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA    13364 Ended         no      1   0        0                                                                         
    1 DIA    13372 Ended         no      1   0        0                                                                         
    2 DIA    13380 Ended         no      1   0        0                                                                         
    3 DIA    13388 Ended         no      1   0        0                                                                         
    4 UPD    13396 Ended         no      1   0        0                                                                         
    5 ENQ    13404 Ended         no      1   0        0                                                                         
    6 BTC    13412 Ended         no      1   0        0                                                                         
    7 BTC    13420 Ended         no      1   0        0                                                                         
    8 BTC    13428 Ended         no      1   0        0                                                                         
    9 SPO    13436 Ended         no      1   0        0                                                                         
    10 UP2    13444 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Thu Nov 26 21:02:50 2009
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          12
    wake_evt_udp_now     0
    wake events           total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    since last update     total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    Dump of tm_adm structure:               Thu Nov 26 21:02:50 2009
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Thu Nov 26 21:02:50 2009
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:55 2009
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >sapdev_DEV_03                           < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (13340) (SOFT_KILL)
    Stop icman
    killing process (13348) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:13340  HANDLE:1564)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:56 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:13340  HANDLE:1564)
    wait for end of icman
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:57 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:58 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:59 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Please help me to start my SAP MMC.
    Thanks

  • Could not get metamodel for project

    Hallo
    Something strange happened...
    I developed ein Composited Application under SAP Netweaver 7.1 SP 3.
    Today I changed some code and run build.. And I get the error could not get metamodel for project.
    And furthmore illegal reference to a non-used resource found.
    Any Hints to resolve this problem?
    Thanks in advance
    Kind Regards!
    Ping

    Hallo
    Thanks for your reply!
    The stacktrace I dont' have. Because I had the problem before the build. Thus I cannot have any trace on the server... I don't know where I can find the trace in Devstudio.
    I closed all the project and Reopened again. Now I only have the problem as followed: (in the problem tab)
    Severity and Description     Path     Resource     Location     Creation Time     Id
    Could not get metamodel for project LocalDevelopmentLocalDevelopmentzukoprototyp(2fdictionarych.post.it.sap          LocalDevelopmentLocalDevelopmentzukoprototyp(2fdictionarych.post.it.sap     Unknown     1200043648781     35143
    But I can build the projekt and redeploy it.
    Thanks anyway and have a nice day!
    Ping

  • Could not get server configuration in ldap

    for months my server is ok.
    but, today it happened the following error
    Could not get server configuration in ldap, using cached configuration information
    Please help me. What to do?

    I have verified that ldap is running
    The error log shows like this:
    [26/Sep/2005:16:36:39 -0500] - slapd started.
    [26/Sep/2005:16:38:46 -0500] - cos_cache_build_definition_list: Found n
    initions, cos disabled while waiting for updates
    [26/Sep/2005:16:38:46 -0500] - cos_cache_create: failed to build cache
    [26/Sep/2005:16:38:46 -0500] - cos_cache_getref: no cos cache created
    And the access log:
    [26/Sep/2005:16:38:52 -0500] conn=8 op=0 BIND dn="uid=admi
    =TopologyManagement,o=NetscapeRoot" method=128 version=3
    [26/Sep/2005:16:38:52 -0500] conn=8 op=0 RESULT err=0 tag=
    [26/Sep/2005:16:39:04 -0500] conn=0 op=1 UNBIND
    [26/Sep/2005:16:39:04 -0500] conn=0 op=1 fd=24 closed - U1
    [26/Sep/2005:16:39:04 -0500] conn=1 op=1 UNBIND
    [26/Sep/2005:16:39:04 -0500] conn=1 op=1 fd=25 closed - U1
    [26/Sep/2005:16:39:04 -0500] conn=7 op=1 UNBIND
    [26/Sep/2005:16:39:04 -0500] conn=7 op=1 fd=32 closed - U1
    [26/Sep/2005:16:39:04 -0500] conn=8 op=1 UNBIND
    [26/Sep/2005:16:39:04 -0500] conn=8 op=1 fd=33 closed - U1

  • "Could not get needed resources for application to be launched (id=-669)"

    I keep getting this message
    Setup Resourses Status
    Could not get needed resources for application [App name. edir path] to
    be launched (id=-669).
    Problem: Unable to connect to server [server name]
    I am able to browse to the server no problem as well as map a drive
    directly to it?
    I am not sure why I am getting this ?

    This is under the "Environment" portion of the "Run Tab"
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared either Novell or any rational human.
    <[email protected]> wrote in message
    news:[email protected]...
    > Craig where do I to determine that? I know it has to run as admin but I
    > am not sure if it is set like that...
    >
    >> Is the application configured to run "Normal", "Secure System User", or
    >> "Unsecure System User".
    >>
    >> Methods #2 and #3 require the workstation not the user to have rights
    > and
    >> require the use of UNC instead of a mapped drive.
    >>
    >> --
    >> Craig Wilson - MCNE, MCSE, CCNA
    >> Novell Support Forums Volunteer Sysop
    >>
    >> Novell does not officially monitor these forums.
    >>
    >> Suggestions/Opinions/Statements made by me are solely my own.
    >> These thoughts may not be shared either Novell or any rational human.
    >>
    >> <[email protected]> wrote in message
    >> news:[email protected]...
    >> > It is associated with the user and I can get access to the exe via
    > their
    >> > PC using their login
    >> >
    >> >> ,
    >> >> > Could not get needed resources for application [App name. edir
    > path]
    >> > to
    >> >> > be launched (id=-669).
    >> >> >
    >> >> > Problem: Unable to connect to server [server name]
    >> >> >
    >> >> > I am able to browse to the server no problem as well as map a drive
    >> >> > directly to it?
    >> >> >
    >> >> -669 is "wrong password" IIRC. Is this app associated to user or WS,
    > ie
    >> > is
    >> >> t trying to access that path wth the User's or Workstation's
    >> > credentials?
    >> >>
    >> >> - Anders Gustafsson, Engineer, CNE6, ASE
    >> >> NSC Volunteer Sysop
    >> >> Pedago, The Aaland Islands (N60 E20)
    >> >>
    >> >> Novell does not monitor these forums officially.
    >> >> Enhancement requests for all Novell products may be made at
    >> >> http://support.novell.com/enhancement
    >> >>
    >> >> Using VA 5.51 build 315 on Windows 2000 build 2600
    >> >>
    >> >
    >>
    >>
    >

Maybe you are looking for

  • How can I print a pdf in the actual size with a page border?

    How can I print a pdf in the actual size with a page border? (2 pages per sheet preferred) I usually print pdfs of books at a copy shop and they turn out fine. The problem comes when I try to print the same books at home. I use Adobe Acrobat X with t

  • Stock allocation

    Sales in my client is segmentised. Say there are 6 segments. It is being divided using sales groups. I want to allocate the monthly production forecast to each sales segment. Hw can it be handled in SAP??????? Eg: Monthly forecast for the month of Ma

  • Hard Disk Problems - Any ideas anyone??

    I recently replaced my ibook's HD with a new one, every thing has been fine until just recently. Mysteriously on my control click menus and other pop up windows like save and open, all system text has turned into code. use the following url for an ex

  • I need to use iMovie, but it says that my Quick Time needs to be updated.. but there are no new updates available

    i need to use imovie for a project and i tried to open it but it says i need version 7.6.0 or later, so i went to software updates and there are no updates for my computer. Any suggestions on what to do?! thanks, lauren

  • Daylight saving & Clock App

    In Australia we have just switched to daylight savings time and my 3G iPhone running version 4.1 change the internal clock perfectly. The odd thing is that the alarm function in the standard clock App supplied with the phone, is going off an hour ear