XSLT processing instructions ignored, and namespaces excluded

Hi folks,
I am developing a BPEL process and created the following XSLT:
<xsl:stylesheet version="1.0"
xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ora="http://schemas.oracle.com/xpath/extension"
xmlns:ehdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
<strong> xmlns:agrlib="http://services.agresso.com/schema/ABWSchemaLib/2005/05/13"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
</strong> exclude-result-prefixes="xsl xp20 bpws ora ehdr orcl ids hwf"&gt;
<strong> &lt;xsl:output omit-xml-declaration="no"/&gt;
&lt;xsl:output standalone="yes"/&gt;
</strong> &lt;xsl:template match="*[not(node())]"/&gt;
&lt;xsl:template match="node()"&gt;
&lt;xsl:copy&gt;
&lt;xsl:apply-templates select="node()"/&gt;
&lt;/xsl:copy&gt;
&lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;
The transform activity is:
&lt;copy&gt;
&lt;from expression="ora:processXSLT('Transformation_1.xsl',bpws:getVariableData('Variable_1'))"/&gt;
&lt;to variable="Variable_2"/&gt;
&lt;/copy&gt;
This XSLT has been tested in Oxygen and produces the required result with the required namespaces included...i.e.
<p>
&lt;?xml version="1.0" encoding="utf-8"?&gt;
</p>
<p>
&lt;ABWSupplierCustomer xmlns="http://services.agresso.com/schema/ABWSupplierCustomer/2005/05/13" xmlns:agrlib="http://services.agresso.com/schema/ABWSchemaLib/2005/05/13" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt;
</p>
<p>
...rest of file...
But when the BPEL process executes, it outputs this:
</p>
<p>
&lt;ABWSupplierCustomer xmlns="http://services.agresso.com/schema/ABWSupplierCustomer/2005/05/13"&gt;
</p>
Anyone any ideas?

This is how I create my DOM...
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
org.w3c.dom.Document doc = builder.newDocument();
Element docElement = doc.createElement("Document");
docElement.setAttribute("Title", "Home");
org.w3c.dom.ProcessingInstruction pi = doc.createProcessingInstruction("xml", "type=\"xslt\"");
doc.appendChild( pi );
doc.appendChild( docElement );
And this is the output I get...
<?xml version="1.0"?>
<Document Title="Home"/>
I dont get it, Im using jdk1.4.0, and you get the processing instruction coming through, but I dont...?

Similar Messages

  • Process instruction characteristics and process messages

    Hi,
    Can anyone tell me why process instruction characteristics is required when only process message characteristics are displayed in PI sheets (input or output).
    Regards
    Joe

    Hi,
    Answer is already there in your question.
    and that is
    (input or output)
    Now you creates the one Process Message characteristic let's it is Temperature.But how it's value comes in the PI Sheet (As Ouput or Input manually by user) that is decided by that Process Instruction Characteristic.
    Now when you creates the Process Instruction Category (O12C) except type 0 you have choice of creates it by using help of Process Assistant.This Assistant assigns the Process Instruction Characteristic to the process Massage Characteristic automatically when you select the specific radio button or Activate the check box during that PI category creation.
    For Example when you creates the PI category Type 2 using Assistant.Here after naming first screen comes to you is to define type of Process data Request.Here when you select the radio Button for Simple process data request then indirectly you assign the process Instruction characteristic PPPI_DATA_REQUEST_TYPE and its Value comes as Simple.
    But when you create the PI category type 0 you have to assign this PI Characteristic manually because its Universal Category and there is no assistant which helps you.
    Regards,
    Dhaval

  • Process instruction sheet and control recipe

    dear,
           can u let me know how the process instruction sheet is created or maintained and how the control recipe and destination works.
    if I want to start with PI sheet and control recipe in my organisation , how do I go ahead with configuration as well as process.
    thnx-rgds
    Amitabh

    Hi,
    In control recipe destination the destination type must be browser based.Another is Abap based generally it is using.
    So select that recipe destination, select phase & go in deatil u will find INSTR.READ1, READ2,SIGN which can used as a instruction.
    There are two types 1:process sheet 2: remote fuction call (RFC)
    Process sheet is used for giving instructions to line operator & also entering data during reaction etc per period.
    For INSTR- select it give instruction for that particular phase.
    READ1 - In which we are one column is available where we can enter 1 value by line opearator
    READ2- Here 4 columns are available u can use it as date,time,temp,total etc. as per your requirement.
    SIGN- Here u can use it as a to identify who entered the value.Systen will ask for pass word after entering ID
    After creation & releasing  process order  create contriol recipe.
    Thern go for T code- CO 53 - send control recipe(control recipe monitor)
    http://help.sap.com/saphelp_46c/helpdata/en/f3/6ee4117aed11d2a5fe0060087d1a6b/content.htm
    CO60 - Operator will enter the values
    CO54 - send process messages
    http://help.sap.com/saphelp_46c/helpdata/en/ac/6a101268ce11d2a67600104b57eaa3/content.htm
    CO55- Check the report.
    Check the above & reward if useful.
    Regards,
    Suhas

  • Firefox xslt processing instruction

    Hi
    It's strange, i don't know...
    When my processing instruction looks like this
    <?xml-stylesheet type="text/xsl" href="xml40_reminder.xsl"?>
    i get the transformated xml in both browsers (IE6.0 and Firefox1.5).
    On the other side, when the href-attribute beginns with a FQDN i only get the transformation with IE6.0 and not with Firefox1.5.
    Example:
    <?xml-stylesheet type="text/xsl" href="http://core.mycompany.ch/xsl/xml40_reminder.xsl"?>
    Any ideas?
    Kind regards
    Michael

    Yes, the core-server is an intranet-server where we hold our schemas and stylesheets in a centralized place. In contrast the XML's are stored on an other machine. So it would be nice if we could use URL's to link the XML's with the stylesheets.
    Kind regards
    Michael

  • How to use System Variable SY_ROW in the Process Instruction Category

    Hi ,
    I want to assign a value of System variable SY_ROW to a Normal Variable in the Process Instruction Category and use it in the formula. Please help me with the Syntax in the Process Instruction Category to get the System Variable: SY_ROW value into a Variable.
    Thanks,
    SV

    Hello,
    You can use these variables in formulas or, for example, to pass on certain pieces of information to a function module. How the function called by the function module behaves depends on the type of information passed on.
    SY_ROW is used to view the current Table line.
    Please look into the below link for more details on syntax :
    http://help.sap.com/saphelp_46c/helpdata/en/1a/514e38493e4774e10000009b38f889/frameset.htm
    http://help.sap.com/saphelp_470/helpdata/en/1a/514e38493e4774e10000009b38f889/frameset.htm
    Hope the information is helpful
    Regards

  • How to send process instructions to new pcs system

    Hi, we have PCS system known as performer. we need to send the process order header data to this pcs system. i created all z characteristics and z process instruction type and assigned to CRD. Now i could not understand how to send this info to perfomer. do i need to send this to xi and from xi i need to send to performer? is there any way to send directly to performer? please guide me so that i follow the same.

    Close inactive apps
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen
    http://support.apple.com/kb/ht5137

  • Processing instructions

    How do I retrieve a processing instruction from an XML file in code?
    I have the "xml-stylesheet" processing instruction defined and wish to retrieve the value for "type". How would I go about doing this?
    Thanks in advance! :)
    Ben

    There has to be an easier way, but all I can think of is:
    First Part:
    1. Build a Document (doc) from the source XML file using a DocumentBuilder
    2. get a NodeList of doc's child nodes (NodeList nodl = doc.getChildNodes())
    3. For each Node (myNode) in nodl, check if myNode.getNodeType() == Node.PROCESSING_INSTRUCTION_NODE
    4. If it does, check if myNode.getTarget.equals("xml-stylesheet")
    5. And if that does, get the Data value (String data = myNode.getData())
    6. If you've found the match, break out of the loop.
    Second Part:
    1. Tokenise data with a StringTokenizer, using this delimiter string " ="
    2. loop through the tokenizer (tok) like this:
      String first;
      String second;
      while(tok.hasMoreTokens()){
        if(first.equals("type"){
          second = tok.nextToken();
          break;
        else{
          second = first;
          first = tok.nextToken();
      }3. Check that first.equals("type") because if it doesnt, you didnt find the type attribute.
    4. If it does, second will be the type value (wrapped in quotation marks)
    5. Strip the quotation marks (second = second.substring(1, second.length-1))
    And hopefully you should have the value.

  • Extract processing-instruction in workflow

    I am trying to extract an XML Processing Instruction from some input XML in a WLI
    Workflow. Using the XPATH wizard I have constructed the expression, but this just
    returns an empty string when used in the workflow.
    Has anybody successfully extracted the processing instruction? and set a workflow
    variable, or is there a different method of getting at it?
    TIA
    Dave

    Hello Vandy,
    try this:
    var PI = app.selection[0].insertionPoints[0];
    var xmlElementOfPI = PI.associatedXMLElements[0];
    xmlElementOfPI.xmlInstructions.add("target","data", PI);
    Roland

  • Processing instructions and CDATA in XSLT

    Dear all,
    my BPEL process contains a transform activity. The corresponding XSLT stylesheet supplies an output variable that I want to write to the filesystem as an XML document for use in third party applications.
    This XML document must have a few processing instructions inside. When inserting this processing instructions in the XSLT, they are not inserted into the output XML document, i.e. the processing instructions are ignored. Using CDATA sections results in the same behavior.
    Is there a workaround available for this bug in the BPEL Process Manager (without working with strings and string manipulation)?
    Thanks in advance!
    Lars

    This is how I create my DOM...
    DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    org.w3c.dom.Document doc = builder.newDocument();
    Element docElement = doc.createElement("Document");
    docElement.setAttribute("Title", "Home");
    org.w3c.dom.ProcessingInstruction pi = doc.createProcessingInstruction("xml", "type=\"xslt\"");
    doc.appendChild( pi );
    doc.appendChild( docElement );
    And this is the output I get...
    <?xml version="1.0"?>
    <Document Title="Home"/>
    I dont get it, Im using jdk1.4.0, and you get the processing instruction coming through, but I dont...?

  • OSB Proxy Service - ignore XML processing instructions (PIs)

    Hello,
    I've got a proxy service in OSB that takes any XML, transforms it, and passes it through to a business service. i.e. it just has a simple routing node containing something like:
    Route to [ BusinessServiceDB ] invoking [ merge ]
    Replace [ node contents ] of [  undefined XPath  ] in [ body ] with [ XQuery Resource... ]
    This works fine until the XML contains a processing instruction other than the standard XML version one; <?XML...?>. So if the first line (or first line after the XML version, if present) contains a PI (e.g. <?some-app-specific-instruction?>), then the proxy service passes nothing through to the Business Service.
    Well, I guess it assumes that the <?some-app-specific-instruction?> is the entire node contents, and so effectively passes through nothing that matches in the XQuery code...
    Is there a setting or easy way to make OSB globally ignore PIs? Or will I have to do something with the Replace, e.g. define the XPath or variable bindings differently?
    Cheers...

    Thanks, I will do that...once I've found out what our support ID is.
    The problem is easily repeatable in less than five minutes - all you have to do is create an 'Any XML' JMS proxy service (with all settings as defauts), and just have an empty route node in the message flow.
    Then all you do is try the test console with something like "<blah>test</blah>" as the payload; on the results you will see the correct XML inside the soapenv body when you expand: receiving request > Initial Message Context > $body. Then repeat the test with"<?something?><blah>test</blah>", which will only pass through the soapenv:Body tag with no contents.
    I presume this is not expected behaviour? i.e. OSB isn't meant to try the processing instruction, then pass through the results of that? I can't imagine it would...
    Anyway, as I say, I will raise the support request...but if anyone that is on a version above 10.3.1 has time to quickly run this test and let me know the results, I'd be really grateful.

  • Transaction code to find Process message and Process Instruction

    Hi
    I am new to PP module
    Where do i find (In which Transaction) the list of
    a) Process Message Category
    b) Process message
    c) Process Instruction Category
    in SAP ERP system??
    Regards
    Sweety

    Hi
    Thank u all for responding
    Still I was not able to find certain Process Messages like YQ_AIR, YQ_RPM, YQ_TEMP, YQ_CONS, YQ_PHCO, YQ_PHCO2.
    and Process Instructions like
    YQ_AIR, YQ_ENDPI,YQ_HEAD, YQ_INSTR, YQ_LAY, YQ_MATLI, YQ_PROD, YQ_PTEXT,YQ_RPM, YQ_TEMP, YQ_CON1, YQ_CON2..
    do I need to do some (Basis) configuration to get these?? or the above mentioned Process Messages and Process Instructions are not pre defined??
    Regards
    Sweety

  • Bug when copying processing-instruction() nodes via XSLT

    Hi,
    Database version :
    BANNER
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE     11.2.0.2.0     Production
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - ProductionTest case (XSLT identity transform) :
    SELECT XMLSerialize(document
             XMLTransform(
               XMLParse(document '<test><?abc?></test>')
             , XMLParse(document
    '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:output method="xml"/>
      <xsl:template match="@*|node()">
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:template>
    </xsl:stylesheet>')
           ) as result
    FROM dual;produces :
    RESULT
    <?xml version="1.0" encoding="utf-8"?>
    <?abc ?><test></test>
    instead of the expected output, with the processing-instruction() node at the right place, in document order :
    <?xml version = "1.0" encoding = "UTF-8"?>
    <test><?abc ?></test>Any ideas or workarounds?
    Thanks.

    Yep, same on 11.2.0.3 :
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE     11.2.0.3.0     Production
    TNS for 32-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL>
    SQL> SELECT XMLSerialize(document
      2           XMLTransform(
      3             XMLParse(document '<test><?abc?></test>')
      4           , XMLParse(document
      5  '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      6    <xsl:output method="xml"/>
      7    <xsl:template match="@*|node()">
      8      <xsl:copy>
      9        <xsl:apply-templates select="@*|node()"/>
    10      </xsl:copy>
    11    </xsl:template>
    12  </xsl:stylesheet>')
    13           )
    14         ) as result
    15  FROM dual;
    RESULT
    <?xml version="1.0" encoding="utf-8"?>
    <?abc ?><test></test>

  • Updating a XML document with a processing instruction

    Greetings Guru's
    I have a fully functional XML database solution for our new system. The only thing left is for me to update a xml document in the database with a processing instruction to find the style sheet (JAXB strips it out when the XML must go back into the database).
    I can update complete nodes and node elements in the xml document using updateXML in a regular update statement, but I do not know how to add the following processing instruction to my documents.
    <?xml-stylesheet type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"?>
    [pre]
    Thanks in advance
    Derrick                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    SQL> var xmltext varchar2(4000)
    SQL> --
    SQL> begin
      2    :xmlText := '<Hello>World</Hello>';
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> drop table t
      2  /
    drop table t
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> create table t of xmltype
      2  /
    Table created.
    SQL> set long 10000
    SQL> --
    SQL> insert into t values (xmltype(:xmltext))
      2  /
    1 row created.
    SQL> select *
      2    from t
      3  /
    SYS_NC_ROWINFO$
    <Hello>World</Hello>
    SQL> update t set object_value = updateXML
      2                              (
      3                                object_value,
      4                                '/',
      5                                xmlconcat
      6                                (
      7                                  xmlpi("xml-stylesheet",'type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"'),
      8                                  object_value
      9                                )
    10                              )
    11  /
    1 row updated.
    SQL> select * from t
      2  /
    SYS_NC_ROWINFO$
    <?xml-stylesheet type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"?>
    <Hello>World</Hello>
    SQL>

  • Server0 process in yellow and in status "starting apps" from many times

    Hi to all,
    platform windows/SQL
    I have a problem , I just made a system copy of my BI-Java (NW 7.0 SR3 ) using database independent system copy method.
    I make the export : all OK.
    I make the import ( system copy tool sapinst ) : All ok without errors.
    Now I'm tryng to start the Java ap server ( ABAP IS UP AND WORKS ) but it doesn't start : in MMC I see the java server0 process in yellow and in status "starting apps" from many times.
    Please help , what can I do ?

    I Eric ,
    I waited , but still yellow :
    here is the dev_server0 , it is very very  long file so i post most important parts of the log
    trc file: "F:\usr\sap\JBX\JC00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID5856350
    pid         : 2460
    system name : JBX
    system nr.  : 00
    started at  : Mon Nov 15 18:32:02 2010
    arguments       :
           arg[00] : F:\usr\sap\JBX\JC00\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\JBX\SYS\profile\JBX_JC00_sappino
           arg[02] : -DSAPINFO=JBX_00_server
           arg[03] : pf=F:\usr\sap\JBX\SYS\profile\JBX_JC00_sappino
    [Thr 1676] Mon Nov 15 18:32:02 2010
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.box.number=JBXJC00sappino] [jstartxx.c   841]
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.en.host=sappino] [jstartxx.c   841]
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties]
    -> ms host    : sappino
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\JBX\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sappino
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\JBX\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5856300  : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID5856350  : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5856300            : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    -> [01] ID5856350            : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    [Thr 1676] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 1676] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2796] JLaunchRequestFunc: Thread 2796 started as listener thread for np messages.
    [Thr 1116] WaitSyncSemThread: Thread 1116 started as semaphore monitor thread.
    [Thr 1676] Mon Nov 15 18:32:03 2010
    [Thr 1676] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 1676] CPIC (version=700.2006.09.13)
    [Thr 1676] [Node: server0] java home is set by profile parameter
         Java Home: C:\JAVA_SDK_64BIT
    [Thr 1676] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\JBX\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID5856350]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\JAVA_SDK_64BIT
    -> java parameters    : -Djco.jarm=1 -verbose:gc -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -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 -XX:NewSize=341m -XX:MaxNewSize=341m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:PrintGCDetails -XX:+PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version    : 1.4.2_26-b03
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> stack size         : 2M
    -> root path          : F:\usr\sap\JBX\JC00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\JBX\JC00\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     : F:\usr\sap\JBX\JC00\exe\jstartup.jar;F:\usr\sap\JBX\JC00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 1676] JLaunchISetDebugMode: set debug mode [no]
    [Thr 2372] JLaunchIStartFunc: Thread 2372 started as Java VM thread.
    [Thr 2372] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -verbose:gc
    -> arg[  5]: -Djava.awt.headless=true
    -> arg[  6]: -Dsun.io.useCanonCaches=false
    -> arg[  7]: -Djava.security.policy=./java.policy
    -> arg[  8]: -Djava.security.egd=file:/dev/urandom
    -> arg[  9]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 10]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 11]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 12]: -XX:NewSize=341m
    -> arg[ 13]: -XX:MaxNewSize=341m
    -> arg[ 14]: -XX:MaxPermSize=192m
    -> arg[ 15]: -XX:PermSize=192m
    -> arg[ 16]: -XX:+DisableExplicitGC
    -> arg[ 17]: -XX:+PrintGCDetails
    -> arg[ 18]: -XX:+PrintGCTimeStamps
    -> arg[ 19]: -XX:SurvivorRatio=2
    -> arg[ 20]: -XX:TargetSurvivorRatio=90
    -> arg[ 21]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 22]: -verbose:gc
    -> arg[ 23]: -Dsys.global.dir=F:\usr\sap\JBX\SYS\global
    -> arg[ 24]: -Dapplication.home=F:\usr\sap\JBX\JC00\exe
    -> arg[ 25]: -Djava.class.path=F:\usr\sap\JBX\JC00\exe\jstartup.jar;F:\usr\sap\JBX\JC00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 26]: -Djava.library.path=C:\JAVA_SDK_64BIT\jre\bin\server;C:\JAVA_SDK_64BIT\jre\bin;C:\JAVA_SDK_64BIT\bin;F:\usr\sap\JBX\JC00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;c:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;F:\usr\sap\JBX\SYS\exe\uc\NTAMD64
    -> arg[ 27]: -Dmemory.manager=2048M
    -> arg[ 28]: -Xmx2048M
    -> arg[ 29]: -Xms2048M
    -> arg[ 30]: -Xss2M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=2460
    -> arg[ 34]: -Djstartup.ownHardwareId=M1883233260
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -Xss2m
    -> arg[ 38]: -DSAPINFO=JBX_00_server
    -> arg[ 39]: -DSAPSTARTUP=1
    -> arg[ 40]: -DSAPSYSTEM=00
    -> arg[ 41]: -DSAPSYSTEMNAME=JBX
    -> arg[ 42]: -DSAPMYNAME=sappino_JBX_00
    -> arg[ 43]: -DSAPDBHOST=SAPPINO
    -> arg[ 44]: -Dj2ee.dbhost=SAPPINO
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 2372] Mon Nov 15 18:32:04 2010
    [Thr 2372] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3844] Mon Nov 15 18:32:07 2010
    [Thr 3844] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3844] Mon Nov 15 18:32:08 2010
    [Thr 3844] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3844] Mon Nov 15 18:32:09 2010
    [Thr 3844] JLaunchISetClusterId: set cluster id 5856350
    [Thr 3844] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3844] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Mon Nov 15 18:33:09 2010
    66.769: [GC 66.779: [DefNew
    Mon Nov 15 18:33:12 2010
    : 174592K->12719K(261888K), 2.4968787 secs] 174592K->12719K(2009856K), 2.5007114 secs]
    Mon Nov 15 18:33:28 2010
    85.012: [GC 85.019: [DefNew
    Mon Nov 15 18:33:31 2010
    : 187311K->15802K(261888K), 2.9950002 secs] 187311K->15802K(2009856K), 2.9962968 secs]
    Mon Nov 15 18:33:42 2010
    99.362: [GC 99.363: [DefNew
    Mon Nov 15 18:33:43 2010
    : 190394K->18114K(261888K), 1.3817075 secs] 190394K->18114K(2009856K), 1.3817727 secs]
    Mon Nov 15 18:34:04 2010
    121.270: [GC 121.270: [DefNew: 192706K->22709K(261888K), 0.4353252 secs] 192706K->22709K(2009856K), 0.4354424 secs]
    Mon Nov 15 18:34:14 2010
    131.077: [GC 131.079: [DefNew
    Mon Nov 15 18:34:15 2010
    : 197301K->29493K(261888K), 0.9813876 secs] 197301K->29493K(2009856K), 0.9823920 secs]
    [Thr 3344] Mon Nov 15 18:34:36 2010
    [Thr 3344] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    Mon Nov 15 18:34:44 2010
    160.965: [GC 160.966: [DefNew
    Mon Nov 15 18:34:47 2010
    : 204085K->40068K(261888K), 3.8189779 secs] 204085K->40068K(2009856K), 3.8194810 secs]
    [Thr 3532] Mon Nov 15 18:34:54 2010
    [Thr 3532] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 4932] Mon Nov 15 18:34:57 2010
    [Thr 4932] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    Mon Nov 15 18:35:09 2010
    186.312: [GC 186.315: [DefNew: 214660K->44513K(261888K), 0.4742509 secs] 214660K->44513K(2009856K), 0.4773469 secs]
    [Thr 3844] Mon Nov 15 18:38:32 2010
    [Thr 3844] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    Mon Nov 15 18:39:18 2010
    435.575: [GC 435.576: [DefNew: 219105K->48184K(261888K), 0.2394759 secs] 219105K->48184K(2009856K), 0.2397480 secs]
    Mon Nov 15 18:39:20 2010
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Mon Nov 15 18:39:23 2010
    440.506: [GC 440.506: [DefNew: 222776K->50686K(261888K), 0.1335379 secs] 222776K->50686K(2009856K), 0.1335965 secs]
    Mon Nov 15 19:42:07 2010
    [Unloading class sun.reflect.GeneratedMethodAccessor14]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor127]
    [Unloading class sun.reflect.GeneratedMethodAccessor13]
    [Unloading class sun.reflect.GeneratedMethodAccessor105]
    [Unloading class sun.reflect.GeneratedMethodAccessor99]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor135]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor4]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor96]
    [Unloading class sun.reflect.GeneratedMethodAccessor128]
    Mon Nov 15 19:42:08 2010
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor17]
    [Unloading class sun.reflect.GeneratedMethodAccessor119]
    [Unloading class sun.reflect.GeneratedMethodAccessor64]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor29]
    [Unloading class sun.reflect.GeneratedMethodAccessor47]
    [Unloading class sun.reflect.GeneratedMethodAccessor86]
    [Unloading class sun.reflect.GeneratedConstructorAccessor72]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor14]
    [Unloading class sun.reflect.GeneratedMethodAccessor109]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor82]
    [Unloading class sun.reflect.GeneratedMethodAccessor156]
    [Unloading class sun.reflect.GeneratedMethodAccessor147]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor94]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor65]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor93]
    Mon Nov 15 19:42:09 2010
    [Unloading class sun.reflect.GeneratedMethodAccessor107]
    [Unloading class sun.reflect.GeneratedMethodAccessor142]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor2]
    Mon Nov 15 20:19:06 2010
    : 1488916K->1046521K(1747968K), 3204.1629115 secs] 1749638K->1046521K(2009856K), 3204.1631834 secs]

  • SunMC - Process is forking and reaping child processes. What's that?

    Hey folks,
    Im really new to the sysadmin world, and I think maybe my company really didn't think things well when they've decided to put me doing this, hehehe.
    I work with a general queue for which my team receives tickets with different kind of problems, among them, Automation Alerts (I think you all know what Im talking about).
    Recently (maybe 2-4 days) we've started to receive an Automation Ticket with the following message:
    Solaris Process Monitoring Process Monitoring Base03 CPU
    time for reaped children 107.1 30.0 Process is forking and
    reaping child processes.
    I've found almost nothing about this, and even when I think what's this ticket about (I've closed 2 or 3 of them stating no issues were found), I really want to understand and know where to look and if something can be done about this, because processes on the server and general state of it seems in good condition and nothing looks bad, apparently. The server is a Solaris 10 with zones.
    Can you shed some light on this? I'd appreciate all the help you can give me.
    Thank you and regards all.

    The same thought occurred to me, except I started seeing "failure" logs in JAMF the morning after we run maintenance policies. All of these failures were due to the Mac not restarting, which isn't really a failure - more of an inconvenience - since the second part of the policy (removing eTrust antivirus and restarting is part 1, installing SEP 12.1 and restarting is part 2) runs immediately on restart no matter what time of the day it is.
    In some cases the macs did not restart because the user had unsaved work or something else that would cancel logout. In this case, Casper prompts the user to restart and waits until the OK button is clicked, then counts down 1 minute and restarts. In the other case, nothing would have prevented logout yet the computer still did not logout and then restart, leading me to believe that the reason the Mac did not log out was a locked desktop, and since I am telling System Events to simulate a gui log out, this would be blocked by a locked desktop.
    The problem basically stems from the following two issues: 1. I am not to force a logout or restart when a console user is logged in and 2. Casper will not automatically log a console user out on it's own OR restart the computer if a console user is logged in - and then I have to rely on the end user to follow on screen instructions since the Casper restart prompt can be moved to the side and effectively ignored.
    When no restarts are required for the various policies we run, this is not an issue. And anyway, I originally just wanted to know what process is running when a desktop is asleep and locked, but no screen saver is active...

Maybe you are looking for

  • Need Help: Wireless Mighty Mouse's Roller Ball Sluggish, Not Sensitive...

    Hello all. *I have followed Apple's Support Docu* to "hold the mouse upside-down and roll the ball vigorously while cleaning it to help dislodge any particles that may have collected on the internal hardware". But after I did that a few times, *my Mi

  • IWeb behaving very differently to dreamweaver

    http://timparsons.org.uk/timparsonsorguk/Welcome.html this is the address that iWeb published my site at (i am only just feeling my way so don't expect to see much) when i filled in the site details i was expecting it to be published at :- http://tim

  • Facebook's new ad tracking policy for user profiles.

    Facebook's newest policy seems quite invasive. I have my Mozilla Firefox browser set to "Tell sites that I do not want to be tracked." Is this sufficient to stop this new policy from Facebook or do I have to go through their options of using the Digi

  • Not able to rewind or ff in my phone

    hi all, i have 6270 phone and i am not able to rewind or ff the video clips?can anyone help me what to do

  • Can I use PDF forms on an iPAD?

    I have completed a multi page interactive PDF file. It is a survey and works fine off a laptop or desktop. My client has expressed an interest in having this work on an iPAD. The idea is use the iPAD for its convenience and then send the completed fo