Instance roll back while validating the XML message using Mediator

Hi all,
I am facing issue when calling a mediator process in validating the XML before invoking the target application
Below is the error for the instance.
com.collaxa.cube.engine.EngineException">
Global retry rollback fault thrown.
The current JTA transaction is aborting due to an user rollback fault being thrown. The upstream component should retry in a new JTA transaction upon catching this fault.
This exception was caused by a global retry fault being thrown from downstream component. The user had directed the BPEL engine to roll back the current JTA transaction and retry within new JTA transactions for the specified number of times and retry interval.
There is no action recommended.
-<stack>
<f>
com.collaxa.cube.ws.WSInvocationManager.invoke#334
</f>
<f>
com.collaxa.cube.engine.ext.common.InvokeHandler.__invoke#1070
</f>
<f>
com.collaxa.cube.engine.ext.common.InvokeHandler.handleNormalInvoke#584
</f>
<f>
com.collaxa.cube.engine.ext.common.InvokeHandler.handle#132
</f>
<f>
com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements#74
</f>
<f>
com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform#166
</f>
<f>
com.collaxa.cube.engine.CubeEngine.performActivity#2687
</f>
<f>
com.collaxa.cube.engine.CubeEngine._handleWorkItem#1190
</f>
<f>
com.collaxa.cube.engine.CubeEngine.handleWorkItem#1093
</f>
<f>
com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal#76
</f>
<f>
com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage#218
</f>
<f>
com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory#297
</f>
<f>
com.collaxa.cube.engine.CubeEngine.endRequest#4609
</f>
<f>
com.collaxa.cube.engine.CubeEngine.endRequest#4540
</f>
<f>
com.collaxa.cube.engine.CubeEngine._createAndInvoke#713
</f>
<f>
com.collaxa.cube.engine.CubeEngine.createAndInvoke#560
</f>
<f>
</f>
</stack>
</exception>
-<root class="oracle.fabric.common.FabricInvocationException">
java.lang.NullPointerException
-<stack>
<f>
oracle.tip.mediator.serviceEngine.MediatorServiceEngine.process#1006
</f>
<f>
oracle.tip.mediator.serviceEngine.MediatorServiceEngine.post#663
</f>
<f>
oracle.integration.platform.blocks.mesh.AsynchronousMessageHandler.doPost#142
</f>
<f>
oracle.integration.platform.blocks.mesh.MessageRouter.post#197
</f>
<f>
oracle.integration.platform.blocks.mesh.MeshImpl.post#215
</f>
<f>
sun.reflect.GeneratedMethodAccessor2091.invoke
</f>
<f>
sun.reflect.DelegatingMethodAccessorImpl.invoke#25
</f>
<f>
java.lang.reflect.Method.invoke#597
</f>
<f>
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection#307
</f>
<f>
org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint#182
</f>
<f>
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed#149
</f>
<f>
oracle.integration.platform.metrics.PhaseEventAspect.invoke#59
</f>
<f>
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed#171
</f>
<f>
org.springframework.aop.framework.JdkDynamicAopProxy.invoke#204
</f>
<f>
$Proxy341.post
</f>
<f>
oracle.integration.platform.blocks.local.LocalInvocationProcessor.post#211
</f>
<f>
</f>
</stack>
{code}
I have some knowledge in transaction but this no where in my picture. In bpel process no where i mention transaction is* required* for the mediator component and my mediator is one way asyn process.
Also i defined catch all activity in my bpel and if some thing happen it suppose to move to catch all block but it didn't happen here.
I look forward from some one to help me in resolving in this.
Appreciate some one help here.
Regards,
Tarak.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Thanks for the prompt help. Is there any other way instead of removing the DTD line ?. Because the xml is coming as a string and removing the dtd and then adding it will unneccesary hamper performance. Do you any other way in which even though I don't remove the line I get the output without removing the dtd line ?.
thanks and regards,
Sachin

Similar Messages

  • Error while validating the xml file

    Hello All,
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    dbf.setValidating(false);
    DocumentBuilder db = dbf.newDocumentBuilder();
    doc = db.parse(new ByteArrayInputStream(xmlString.getBytes()));
    In this code even though I have set the validation of instance of DocumentBuilderFactory to false it still tries to validate the xml file using the dtd. How do I avoid the validation of the xml file by the dtd file ?.
    Is anybody having any suggestions for that ?.
    Help needed urgently.
    Thanks and regards,
    Sachin

    Thanks for the prompt help. Is there any other way instead of removing the DTD line ?. Because the xml is coming as a string and removing the dtd and then adding it will unneccesary hamper performance. Do you any other way in which even though I don't remove the line I get the output without removing the dtd line ?.
    thanks and regards,
    Sachin

  • Getting error while running the XML file using XML Publisher Desktop

    Hi all,
    We have successfully loaded the XML file using XML Publisher Desktop. But when we preview the same using PDF format we are getting the following error.
    Font Dir: C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\fonts
    Run XDO Start
    RTFProcessor setLocale: en-us
    FOProcessor setData: C:\Documents and Settings\smanmadh\Desktop\ProductCompensationDT.xml
    FOProcessor setLocale: en-us
    java.lang.NullPointerException
         at oracle.apps.xdo.template.fo.area.PageNumber.formatString(PageNumber.java:104)
         at oracle.apps.xdo.template.fo.IDManager.registerId(IDManager.java:44)
         at oracle.apps.xdo.template.fo.area.AreaTree.registerLastPageJoinSeq(AreaTree.java:1106)
         at oracle.apps.xdo.template.fo.area.AreaTree.incrementJoinSequenceIndex(AreaTree.java:219)
         at oracle.apps.xdo.template.fo.area.AreaTree.registerLastPageDocument(AreaTree.java:1089)
         at oracle.apps.xdo.template.fo.area.AreaTree.forceOutput(AreaTree.java:471)
         at oracle.apps.xdo.template.fo.elements.FORoot.end(FORoot.java:58)
         at oracle.apps.xdo.template.fo.FOHandler.endElement(FOHandler.java:386)
         at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)
         at oracle.apps.xdo.template.fo.FOProcessingEngine.process(FOProcessingEngine.java:279)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:1022)
         at RTF2PDF.runRTFto(RTF2PDF.java:626)
         at RTF2PDF.runXDO(RTF2PDF.java:460)
         at RTF2PDF.main(RTF2PDF.java:251)
    Thanks in Advance.
    Sudeep.

    This is BI related. You will get a quicker answer from the BI Publisher forum
    BI Publisher

  • Error while running the XML file using XML Publisher Desktop

    Hi All,
    We have successfully loaded the XML file using XML Publisher Desktop.But when we try to preview it using the PDF format we are getting the following error.
    Font Dir: C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\fonts
    Run XDO Start
    RTFProcessor setLocale: en-us
    FOProcessor setData: C:\Documents and Settings\smanmadh\Desktop\ProductCompensationDT.xml
    FOProcessor setLocale: en-us
    java.lang.NullPointerException
         at oracle.apps.xdo.template.fo.area.PageNumber.formatString(PageNumber.java:104)
         at oracle.apps.xdo.template.fo.IDManager.registerId(IDManager.java:44)
         at oracle.apps.xdo.template.fo.area.AreaTree.registerLastPageJoinSeq(AreaTree.java:1106)
         at oracle.apps.xdo.template.fo.area.AreaTree.incrementJoinSequenceIndex(AreaTree.java:219)
         at oracle.apps.xdo.template.fo.area.AreaTree.registerLastPageDocument(AreaTree.java:1089)
         at oracle.apps.xdo.template.fo.area.AreaTree.forceOutput(AreaTree.java:471)
         at oracle.apps.xdo.template.fo.elements.FORoot.end(FORoot.java:58)
         at oracle.apps.xdo.template.fo.FOHandler.endElement(FOHandler.java:386)
         at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)
         at oracle.apps.xdo.template.fo.FOProcessingEngine.process(FOProcessingEngine.java:279)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:1022)
         at RTF2PDF.runRTFto(RTF2PDF.java:626)
         at RTF2PDF.runXDO(RTF2PDF.java:460)
         at RTF2PDF.main(RTF2PDF.java:251)
    Any pointers will be of great help.
    Thanks in Advance
    Sudeep.


    I had a similar error which when I searched, came up with this thread.
    My issue was resolved after I discovered that my RTF template was not really RTF. It was sill in MS Word DOC format. This was discovered by reviewing two templates in NOTEPAD. The MS-DOC files have a lot of "special" characters in them. My RTF was not really RTF.
    After doing a SAVE AS - RTF format, then the preview worked as expected.
    Just Sharing...
    --Tim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Error while encrypting the xml file using asymmetric cipher...pls help

    i am encryption the xml file using asymmetric cyper....
    in one class , i am generating private key and public key using "RSA" algorithm..using 1024 byte initialization...
    it is generating properly...
    and after that in second class i am encrypting the xml file using "DESede" algorithm and i am using public key of above class..
    but i am getting exceptione :
    java.security.InvalidKeyException: Invalid key length: 162 bytes
    at com.sun.crypto.provider.DESedeCipher.engineGetKeySize(DashoA6275)
    at javax.crypto.Cipher.init(DashoA6275)
    at XmlEncryption.getEncryptedData(XmlEncryption.java:147)
    at XmlEncryption.encryptCompleteXmlFile(XmlEncryption.java:123)
    at demoXmlEncApp.simulateBookSellersEnd(demoXmlEncApp.java:72)
    at demoXmlEncApp.main(demoXmlEncApp.java:29)
    so, what is that ?
    i want to use RSA algo for key generatiion and DESede for cipher initialization .
    is there any site for where source code of xml file encryption using asymmetric cipher is available?
    pls, help me.....

    Sachin,
    What sabre150 is trying to explain to you, is that encrypting data (such as an XML file) is a 2-step process. In the first step, you generate a symmetric key (such as DES, 3DES, AES) and encrypt your file with this key (and the appropriate mode and padding).
    In order to ensure that your encrypted data cannot be decrypted by unauthorized individuals, you now need to protect the symmetric key. Encrypting your symmetric key with another symmetric key does not solve the problem, since you have a chain of symmetric keys that need to be encrypted into infinity.
    Cryptographers solve this problem by encrypting the symmetric key with an asymmetric key, such as as RSA. To perform this second step, you generate an RSA key-pair, encrypt the symmetric key you generated in step 1 with the Public key of the RSA key-pair, and give the recipient of the encrypted XML file, access to the Private key of the RSA key-pair as well as the encrypted symmetric key.
    The recipient, then uses the RSA Private key to decrypt the symmetric key first, and then uses the "plaintext" symmetric key to decrypt the XML file.
    What sabre150 was also attempting to explain to you, is the traditional way of transporting an encrypted "blob" that consists of data + symmetric key. With a modern key-management system, combining the two would be unnecessary.

  • Can't save BISM file pointing to excel sheet (data source). ErrMsg: "There were errors found while validating the page: Cannot connect to the server or database."

    Hi,
    Me and a collegue is administrering our new enterprise BI portal in SharePoint 2013 (On Premise) and have a problem with using a specific Excel file including general ledger data as data source through a BISM file.
    This particular BISM file can't be saved without getting the error message "There were errors found while validating the page: Cannot connect to the server or database."
    BISM files against other Excel sheets and sources (for example SSAS tabular databases) works well.
    Can anyone help us pinpointing whats wrong here, this is a really important stakeholder in our organization requesting this reporting?
    Cheers!

    Hi E.SWARD ,
    My self created a Power pivot excel then i want to use this excel to create BI file . Still i am getting the same error . Pls help me to resolve this issue
    Cannot connect to the server or database.
    I am getting the similar error , if i use Tabular analysis server instance .
    Subhash

  • "Setup encountered a problem while validating the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run se

    Team,
    I am trying to Install Exchange on my Lab, getting below error
    message.
    The Schema Role is installed on Root Domain and trying to install
    exchange on Child domain.
    1 Root Domain - 1 Child domain. both are located on single site.
    “Setup encountered a problem while validating
    the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run setup with the /prepareAD parameter and wait for
    replication to complete.”
    Followed below articles:
    http://support.risualblogs.com/blog/2012/02/21/exchange-2010-sp2-upgrade-issue-exchange-organization-level-objects-have-not-been-created-and-setup-cannot-create-them-because-the-local-computer-is-not-in-the-same-domain-and-site-as-the-sche/
    http://www.petenetlive.com/KB/Article/0000793.htm
    transferred the schema roles to different server on root domain, still no luck.
    can someone please help me.
    regards
    Srinivasa k
    Srinivasa K

    Hi Srinivasa,
    I guess, you didn't completed the initial setup schemaprep and adprep before starting the installation. You can do it as follows:
    1. Open command Prompt as administrator and browse to the root of installation cd and run Setup.exe /PrepareSchema /IAcceptExchangeServerLicenseTerms
    After finishing this,
    2. Setup.exe /PrepareAD /OrganizationName:"<organization name>" /IAcceptExchangeServerLicenseTerms
    3. To prepare all domains within the forest run Setup.exe /PrepareAllDomains /IAcceptExchangeServerLicenseTerms. If you want to prepare a specific domain run Setup.exe /PrepareDomain:<FQDN of the domain you want to prepare> /IAcceptExchangeServerLicenseTerms
    4. Once you complete all of the 3 steps, install the pre-requisities for Exchange 2013
    5. Finally, run the setup program
    Hope this will help you
    Regards from Visit ExchangeOnline |
    Visit WindowsAdmin

  • Ignoring the DOCTYPE element while parsing the xml

    I am using JAXB parser to read from and write into my xml file using java code. My xml file contains a DOCTYPE element pointing to a .dtd file which does not exist, due to which I get a FileNotFoundException when JAXB tries to read the xml file. Hence, after unmarshalling the xml file using jaxb, I use a SAXParser to get an XMLReader which removes this DOCTYPE element as given below -
    SAXParserFactory parserFactory = SAXParserFactory.newInstance();
    parserFactory.setValidating(false);
    XMLReader reader = parserFactory.newSAXParser().getXMLReader();
    reader.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
    After making the required changes to the xml file and marshalling it back, I then use an XMLWriter to add the DOCTYPE element back to the xml file as given in the code snippet below -
    SAXReader saxReader = new SAXReader();
    Document document = saxReader.read(_file);
    document.addDocType(rootElement, publicUri, systemUri);
    XMLWriter output = new XMLWriter(new FileWriter( _file ));
    output.write( document );
    output.close();
    Right now I am using both, the JAXB parser to read from and write into the xml file and SAXParser/SAXRader just to delete/add the DOCTYPE element. I want to avoid using two different parsers in my class and want to know if JAXB provides any mechanism to delete and then add this element while parsing the xml file.

    Standard answer for this FAQ: set an EntityResolver on your parser that sends an empty string instead of the DTD. The API docs have an example that you could modify to do that.

  • Getting an out of memory exception while validating my XML against a XSD

    Hello friends,
    I have asked this question in following thread too. Pasting it again here just to saye your time
    http://forum.java.sun.com/thread.jspa?threadID=690812&tstart=0
    I am getting an Out Of Memory exception while validating my XML against a given XSd which is huge.
    SAXParserFactory saxParserFactory = SAXParserFactory.newInstance();
            saxParserFactory.setValidating(true);
              SAXParser saxParser = saxParserFactory.newSAXParser();
             saxParser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");
             saxParser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaSource",new File("C:/todelxsd.xsd")); as u may see the darkened code. this basically Loads the XSD in Memmory , and JVM throws an out of Memory exception. is there any other way round of validating an XML against an XSD where i dont have to load my XSD if not then kindly let me know the solution for above problem .
    Thanks.

    Yes, but increasing the heap size is a temporary solution , isnt there a way where the XML can be validated against an XSD without having to load XSD in memory

  • How to get the XML messages from JMS Queue in BPM

    I have one requirement in my application.we are sending XML messages to the JMS Queue.How to get the XML messages from JMS Queue and how to Extract the details from XMl.
    can you please send me the code to get the XML messages from the JMS Queue.
    Thank you,

    Hi,
    Sure others will have some other ideas, but here's what I typically do to get the XML from a JMS queue. Inside the Global Automatic that pops the messages off the queue you'd have logic similar to this:
    artifactInfoNodes as Any[]
    xmlObject as Fuego.Xml.XMLObject = XMLObject()
    load xmlObject using xmlText = message.textValue
    . . . Once you have this, it's a matter of deciding what you want to do with the message. Most times you'll parse the XML (using XPATH statemens), set argument variables and create a work item instance.
    Hope this helps,
    Dan

  • Intallation is being rolled back post deploying the SP1

    Trying to deploy SP1 across all win 7 systems. It's being successfully installed when PCs are not in domain but for Domain joined system it's being rolled back post initial installation and reboot. Please help me do get rid of this issue.

    Hello Tech Olive,
    What do you mean of the sentence ‘for Domain joined system it's being rolled back post initial installation and reboot’? the domain-joined systems keep roll back to install the Windows 7 service package 1?
    How do you deploy the Windows 7 service package 1?
    Do you receive any error messages in the domain-joined Windows 7?
    Please take the following steps for troubleshooting:
    1. Check if we can install the Service Package manually.
    2. As you mentioned that only domain-joined computer can't normally install the Windows 7 service package 1. I think it is related to domain setting. Please confirm with the domain administrator to check if there are group policy or setting to block the
    installation
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • A serious problem occurred while installing the iPlanet Messaging Server Init Config

    Hi I have this error while working with iMS5.x and iAS6.5. As long as iMS is the only product installed, nothing is the problem. If I try installing iMS after iAS installed, it points an error. I dont know whats the reason. The following is the message that I got:
    <b>
    A serious problem occurred while installing the iPlanet Messaging Server Init Co
    nfig. It reported the following problem:
    The application command "jre -cp "/train/iplanet/server5/bin/msg/imta/classes/im
    taconfig.jar" com.iplanet.msg.imta.config.InitConfig -d iplanet1.com -r iplanet1
    .com -h shivaram.sun.com -c /train/iplanet/server5/msg-shivaram-2/imta/config" c
    ould not be run.
    Press any key to continue.
    ON PRESSING ANY KEY, I GET...
    Due to a serious problem the iPlanet Messaging Server installer is unable to con
    tinue. Please examine the log file "/train/iplanet/server5/setup/msg/iplanet-ms
    g-install.log" for more information.
    Press any key to continue.
    </b>
    The content of "/train/iplanet/server5/setup/msg/iplanet-msg-install.log" file is:
    <b>
    Installer log started.
    GMT: 20020426225748Z
    NOTICE: Creating Common Product Configuration.
    NOTICE: Running Directory Setup.
    MESSAGE: running command
    /train/iplanet/server5/install/perl /train/iplanet/server5/bin/msg/install/bin/ims_dssetup.pl -i yes -c /train/iplanet/server5 -d slapd-shivaram -r "o=internet" -u "o=isp" -s yes -S /train/iplanet/server5/bin/msg/install/bin/config
    cmdpath: none
    runpath: none
    NOTICE: Creating Messaging Product Information in LDAP.
    NOTICE: Creating Messaging users/groups information in LDAP.
    NOTICE: Creating Messaging file links.
    NOTICE: Running PostInstall Product After Hook.
    MESSAGE: running command
    perl prod-post-aft-hook.pl /train/iplanet/server5
    cmdpath: /train/iplanet/server5/install
    runpath: /train/iplanet/server5/bin/msg/install/bin
    NOTICE: Creating Instance Name.
    NOTICE: Creating Messaging Common Instance Files.
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/configutil /train/iplanet/server5/msg-shivaram-2/configutil
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/counterutil /train/iplanet/server5/msg-shivaram-2/counterutil
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/expire /train/iplanet/server5/msg-shivaram-2/expire
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/getconf /train/iplanet/server5/msg-shivaram-2/getconf
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/refresh /train/iplanet/server5/msg-shivaram-2/refresh
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/setconf /train/iplanet/server5/msg-shivaram-2/setconf
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/start-msg /train/iplanet/server5/msg-shivaram-2/start-msg
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/stop-msg /train/iplanet/server5/msg-shivaram-2/stop-msg
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/start-ens /train/iplanet/server5/msg-shivaram-2/start-ens
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/stop-ens /train/iplanet/server5/msg-shivaram-2/stop-ens
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/README.txt /train/iplanet/server5/msg-shivaram-2/README.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imsimta /train/iplanet/server5/msg-shivaram-2/imsimta
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/ChannelDefaults.opt /train/iplanet/server5/msg-shivaram-2/imta/config/ChannelDefaults.opt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/big5.txt /train/iplanet/server5/msg-shivaram-2/imta/config/big5.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/cns11643.txt /train/iplanet/server5/msg-shivaram-2/imta/config/cns11643.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/gb2312.txt /train/iplanet/server5/msg-shivaram-2/imta/config/gb2312.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/jis0208.txt /train/iplanet/server5/msg-shivaram-2/imta/config/jis0208.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/jis0212.txt /train/iplanet/server5/msg-shivaram-2/imta/config/jis0212.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/ksx1001.txt /train/iplanet/server5/msg-shivaram-2/imta/config/ksx1001.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/charnames.txt /train/iplanet/server5/msg-shivaram-2/imta/config/charnames.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/charsets.txt /train/iplanet/server5/msg-shivaram-2/imta/config/charsets.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/charsets_ps.txt /train/iplanet/server5/msg-shivaram-2/imta/config/charsets_ps.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/charsubs.txt /train/iplanet/server5/msg-shivaram-2/imta/config/charsubs.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/countries.txt /train/iplanet/server5/msg-shivaram-2/imta/config/countries.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/dirsync.opt /train/iplanet/server5/msg-shivaram-2/imta/config/dirsync.opt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/dispatcher.cnf /train/iplanet/server5/msg-shivaram-2/imta/config/dispatcher.cnf
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/dl_auth.map /train/iplanet/server5/msg-shivaram-2/imta/config/dl_auth.map
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/dns_canonical.rules /train/iplanet/server5/msg-shivaram-2/imta/config/dns_canonical.rules
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/imta_tailor /train/iplanet/server5/msg-shivaram-2/imta/config/imta_tailor
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/internet.rules /train/iplanet/server5/msg-shivaram-2/imta/config/internet.rules
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/job_controller.cnf /train/iplanet/server5/msg-shivaram-2/imta/config/job_controller.cnf
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/languages.txt /train/iplanet/server5/msg-shivaram-2/imta/config/languages.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/magic.dat /train/iplanet/server5/msg-shivaram-2/imta/config/magic.dat
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/maximum.dat /train/iplanet/server5/msg-shivaram-2/imta/config/maximum.dat
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/maximum_charset.dat /train/iplanet/server5/msg-shivaram-2/imta/config/maximum_charset.dat
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/maximum_command.dat /train/iplanet/server5/msg-shivaram-2/imta/config/maximum_command.dat
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/name_content.dat /train/iplanet/server5/msg-shivaram-2/imta/config/name_content.dat
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/option_charset.dat /train/iplanet/server5/msg-shivaram-2/imta/config/option_charset.dat
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_bounced.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_bounced.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_deferred.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_deferred.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_delayed.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_delayed.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_delivered.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_delivered.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_failed.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_failed.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_forwarded.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_forwarded.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_header.opt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_header.opt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_prefix.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_prefix.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_suffix.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_suffix.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/config/locale/C/LC_MESSAGES/return_timedout.txt /train/iplanet/server5/msg-shivaram-2/imta/config/locale/C/LC_MESSAGES/return_timedout.txt
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/bin/sendmail /train/iplanet/server5/msg-shivaram-2/imta/bin/sendmail
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/bin/cshrc /train/iplanet/server5/msg-shivaram-2/imta/bin/cshrc
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/imta/bin/kshrc /train/iplanet/server5/msg-shivaram-2/imta/bin/kshrc
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/attach_fs.html /train/iplanet/server5/msg-shivaram-2/html/attach_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/collect_fs.html /train/iplanet/server5/msg-shivaram-2/html/collect_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/comp_fs.html /train/iplanet/server5/msg-shivaram-2/html/comp_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fldr_fs.html /train/iplanet/server5/msg-shivaram-2/html/fldr_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/frame.html /train/iplanet/server5/msg-shivaram-2/html/frame.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ldap_fs.html /train/iplanet/server5/msg-shivaram-2/html/ldap_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/mbox_fs.html /train/iplanet/server5/msg-shivaram-2/html/mbox_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/msg_fs.html /train/iplanet/server5/msg-shivaram-2/html/msg_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/opts_fs.html /train/iplanet/server5/msg-shivaram-2/html/opts_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/receipt_fs.html /train/iplanet/server5/msg-shivaram-2/html/receipt_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/compRecipient.js /train/iplanet/server5/msg-shivaram-2/html/compRecipient.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/editPabEntry.js /train/iplanet/server5/msg-shivaram-2/html/editPabEntry.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/form.js /train/iplanet/server5/msg-shivaram-2/html/form.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/editPabGroup.js /train/iplanet/server5/msg-shivaram-2/html/editPabGroup.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/lookup.js /train/iplanet/server5/msg-shivaram-2/html/lookup.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/main.js /train/iplanet/server5/msg-shivaram-2/html/main.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/pab.js /train/iplanet/server5/msg-shivaram-2/html/pab.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/util.js /train/iplanet/server5/msg-shivaram-2/html/util.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/en/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/default.html /train/iplanet/server5/msg-shivaram-2/html/en/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/en/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/en/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/en/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/mail.html /train/iplanet/server5/msg-shivaram-2/html/en/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/en/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/help2.htm /train/iplanet/server5/msg-shivaram-2/html/en/help2.htm
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/ix.htm /train/iplanet/server5/msg-shivaram-2/html/en/ix.htm
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/topics.htm /train/iplanet/server5/msg-shivaram-2/html/en/topics.htm
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/i18n.js /train/iplanet/server5/msg-shivaram-2/html/en/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/en/iplanet.jpg /train/iplanet/server5/msg-shivaram-2/html/en/iplanet.jpg
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/ja/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/default.html /train/iplanet/server5/msg-shivaram-2/html/ja/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/ja/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/ja/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/ja/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/mail.html /train/iplanet/server5/msg-shivaram-2/html/ja/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/ja/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ja/i18n.js /train/iplanet/server5/msg-shivaram-2/html/ja/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/ko/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/default.html /train/iplanet/server5/msg-shivaram-2/html/ko/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/ko/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/ko/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/ko/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/mail.html /train/iplanet/server5/msg-shivaram-2/html/ko/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/ko/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/ko/i18n.js /train/iplanet/server5/msg-shivaram-2/html/ko/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/de/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/default.html /train/iplanet/server5/msg-shivaram-2/html/de/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/de/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/de/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/de/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/mail.html /train/iplanet/server5/msg-shivaram-2/html/de/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/de/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/de/i18n.js /train/iplanet/server5/msg-shivaram-2/html/de/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/fr/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/default.html /train/iplanet/server5/msg-shivaram-2/html/fr/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/fr/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/fr/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/fr/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/mail.html /train/iplanet/server5/msg-shivaram-2/html/fr/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/fr/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/fr/i18n.js /train/iplanet/server5/msg-shivaram-2/html/fr/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/es/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/default.html /train/iplanet/server5/msg-shivaram-2/html/es/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/es/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/es/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/es/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/mail.html /train/iplanet/server5/msg-shivaram-2/html/es/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/es/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/es/i18n.js /train/iplanet/server5/msg-shivaram-2/html/es/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/default.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/editPabGroup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/lookup_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/lookup_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/mail.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/mail.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/pab_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-CN/pab_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-CN/i18n.js /train/iplanet/server5/msg-shivaram-2/html/zh-CN/i18n.js
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-TW/compRecipient_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-TW/compRecipient_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-TW/default.html /train/iplanet/server5/msg-shivaram-2/html/zh-TW/default.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-TW/editPabEntry_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-TW/editPabEntry_fs.html
    cmdpath: none
    runpath: none
    MESSAGE: running command
    cp /train/iplanet/server5/bin/msg/install/templates/msg-inst/msg/html/zh-TW/editPabGroup_fs.html /train/iplanet/server5/msg-shivaram-2/html/zh-TW/editPabGroup_fs.html
    cmdpath: none

    You are probably installing on a hardened machine.
    The "installation guide" says that if you are doing so, you need to create a file named libx11.so.4 and update your LD_LIBRARY_PATH (see http://docs.iplanet.com/docs/manuals/messaging/ims52/ig/unix/overview.htm)but:
    1- the library name is libX11.so.4 and
    2- for jre a common file is not enough, you need to install SUNWxwplt at least. This will install the library on /usr/openwin/lib.
    You can check the results running <server-root>/bin/base/jre/bin/jre
    Hope that helps and sorry about my poor english.

  • Error VLD-1108 while validating the mapping in owb 11g

    Hi All,
    I am using owb 11.1.0.7.0. I am new to owb 11g. I am getting the following error while validating the mapping
    error: VLD-1108 . Operator requires more input or output connections in order to generate mapping code.
    I am using a function as operator and mapping it with the table.
    Please tell me the solution for this. Its urgent
    Thanks in advance,
    Siva

    Hi,
    u must be using a procedure or table function that is called in the mapping for execution. When writing the function u would have specified 3 inputs but in the mapping u would have given only 2. check the number of inputs and make sure they match.
    Regards
    Bharadwaj Hari

  • Reading the XML message from Xi stored in XML format from a abap program.

    Hi Gurus,
    My requirement here is to read the data that will be coming from Xi from my custom abap program and updating 2 data base tables. The method is after the data mapping is done a class is generated in abap proxy in which a method is available. Inside the method i am writing the code for getting the Xi data stored as a payload message which can be seen in the transaction SXMB_MONI. My code is given below.
    ***begin code***
    method ZII_PAYROLL_HEADER_IN~PAYROLL_HEADER_IN.
    **** INSERT IMPLEMENTATION HERE **** ***
    data: ln type i.
    DATA: i_items TYPE TABLE OF ZPAYLOAD_WRAPPER_EMPLOYEE_REC3.
    *DATA: wa_items type ZPAYLOAD_WRAPPER_EMPLOYEE_TAB5.
    data: wa_items type ZPAYLOAD_WRAPPER_EMPLOYEE_REC3.
    DATA:PERNR TYPE STRING.
    *data: it_ZPAYLOAD_WRAPPER16  TYPE ZPAYLOAD_WRAPPER16.
    I_ITEMS[] = INPUT-PAYLOAD_WRAPPER-BODY-XMLDOC-PAYROLL_PERIOD_OVERVIEW-EMPLOYEE_RECORD[].
    *I_ITEMS = INPUT-payloadWrapper-Body-XMLDOC-PayrollPeriodOverview-EmployeeRecord.
    describe table i_items[] lines ln.
    endmethod.
    **End code***
    As per the logic the data stored in the XML message should be avaialble in INPUT-payloadWrapper-Body-XMLDOC-PayrollPeriodOverview-EmployeeRecord which i am assigning to a local internal table in the class.
    But in my case there is no data coming in
    INPUT-payloadWrapper-Body-XMLDOC-PayrollPeriodOverview-EmployeeRecord.
    But i can see the data transffered from XI in the transaction SXMB_MONI->XML message->inbound message->payload.
    Is there any way to read the data stored in the XML message in the transaction SXMB_MONI.
    Also why the data is not coming in
    INPUT-payloadWrapper-Body-XMLDOC-PayrollPeriodOverview-EmployeeRecord inside the class.
    If there is any solution for this problem please post it.

    You can use function module SXMB_GET_MESSAGE_PAYLOAD.
    Code snippet:
    DATA: ls_mast      TYPE sxmspmast,
          ls_msgkey    TYPE sxmsmkey,
          lv_bin_xml   TYPE xstring,
          lv_str_xml   TYPE string.
    * select sxmspmast into ls_mast
      ls_msgkey-msgid  = ls_mast-msgguid.
      ls_msgkey-pid    = 'RECEIVER'.
      CALL FUNCTION 'SXMB_GET_MESSAGE_PAYLOAD'
        EXPORTING
          im_msgkey      = ls_msgkey
          im_archive     = ' '
          im_version     = ls_mast-vers
        IMPORTING
          ex_msg_bytes   = lv_bin_xml
        EXCEPTIONS
          not_authorized = 1
          no_message     = 2
          internal_error = 3
          no_payload     = 4
          OTHERS         = 5.
      IF sy-subrc EQ 0.
          lv_str_xml = cl_soap_moni_helper=>convert_xstring_to_string( xstring_in = lv_bin_xml ).
      ENDIF.

  • Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site

    Have an existing ex2010 sp3 organization.
    Could not run ex2013cu1 setup from my newly built 2012 server, getting the error in the subject line.  I used the command line to run the AD preparation steps successfully from my 2012 DC/GC, then tried to run setup again from the new 2012 server and
    still get the same error.  The error itself in the log is pretty useless:
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0137] [0] Starting Microsoft Exchange Server 2013 Cumulative Update 1 Setup
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0152] [0] Local time zone: (UTC-08:00) Pacific Time (US & Canada).
    [05/07/2013 01:19:13.0152] [0] Operating system version: Microsoft Windows NT 6.2.9200.0.
    [05/07/2013 01:19:13.0152] [0] Setup version: 15.0.620.29.
    [05/07/2013 01:19:13.0152] [0] Logged on user: DOMAIN\ADMINISTRATOR.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='sourcedir', Value='\\h1\f$\junk\installers\server\Exchange\2013cu1'.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='mode', Value='Install'.
    [05/07/2013 01:19:13.0215] [0] RuntimeAssembly was started with the following command: '/sourcedir:\\SERVER\f$\junk\installers\server\Exchange\2013cu1 /mode:Install'.
    [05/07/2013 01:19:13.0215] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0793] [0] Finished loading screen CheckForUpdatesPage.
    [05/07/2013 01:19:38.0762] [0] Finished loading screen UpdatesDownloadsPage.
    [05/07/2013 01:19:40.0496] [0] Starting file's copying...
    [05/07/2013 01:19:40.0496] [0] Setup copy files from '\\SERVER\f$\junk\installers\server\Exchange\2013cu1\Setup\ServerRoles\Common' to 'C:\Windows\Temp\ExchangeSetup'
    [05/07/2013 01:19:40.0700] [0] Finished loading screen CopyFilesPage.
    [05/07/2013 01:19:40.0840] [0] Disk space required: 1292445007 bytes.
    [05/07/2013 01:19:40.0840] [0] Disk space available: 23767240704 bytes.
    [05/07/2013 01:19:59.0762] [0] File's copying finished.
    [05/07/2013 01:19:59.0965] [0] Finished loading screen InitializingSetupPage.
    [05/07/2013 01:20:02.0934] [0] Setup is choosing the domain controller to use
    [05/07/2013 01:20:09.0325] [0] Setup is choosing a local domain controller...
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    [05/07/2013 01:20:11.0809] [0] Setup will use the domain controller ''.
    [05/07/2013 01:20:11.0809] [0] Setup will use the global catalog ''.
    [05/07/2013 01:20:11.0825] [0] Exchange configuration container for the organization is 'CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0919] [0] Exchange organization container for the organization is 'CN=DOMAIN,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0966] [0] Setup will search for an Exchange Server object for the local machine with name 'WEX1'.
    [05/07/2013 01:20:12.0028] [0] No Exchange Server with identity 'WEX1' was found.
    [05/07/2013 01:20:12.0044] [0] The following roles have been unpacked:
    [05/07/2013 01:20:12.0044] [0] The following datacenter roles are unpacked:
    [05/07/2013 01:20:12.0044] [0] The following roles are installed:
    [05/07/2013 01:20:12.0059] [0] The local server does not have any Exchange files installed.
    [05/07/2013 01:20:12.0075] [0] Server Name=WEX1
    [05/07/2013 01:20:12.0137] [0] Setup will use the path '\\SERVER\f$\junk\installers\server\Exchange\2013cu1' for installing Exchange.
    [05/07/2013 01:20:12.0137] [0] The installation mode is set to: 'Install'.
    [05/07/2013 01:20:27.0591] [0] An Exchange organization with name 'DOMAIN' was found in this forest.
    [05/07/2013 01:20:27.0591] [0] Active Directory Initialization status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Schema Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Organization Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Domain Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0841] [0] Applying default role selection state
    [05/07/2013 01:20:27.0872] [0] Setup is determining what organization-level operations to perform.
    [05/07/2013 01:20:27.0872] [0] Because the value was specified, setup is setting the argument OrganizationName to the value DOMAIN.
    [05/07/2013 01:20:27.0872] [0] Setup will run from path 'C:\Windows\Temp\ExchangeSetup'.
    [05/07/2013 01:20:27.0888] [0] InstallModeDataHandler has 0 DataHandlers
    [05/07/2013 01:20:27.0888] [0] RootDataHandler has 1 DataHandlers
    [05/07/2013 01:20:27.0903] [0] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.  See
    the Exchange setup log for more information on this error.
    [05/07/2013 01:20:27.0935] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:21:04.0154] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:21:04.0154] [0] End of Setup
    [05/07/2013 01:21:04.0154] [0] **********************************************

    Hi,
    The cause is clearly described in the log:
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    I'd suggest you check NIC settings and AD configuration.
    Hope it is helpful.
    Fiona Liao
    TechNet Community Support

Maybe you are looking for