Java Transform XSL not appending namespaces

Hello !
I have a string
<dataroot><xiMsgHeader><SeqID>2</SeqID><SequenceNo>LST000000000000001</SequenceNo>...</xiMsgHeader></dataroot>
and style sheet
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" version="1.0" indent="yes" />
<xsl:template match="dataroot">
     <STANDARDMESSAGE xmlns="http://abc.com/sap/xi/R3FI/lst/ap">
     <xsl:apply-templates select="xiMsgHeader"/>     
</STANDARDMESSAGE>     
</xsl:template>
<xsl:template match="xiMsgHeader">
     <STANDARDMESSAGEHEADER xmlns="http://abc.com/sap/xi/R3FI/lst/ap">
          <SEQUENCENUMBER><xsl:value-of select="SequenceNo"/></SEQUENCENUMBER>
          <CORRELATIONID><xsl:value-of select="SequenceName"/></CORRELATIONID>
          <SYSTEM><xsl:value-of select="SystemName"/></SYSTEM>
          <RETRANSMIT><xsl:value-of select="ReTrans"/></RETRANSMIT>
     </STANDARDMESSAGEHEADER>
     <STANDARDMESSAGEBODY xmlns="http://abc.com/sap/xi/R3FI/lst/ap">
          <DT_ACCOUNT_PAYABLE xmlns="http://abc.com/sap/xi/R3FI/lst/ap">
               <xsl:apply-templates select="xiMsgDocHeader[1]"/>
          </DT_ACCOUNT_PAYABLE>
     </STANDARDMESSAGEBODY>
</xsl:template>
and then I run java tranform provided with jdk1.4.2.10
now you can see that stylesheet says that for
<dataroot> create a tag <STANDARDMESSAGE xmlns="abc.com/sap/xi/R3F!/lst/ap">
and for
<xiMsgHeader> create a tag <STANDARDMESSAGEHEADER xmlns="http://abc.com/sap/xi/R3FI/lst/ap">
but the result that I get is
<?xml version="1.0" encoding="UTF-8"?>
<STANDARDMESSAGE xmlns="http://awb.com.au/sap/xi/R3FI/lst/ap">
<STANDARDMESSAGEHEADER>
<SEQUENCENUMBER>LST000000000000001</SEQUENCENUMBER>
</STANDARDMESSAGEHEADER>
</STANDARDHEADER>
so my question is that why tranform is writing xmlns vales of child tag of main tag.
Can anybody suggest me what is going wrong.

Looks okay to me. I suppose you don't know that the namespace declared on an element also applies to all that element's children.

Similar Messages

  • Calling Java function XSL

    Hi,
    I am trying to call a small java function in XSL but while performing transformation I get following error
    "Function not in namespaceError in XPath expression, Function not in namespace"
    I am performing following steps:
    1. Java class file placed in class path and classpath is set. Java class is a simple file with no main() function. There is only one function called calculate()
    2. Defined a namespace in XSL
    3. Calling a function from class file in XSL
    My XSL looks like this:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fib="java:FibonacciNumber" extension-element-prefixes="fib" >
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/" >
    <xsl:value-of select="fib:calculate(number(.))"/>
    </xsl:template>
    </xsl:stylesheet>
    Can someone please point out what I am missing out here?
    Regards,
    Nitin

    Looks like you are using the Xalan convention for java protocol in namespaces.
    In Oracle XDK you need to use:
    xmlns:fib="http://www.oracle.com/XSL/Transform/java/FibonacciNumber"
    Assuming your class is in the default package.
    If it is in a package you need the fully qualified name:
    xmlns:fib="http://www.oracle.com/XSL/Transform/java/com.foo.FibonacciNumber"
    See for example http://www.devx.com/Java/Article/31675/0/page/1
    or http://download-east.oracle.com/docs/cd/B14099_11/web.1012/b14033/adx04xsj.htm#i1023310
    For more discussion on how hard it is to craft portable functions with Oracle,
    see Re: EXSLT implementation
    Mik

  • CAN'T CREATE or Modify ESB PROJECT ROUTER TRANSFORM/XSL FILE

    I have a problem that started today. I did not have a problem last Friday. I am working on an ESB Project/program using JDeveloper 10.3.1.2. I
    have a router service that has 2 routing rules. Today when I went to edit the transforms/XSL files it will not show the design view and gives me the error message: "Required attribute version missing from element xsl:stylesheet". In the source view I can see that in any one of my xsl files it has "version="1.0". I tried to delete and recreate the transform files and I still get the same problem (only this time it will not even save the mappings). If I try to validate the XML file Jdeveloper hangs and has to be killed. I tried rebooting my machine and that did not help. I went to another project that I hadn't worked on in 2 weeks and tried to look at some routing service transforms and got the same error message when I tried to display them.
    I don't know what is going on. Anyone ever have this problem?
    Nick

    Strange but the problem seems to have just gone away on its own!

  • Files are not appended in the container operation step ?

    Hi Guys,
    I have a BPM scenario where i receive a single file with multiple transactions
    1. Receive step receives the file and starts the process
    2 Transformation Step - Splits the file into individual transactions
    3. Block step --ForEach - Block has the follow 2 steps    
            1. Send - Synchronus - sends the request of each individual transaction to a 3rd party system and receives the response.
           2. Container Operation: Appending all the responses into a single file.
        Properties of container operation:
    Target: Multiline element (Block level element)
        Operation: Append
        Expression: Single element similar to structure above with out multiline.
    4. Send Step: I am writing this file locally to a file and this always shows only the last transaction in case of ParForEachMode and first transaction in the case of ForEach mode.
    can anybody explain why the messages are not appending into a single file. any help would be really appreciated
    Thanks,
    Srini

    Hi Liang,
    Check to see if the Sync Send step send every reply messages it received to container operation step:
    You might need to remove the container operation to see if you receive each individual msgs.
    > I have removed the container operation and i am able to see all the individual responses which i basically written to file just to cross check and every thing looks fine.
    Another way to go to workflow log (Complete Process with all the steps) to get debug information:
    SXMB_MONI -> Click "PE" under outbound queue -> Press "Display WorkFlow Log" button -> Click List with technical details -> Click Show Work item Container
    Here you can see the container and XML message used in this process step.
    You might have information on how message be processed in this step
    > I have checked in the workflow log and workflow shows the container operation only in the case of  ParForEach mode and when the block is in the ForEachMode i dont see any container operation step in the workflowlog and even in the ParForEach mode the container operation dosent have any details.
    Your Container Element reference to response message should also defined in block level, since the response message only exist inside the block. However, using process level container element should not cause any problem
    > I have defined the response messsage at block level in the container and the target i have defined it as multiline element defiend at process level. This multiline element is taken as input in the transformation step at prrocess level.
    are there any other alternatives for this process, i dont understand why the container operation is not appending the elments.
    any help would be appreciated
    Thanks,
    srini
    Edited by: srinivas kapu on Feb 25, 2008 12:10 PM

  • BPM : Files are not appended in the container operation step

    Hi Guys,
    I am using the BPM pattern,  "BpmPatternCollectTime"  provided by the SAP  under SAP BASIS 6.4 for the N:1 transformation.
    In the the Message mapping and Interface mapping source structure has "0 to unbounded"  occurance and Target has 1 coourances.. I have given the Time as 5 Minutes to collect the messages...
    I dont know why the files are not being appened? Each time am getting the only one file's content as output other files contents(records) are not being merged.
    Is there anything wrong in the given BPM pattern? or  i  need to do any changes in the container operation step ?
    can anybody explain why the messages are not appending into a single file. any help would be really appreciated...
    Can anybody guide me , how can i debug the BPM?
    Thanks and Regards
    Venkatesh

    Hi Raj,
    The Source and target structure are the same ie, BpmPatternCollectMessageToBeCollected..
    Structure is
        BpmPatternCollectToBeCollected
        ID
        OverallNumber
    In SAP BASIS 6.4 , In the message maaping you can find the
    "BpmPatternCollectMerge". I am using the same mapping..
    The mapping contains the Source field mappings for field element ID and OverallNumber to the same field in the Target.
    After selecting Source's occurance for 0 to unbounded , In the mapping the tool itself is adding two extra nodes as below...
    Messages                                 
      Message1
        BpmPatternCollectToBeCollected
        ID
        OverallNumber
    Mapping is
    Source Structure ->Target Structure
    Messages (1)                  Messages  (1)
    Message1 (1)                  Message1  (1)
      BpmPatternCollectToBeCollected  (0-unbound)  BpmPatternCollectToBeCollected  (1)
        ID  (1)-------> ID (1)
        OverallNumber    (1)-------> OverallNumber
    The line indicates above the mapped fields...ID and OverallNumber is only mapped above.
    Regards
    Venkatesh

  • XML Payload does not have namespace and prefix.

    Hello
    I have created a consumer business service which will be called from JDEdwards EOne, pulls data from database and send it to Fusion Middleware.
    SO, I have created proxy using JAX-WS option. And suggested in oracle doc, I created proxy outside OMW and then copied it to my project. XML payload is getting generated without namespace and prefix. After some research, I modified package-info.java. Now, I am able to send the payload and if test it locally from Jdeveloper and take xml output using marshaller I can see it has namespace and prefix as well. BUt, when I run this from server it does not have namespace and prefix.
    Please help.
    Thanks
    TK

    Hi Naresh,
    The "rejectedMessage" property is for 10G, I am not 100% sure about its implementation in 11G.
    In 10G the faulted XML file moves to this location "Oracle_Home\bpel\domains\domain_name\jca\project_directory\rejectedMessages".
    This property is used to move the files which are not valid XML or which are not schema compliant. For DB polling I don't think this property is used.
    -Yatan

  • Diff between XSL - JAVA and XSL - ABAP

    Hi All,
    What is the difference between the XSLT in JAVA and XSL in ABAP? which is the preferable one.

    for
    <b>XSL in ABAP</b>
    refer these links
    /people/sap.user72/blog/2003/09/18/xsl-and-abap
    http://help.sap.com/saphelp_nw04/helpdata/en/09/b7463c32a3fe13e10000000a114084/frameset.htm
    /people/achim.bangert/blog/2005/07/17/code-generation-using-xsl-transformations
    /people/tobias.trapp/blog/2006/10/06/xml-processing-in-abap-part-9-150-abap-processing-using-xslt
    /people/udo.martens/blog/2006/08/23/comparing-performance-of-mapping-programs
    for <b>XSL in JAVA</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/4c/b2ad3de2d76b3be10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14
    http://help.sap.com/saphelp_nw04/helpdata/en/ce/1d753cab14a909e10000000a11405a/frameset.htm
    XSLT Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    Java Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm
    Links of blogs on java mapping...
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-i
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-ii
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-iii
    Have a look at this blog on XSLT mapping in ccbpm:
    /people/sap.user72/blog/2005/03/15/using-xslt-mapping-in-a-ccbpm-scenario
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping(file to xslt mapping)
    /people/pooja.pandey/blog/2005/06/27/xslt-mapping-with-java-enhancement-for-beginners(xslt with java enhancement function)
    XSLT Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    and article on XSLT Mapping
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi%20code%20samples/generic%20xslt%20mapping%20and%20sample%20code.pdf
    Java Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm
    Message Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/ee/bf9640dc522f28e10000000a1550b0/content.htm
    this thread could give u a better understanding....
    https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FthreadID%3D40283%26tstart%3D25
    /people/ravikumar.allampallam/blog/2005/02/10/different-types-of-mapping-in-xi(types of mappping in xi)
    /people/sap.user72/blog/2005/03/15/using-xslt-mapping-in-a-ccbpm-scenario(XSLT mapping in bpm)
    refer this thread
    Difference in using java,xslt,message mapping
    XSLT-transformation in Java-Mapping with javax.xml
    Thanks !!!!

  • Xsl not working

    Hi,
    When I call the below xsl in my BPEL code, I am getting the following answer.
    *<tempStr>oracle.xml.parser.v2.XMLNodeList@1546df5</tempStr>*
    my BPEL code is :
    ora:getContentAsString(ora:processXSLT('Hello.xsl',bpws:getVariableData('Invoke_OSTspSearchOrders_OutputVariable','OutputParameters')))
    i am assigning the output to a string variable tempStr.
    the xsl "Hello.xsl" is :
    *<?xml version="1.0"?>*
    *<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">*
    *     <xsl:template match="resultSet">*
    *          <ORDERS>*
    *               <NoOfPriorityOrders>*
    *               <xsl:value-of select="count(row[contains(activity_type_desc,'Rush')])"/>*
    *               </NoOfPriorityOrders>*
    *               <NoOfNormalOrders>*
    *               <xsl:value-of select="count(row[not(contains(activity_type_desc,'Rush'))])"/>*
    *               </NoOfNormalOrders>*
    *               <xsl:apply-templates select="row[contains(activity_type_desc,'Rush')]"/>*
    *               <xsl:apply-templates select="row[not(contains(activity_type_desc,'Rush'))]"/>*
    *          </ORDERS>*
    *     </xsl:template>*
    *     <xsl:template match="row">*
    *          <ORDER>*
    *               <OrderNo>*
    *                    <xsl:value-of select="tmp_order_no"/>*
    *               </OrderNo>*
    *               <ActivityDesc>*
    *                    <xsl:value-of select="activity_type_desc"/>*
    *               </ActivityDesc>*
    *          </ORDER>*
    *     </xsl:template>*
    the variable I am passing as input to the xslt has the following structure.
    <Invoke_OSTspSearchOrders_OutputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="OutputParameters"><OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/spSearchOrders/">
    <RowSet>
    <Row>
    <Column name="tmp_order_no" sqltype="varchar">BL033025</Column>
    <Column name="Bgrp_No" sqltype="varchar"></Column>
    <Column name="Created_Date" sqltype="datetime">2009-01-08T06:32:44.763-05:00</Column>
    <Column name="SalesRepName" sqltype="varchar">Bookstore Automation</Column>
    <Column name="RepId" sqltype="varchar">SBOOKSTORE</Column>
    <Column name="Customer_Name" sqltype="varchar">Lowell Wolff</Column>
    <Column name="Status_Type_ID" sqltype="smallint">61</Column>
    <Column name="Status_Type_Desc" sqltype="varchar">Automation Failed - Back Office Down</Column>
    <Column name="Owner_Name" sqltype="varchar">BSAutomati</Column>
    <Column name="Owner_Desc" sqltype="varchar">Bookstore - Automation Process</Column>
    <Column name="Comment" sqltype="varchar">n3null</Column>
    <Column name="Status" sqltype="char">O</Column>
    <Column name="ContractAttached" sqltype="char">N</Column>
    <Column name="extrnl_order_nbr" sqltype="varchar">o2770003MatthewNx1</Column>
    <Column name="bgrp_cnt" sqltype="int"></Column>
    <Column name="activity_type_desc" sqltype="varchar">Bookstore - Normal Order</Column>
    <Column name="bndl_ind" sqltype="char"></Column>
    <Column name="Branch" sqltype="smallint">178</Column>
    <Column name="sBranchMgr" sqltype="varchar"></Column>
    <Column name="ContractAttached" sqltype="char">N</Column>
    </Row>
    <Row>
    <Column name="tmp_order_no" sqltype="varchar">BL033026</Column>
    <Column name="Bgrp_No" sqltype="varchar"></Column>
    <Column name="Created_Date" sqltype="datetime">2009-01-08T06:39:39.1-05:00</Column>
    <Column name="SalesRepName" sqltype="varchar">Bookstore Automation</Column>
    <Column name="RepId" sqltype="varchar">SBOOKSTORE</Column>
    <Column name="Customer_Name" sqltype="varchar">Lowell Wolff</Column>
    <Column name="Status_Type_ID" sqltype="smallint">61</Column>
    <Column name="Status_Type_Desc" sqltype="varchar">Automation Failed - Back Office Down</Column>
    <Column name="Owner_Name" sqltype="varchar">BSAutomati</Column>
    <Column name="Owner_Desc" sqltype="varchar">Bookstore - Automation Process</Column>
    <Column name="Comment" sqltype="varchar"></Column>
    <Column name="Status" sqltype="char">O</Column>
    <Column name="ContractAttached" sqltype="char">N</Column>
    <Column name="extrnl_order_nbr" sqltype="varchar">o2770003MatthewNx2</Column>
    <Column name="bgrp_cnt" sqltype="int"></Column>
    <Column name="activity_type_desc" sqltype="varchar">Bookstore - Normal Order</Column>
    <Column name="bndl_ind" sqltype="char"></Column>
    <Column name="Branch" sqltype="smallint">178</Column>
    <Column name="sBranchMgr" sqltype="varchar"></Column>
    <Column name="ContractAttached" sqltype="char">N</Column>
    </Row>
    </RowSet>
    <RETURN_VALUE>0</RETURN_VALUE>
    </OutputParameters>
    </part></Invoke_OSTspSearchOrders_OutputVariable>
    please let me know to fix the issue.

    Hi,
    I tried assigning the output to an xml variable and while doing so I am getting the following error.
    Here is the code.
    <copy>
    <from expression="ora:processXSLT('Hello.xsl',bpws:getVariableData('Invoke_OSTspSearchOrders_OutputVariable','OutputParameters','/ns8:OutputParameters'))"/>
    <to variable="spSearchOrder_OutputVar"
    part="OutputParameters"
    query="/ns8:OutputParameters"/>
    </copy>
    <copy>
    <from expression="ora:getContentAsString(bpws:getVariableData('spSearchOrder_OutputVar'))"/>
    <to variable="tempStr"/>
    </copy>
    And I am getting the following error.
    Error in evaluate <from> expression at line “409”. The result is empty for the XPATH expression : ora:processXSLT('DeadDayOrderSortByActId.xsl',bpws:getVariableData('spSearchOrder_OutputVar','OutputParameters','/ns8:OutputParameters'))
    “(http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure” has been thrown.
    <selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"><part name="summary"><summary>empty variable/expression result.
    xpath variable/expression expression "ora:processXSLT('DeadDayOrderSortByActId.xsl',bpws:getVariableData('spSearchOrder_OutputVar','OutputParameters','/ns8:OutputParameters'))" is empty at line 409, when attempting reading/copying it.
    Please make sure the variable/expression result "ora:processXSLT('DeadDayOrderSortByActId.xsl',bpws:getVariableData('spSearchOrder_OutputVar','OutputParameters','/ns8:OutputParameters'))" is not empty.
    Possible reasons behind this problems are: some xml elements/attributes are optional or the xml data is invalid according to XML Schema.
    To verify whether XML data received by a process is valid, user can turn on validateXML switch at the domain administration page.
    </summary>
    </part></selectionFailure>

  • Tomcat 3.3, Cocoon 1.8.2. util.xsl not found

    Hello,
    Once I installed Tomcat and Cocoon, I wanted to test my installation by loading up the Cocoon information URI : http://localhost:8080/cocoon/Cocoon.xml
    Problem:
    java.lang.RuntimeException: Error loading logicsheet at file://org/apache/cocoon/processor/xsp/library/java/util.xsl due to java.net.UnknownHostException: org
    I can't access to the file util.xsl. I checked, it is in the right place.
    As I had these errors...
    java.lang.RuntimeException: Error creating org.apache.cocoon.parser.XercesParser: make sure the needed classes can be found in the classpath (org/apache/xerces/framework/XMLParser)
    ...and...
    java.lang.RuntimeException: Error creating org.apache.cocoon.transformer.XalanTransformer: make sure the needed classes can be found in the classpath (org/apache/xalan/xpath/xml/XMLParserLiaison)
    ...always when I want access to Cocoon.xml file, I copied xalan_1_2_D02.jar and xerces_1_2.jar in TOMCAT_HOME\webapps\cocoon\WEB-INF\lib to fix these problems.
    So I tried to do the same thing with cocoon.jar file.
    What I tried to do :
         * copy cocoon.jar in TOMCAT_HOME\webapps\cocoon\WEB-INF\lib
         * I changed resource:// into file:// in cocoon.properties file
         * I tried to put the whole path : file://mypath/util.xsl
         * I copied COCOON_HOME\build\classes\org\*.* in
         TOMCAT_HOME\webapps\cocoon\WEB-INF
    Is anybody have an explanation, doc...
    Thanks in advance.
    Julien

    Problem:
    java.lang.RuntimeException: Error loading logicsheet
    at
    file://org/apache/cocoon/processor/xsp/library/java/uti
    .xsl due to java.net.UnknownHostException: org
    I can't access to the file util.xsl. I checked, it is
    in the right place.I've noticed that Java file-urls need either one or thee slashed (/) to work, so either:
    file:///
    or
    file:/
    Otherwise it goes looking for a web host by the name of the file, which is really strange behaviour.
    Tuomas Rinta

  • Photoshop cs5 is not appending file extensions

    in previous versions, photoshop appended to the file extension in the fiel save/save as dialog box.  it no longer does this and when you save a file it does not append the file extension to the file name, resulting in unknown fiel type. 
    i am running windows 7 64-bit with photoshp cs5. 
    it does not make any since to have the option of appending the file extension if the program is not going to do it.
    system info from photosho:
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 2195 MHz
    Built-in memory: 16361 MB
    Free memory: 11097 MB
    Memory available to Photoshop: 14709 MB
    Memory used by Photoshop: 74 %
    Image tile size: 1024K
    Image cache levels: 6
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTX 560M/PCI/SSE2
    Display: 2
    Display Bounds:=  top: 0, left: 1600, bottom: 1200, right: 3200
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 900, right: 1600
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 560M
    Driver Version: 8.17.12.6837
    Driver Date: 20110427000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1600 x 900 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 560M
    Video Card Memory: -2047 MB
    Serial number: 91198138241777799091
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\
    Temporary file path: C:\Users\Owner\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      J:\, 440.8G, 301.0G free
      H:\, 931.5G, 745.1G free
      E:\, 232.9G, 59.9G free
      D:\, 232.9G, 129.3G free
      C:\, 440.8G, 301.0G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2010/10/04-23:36:11   64.441628   64.441628
       adbeape.dll   Adobe APE 2010/02/23-12:40:58   61.421986   61.421986
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.0.0.2021  
       AdobeXMP.dll   Adobe XMP Core   5.0   61.134777
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       AdobeXMPScript.dll   Adobe XMP Script   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   3,0,116,0  
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00)   1.000000
       AFlame.dll   AFlame 2010/02/23-17:27:33   61.421976   61.421976
       AFlamingo.dll   AFlamingo 2010/02/23-17:27:33   61.421978   61.421978
       AGM.dll   AGM 2010/10/04-23:36:11   64.441628   64.441628
       ahclient.dll    AdobeHelp Dynamic Link Library   1,5,0,30  
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib (64 Bit)   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       amtservices.dll   AMTServices (64 Bit)   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       ARE.dll   ARE 2010/10/04-23:36:11   64.441628   64.441628
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2010/02/23-17:27:33   61.421978   61.421978
       AXEDOMCore.dll   AXEDOMCore 2010/02/23-17:27:33   61.421978   61.421978
       Bib.dll   BIB 2010/10/04-23:36:11   64.441628   64.441628
       BIBUtils.dll   BIBUtils 2010/10/04-23:36:11   64.441628   64.441628
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2010/10/04-23:36:11   64.441628   64.441628
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ExtendScript.dll   ExtendScript 2010/10/19-10:22:12   61.445301   61.445301
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2, 0, 1, 11  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5   CS5  
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   2.0.0.746  
       PSArt.dll   Adobe Photoshop CS5   CS5  
       PSViews.dll   Adobe Photoshop CS5   CS5  
       SCCore.dll   ScCore 2010/10/19-10:22:12   61.445301   61.445301
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   1.0.0.68 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   1.0.0.68
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113  
    Installed plug-ins:
       Accented Edges 12.0
       ADM 3.11x01
       Alien Skin Autolayer 4 4.0.0
       Alien Skin Blow Up 3 3.0.0
       Angled Strokes 12.0
       Average 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Bas Relief 12.0
       Blow Up 3.0.0
       BMP 12.0.2
       Camera Raw 6.6
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Difference Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Eazel Acquire 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Embed Watermark 4.0
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Measurement Core 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mezzotint 12.0.2
       MMXCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       PCX 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Photocopy 12.0
       Picture Package Filter 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Snap Art 3 3.0.0
       Solarize 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Sumi-e 12.0
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Vanishing Point 12.0
       Variations 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       WIA Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       ZigZag 12.0.2
    Plug-ins that failed to load: NONE
    Flash:
       Yale
       Gallery Wrapper
       Edge FX CS5
       Analog Photo FX
       Mini Bridge
       Kuler
       Access CS Live
       CS Review
       CS News and Resources
    Installed TWAIN devices: NONE

    krwebb wrote:
    The operating system has no problems with the filenames ... it is Photoshop that is not handling the names correctly. 
    Just tried this out on my Windows 7 64 bit system, and I get the same results using Photoshop.
    When I save a file in Photoshop CS5 64 bit with the name 047. Crayon - Abstract the file is saved as 047. Crayon - Abstract without a file extension, no matter what document type I select in the drop-down.
    In Word I get the expected result:
    When I save a file in Word with the name 047. Crayon - Abstract the extension is automatically added (047. Crayon - Abstract.docx)

  • When I hit the import button for a new project I get an internal error message stating: Could not find namespace: AgCreativeCloudUtils

    When I hit the import button for a new project I get an internal error message stating: Could not find namespace: AgCreativeCloudUtils
    Can someone help me with this issue please? Tks

    https://forums.adobe.com/search.jspa?q=Could+not+find+namespace%3A+AgCreativeCloudUtils&pl ace=%2Fplaces%2F1383621&depth=…

  • Java engine is not coming up

    Hi,
    My java engine is not coming up for some strange reason.  Here is a partial log of dev_server0:
    trc file: "/usr/sap/GSQ/DVEBMGS02/work/dev_server0", trc level: 1, release: "700"
    node name   : ID26770150
    pid         : 1314818
    system name : GSQ
    system nr.  : 02
    started at  : Sun Sep 13 05:02:27 2009
    arguments       :
           arg[00] : /usr/sap/GSQ/DVEBMGS02/exe/jlaunch
           arg[01] : pf=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[02] : -DSAPINFO=GSQ_02_server
           arg[03] : pf=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=64998
           arg[06] : -DSAPSYSTEM=02
           arg[07] : -DSAPSYSTEMNAME=GSQ
           arg[08] : -DSAPMYNAME=GILSAPEQ_GSQ_02
           arg[09] : -DSAPPROFILE=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr  1] Sun Sep 13 05:02:27 2009
    [Thr  1] *** WARNING => INFO: Unknown property [instance.box.number=GSQDVEBMGS02gilsapeq] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.en.host=GILSAPEQ] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.en.port=3203] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.system.id=2] [jstartxx_mt. 841]
    JStartupReadInstanceProperties: read instance properties [/usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties]
    -> ms host    : GILSAPEQ
    -> ms port    : 3903
    -> OS libs    : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    Instance properties
    -> ms host    : GILSAPEQ
    -> ms port    : 3903
    -> os libs    : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [01] bootstrap_ID26770100 : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [02] bootstrap_ID26770150 : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    Worker nodes
    -> [00] ID26770100           : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [01] ID26770150           : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    [Thr  1] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr  1] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 258] JLaunchRequestFunc: Thread 258 started as listener thread for np messages.
    [Thr 515] WaitSyncSemThread: Thread 515 started as semaphore monitor thread.
    [Thr  1] SigISetDefaultAction : default handling for signal 20
    [Thr  1] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr  1] CPIC (version=700.2009.02.11)
    [Thr  1] [Node: server0] java home is set by profile parameter
         Java Home: /usr/java14_64
    [Thr  1] JStartupICheckFrameworkPackage: can't find framework package /usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar
    JStartupIReadSection: read node properties [ID26770150]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : /usr/java14_64
    -> java parameters    : -Xj9 -Xmn400m -Xgcpolicy:gencon -verbose:gc -Djco.jarm=1 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : J2RE 1.4.2 IBM J9 2.3 AIX ppc64-64 j9ap64142-20080510 (JIT enabled)
    -> java vm vendor     : IBM J9 VM (IBM Corporation)
    -> java vm type       : server
    -> java vm cpu        : ppc64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/server0
    -> class path         : ./bin/boot/boot.jar:./bin/boot/jaas.jar:./bin/system/bytecode.jar:.
    -> OS libs path       : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : /usr/sap/GSQ/DVEBMGS02/exe/jstartup.jar:/usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50221
    -> shutdown timeout   : 120000
    [Thr  1] JLaunchISetDebugMode: set debug mode [no]
    [Thr 772] JLaunchIStartFunc: Thread 772 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Xj9
    -> arg[  4]: -Xmn400m
    -> arg[  5]: -Xgcpolicy:gencon
    -> arg[  6]: -verbose:gc
    -> arg[  7]: -Djco.jarm=1
    -> arg[  8]: -Djava.security.policy=./java.policy
    -> arg[  9]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 10]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 11]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 12]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 13]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 14]: -Dsys.global.dir=/usr/sap/GSQ/SYS/global
    -> arg[ 15]: -Dapplication.home=/usr/sap/GSQ/DVEBMGS02/exe
    -> arg[ 16]: -Djava.class.path=/usr/sap/GSQ/DVEBMGS02/exe/jstartup.jar:/usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar:./bin/boot/boot.jar:./bin/boot/jaas.jar:./bin/system/bytecode.jar:.
    -> arg[ 17]: -Djava.library.path=/usr/java14_64/jre/bin:/usr/java14_64/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/tmp/sapinst_exe.856178.1252452114:/usr/sap/GSQ/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/java14_64/jre/bin/j9vm:/usr/sap/GSQ/DVEBMGS02/exe::/usr/lib:/usr/sap/GSQ/DVEBMGS02/j2ee/os_libs:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/java14_64/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/GSQ/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/java14_64/jre/bin/j9vm
    -> arg[ 18]: -Dmemory.manager=2048M
    -> arg[ 19]: -Xmx2048M
    -> arg[ 20]: -Xms2048M
    -> arg[ 21]: -DLoadBalanceRestricted=no
    -> arg[ 22]: -Djstartup.mode=JCONTROL
    -> arg[ 23]: -Djstartup.ownProcessId=1314818
    -> arg[ 24]: -Djstartup.ownHardwareId=O0427428665
    -> arg[ 25]: -Djstartup.whoami=server
    -> arg[ 26]: -Djstartup.debuggable=no
    -> arg[ 27]: -DSAPINFO=GSQ_02_server
    -> arg[ 28]: -DSAPSTART=1
    -> arg[ 29]: -DCONNECT_PORT=64998
    -> arg[ 30]: -DSAPSYSTEM=02
    -> arg[ 31]: -DSAPSYSTEMNAME=GSQ
    -> arg[ 32]: -DSAPMYNAME=GILSAPEQ_GSQ_02
    -> arg[ 33]: -DSAPPROFILE=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
    -> arg[ 34]: -DFRFC_FALLBACK=ON
    -> arg[ 35]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 36]: -DSAPSTARTUP=1
    -> arg[ 37]: -DSAPSYSTEM=02
    -> arg[ 38]: -DSAPSYSTEMNAME=GSQ
    -> arg[ 39]: -DSAPMYNAME=GILSAPEQ_GSQ_02
    -> arg[ 40]: -DSAPDBHOST=GILSAPEQ
    -> arg[ 41]: -Dj2ee.dbhost=GILSAPEQ
    Pls advise.
    Thx.
    Abdul
    [Thr 772] Sun Sep 13 05:02:28 2009
    [Thr 772] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3600] Sun Sep 13 05:02:36 2009
    [Thr 3600] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3600] Sun Sep 13 05:02:37 2009
    [Thr 3600] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3600] JLaunchISetClusterId: set cluster id 26770150
    [Thr 3600] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3600] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 35212] Sun Sep 13 05:03:27 2009
    [Thr 35212] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 35212] Sun Sep 13 05:03:28 2009
    [Thr 35212] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 35212] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 35212] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 35212] SigISetIgnoreAction : SIG_IGN for signal 20
    [Thr 35212] JLaunchCloseProgram: good bye (exitcode = -11113)

    Hello,
    The error message:
    [Thr 35212] JLaunchIExitJava: exit hook is called (rc = -11113)
    Indicates that one of the core services did not start. The Service Managers controls the life cycle of all services. The services that provide core functionality must always be running. If one of the core services fails to start, the Service Manager exits with an exit code -11113.
    To find the name of the core service that failed to start please see the end of the std_server0.out file.
    Furthermore the reason why the service failed to start will be evident in the defaultTrace.X.trc file in the server0/log directory.
    Regards,
    Ventsi Tsachev
    Technology Development Support (J2EE Engine)
    SAP Labs, Palo Alto, Ca (USA)

  • Error:Class java.util.date not found

    i have installed 9iAS on my computer.And i want to develop program on JSP.i tried the url below
    http://eyuksel/servlet/IsItWorking
    and i got "it is working" message.when i try to execute my first jsp file i get the error:
    Errors compiling:d:\ias\apache\apache\htdocs\_pages\\_first.java
    d:\ias\apache\apache\htdocs\_pages\_first.java:55: Class java.util.date not found.
    out.print( new java.util.date() );
    ^
    1 error
    what must i do or how can i install the java classes.
    kind regards...
    null

    Thank you very much.It worked:)
    Java is case-sensitive.
    try
    java.util.Date
    instead of
    java.util.date
    null

  • I have windows 7 64bit. When i installed firefox and then java, i do not have java tm platform or any java plugin. I can't watch free movie's online!!

    As i told i have Windows 7 Ultimate 64bit version. I install java and have problems with Java Deployment Toolkit and Java(TM) Platform SE. It won't show in add-on. I cant watch movies. When I play movie it says java is missing but when I use IE I can watch some movies. I try reinstaling Java and even reinstall Windows. But problem was still there. I run java check (from Firefox) to see if java is installed and it confrmed. I even try diferent versions of Java and Mozilla. I even use JDK and JRE. I install java for 64bit and mozilla is also for 64bit version of system.
    I have another laptop with 32 bit version and everything works great. Installation procedure was same (only used 32bit versions of softwares).
    When I go to control panel and java options (windows 64bit) enable java content in your browser is marked. But in advanced tab default java for browser (mozilla family) is unmarked. And when I mark box and leave (apply then ok) and return box is empty. It wont confirm. In 32bit version of laptop i have alsou java plugin but in 64 bit it is not there. Here is a picture what I was talking about. This is on windows 32 bit for 64bit is some just box for mozilla family is empty and under that java plugin do not exist.
    [code]http://s23.postimg.org/dl4dun4p7/Untitled.jpg[/code]
    hope someone have solution!!

    you don't have to reinstall firefox or java, you can just download and install the 32bit-java next to your currently installed java version. it should then be picked up by firefox and be displayed under firefox > addons > plugins...

  • Java script is not working in custom tabular form

    hai all,
    i have changed my built in tabular form to custom tabular form.my java script is coding working fine in built in tabular form . But in my custom tabular form java script is not working ,since it is created as standard report(Display As).
    pls help me.
    with thanks and regards
    sivakumar.G

    Is the appostrophe function test(pthis) *'* present in your javascript code...
    If not can you post the same in apex.oracle.com and give the credential so that I can the why its not wroking
    Regards,
    Shijesh

Maybe you are looking for

  • ATP Check: R/3 and APO

    Hi All, My Query related to an Earlier Post (GATP:  Unable to check ATP (in GATP)  when creating sales order in R/3). I would like to change the settings for ATP Check from APO system to R/3, I.E, the ATP Check for Business Rule should be triggered i

  • How do I get the toolbar to display for safari on my iPad

    How can I get the safari toolbar to display on my iPad?

  • Selection screen fields in query

    experts i have created a query with 5 selection screen fields, now i want to change the order of the fields in the selection screen. Earlier: Material order delivery qty amount Now i want order material delivery amount qty In sq01 i tried but there a

  • Unable to upgrade due to a conflict [SOLVED]

    Greetings you all. I've been tried to upgrade my system and I've been unable to do it due to a conflict between xf86-video-openchrome and unichrome-dri. This is the pacman output: [root@Viper /]# pacman -Syu :: Synchronizing package databases... core

  • Multi-Folio - Updates are being pushed Automatically

    Last night around 8pm, an update was available to our app.  The developer who pushes out the updates did not do this.  I took the update and then shortly thereafter, a new update was available.  The developer did not push this update either.  Today,