BPM Error - Invalid XML

Hi experts,
I have the following scenarios in PI 7.0 SP20:
An interface that sends a Syncronous Message to BPM (via Webservice) by using the container type S/A Brigde to response to the soap request. However, a strange error occurs when the XML get into the BPM flow and then raising this message error:
HANDLE_SERVICE_EXCEPTION - HANDLE_SERVICE_EXCEPTION
SEND_SYNCHRON - No valid XML Message Specified
I tried to change this interface to send an Asyncronous request, but the message get stuck into the queue in SMQ2 with the status 'SYSFAIL - Permanent Error in BPE', and activating the queue afterwads, the message was processed sucessfully.
The fact is that the sometimes the interface works fine and sometimes the same XML raise this error.
PS: I've tried to stop/start the BPE Engine, clear the old workitens in SWWL, clear the data cache, repeat the Workflow activation in SXI_CACHE, but nothing solved my problem. Does anyone have any idea???
Best regards,
Gilberto

Thanks Jason,
Actually, after many hours spent on this issue, I've got the problem solved.
I had to rebuild the whole BPM flow again in a new object and deleted the older one, and then the interface started to work perfectly, even with the exactly same structure (containers, etc.).
The most problably explanation would be that the workflow builder in ABAP Stack maybe had generated some garbage because BPM was changed sereral times in the Repository, causing this issue.
Regards,
Gilberto

Similar Messages

  • Invalid xml declaration

    Hi all,
    Seem to be having a little difficulty. When I try and load my xml file into MSWord using the template builder I get this error:
    Invalid xml declaration: Line 1, position 5, file pos 4, source: <?xml version="1.0"?> url that then points to my file.
    I am at a total loss as to why this is? I have declared the following. My xml version is declared in line 1.
    BEGIN
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<?xml version="1.0"?>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<PERDUMMY1>');
    FOR v_employee IN csr_employee
    LOOP
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_EMP_NAME>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Last_update_date>' || v_employee.effective_start_date      ||'</Last_update_date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<ID>'           || v_employee.ID                     ||'</ID>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<TITLE>'           || v_employee.TITLE                ||'</TITLE>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Marital_status>'      || v_employee.Marital_status      ||'</Marital_status>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<full_name>'      || v_employee.full_name                ||'</full_name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<last_name>'      || v_employee.last_name                ||'</last_name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<first_name>'      || v_employee.first_name                ||'</first_name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Age>'           || v_employee.Age                    ||'</Age>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<First_Registration>' || v_employee.First_Registration           ||'</First_Registration>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Date_Of_Birth>'      || v_employee.Date_Of_Birth                ||'</Date_Of_Birth>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Gender>'           || v_employee.Gender                ||'</Gender>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Race>'           || v_employee.Race                     ||'</Race>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Personal_Address>'     || replace(v_employee.Personal_Address,'&','and')      ||'</Personal_Address>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Suburb>' || v_employee.Suburb ||'</Suburb>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Province>'      || replace(v_employee.Province,'&','and')           ||'</Province>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Postal_Code>'      || v_employee.Postal_Code               ||'</Postal_Code>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<City_Name>'      || v_employee.City_Name                ||'</City_Name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Home_Phone_Number>' || v_employee.Home_Phone_Number          ||'</Home_Phone_Number>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Cell_Phone_Number>' || v_employee.Cell_Phone_Number          ||'</Cell_Phone_Number>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Batch_Number>'      || v_employee.Batch_Number                ||'</Batch_Number>');
    FOR v_prev_emp IN cur_prev_emp (v_employee.person_id)
    LOOP
    /*For each child record create a group tag <G_PREV_EMP> at the start*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_PREV_EMP>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<employer_name>' || replace(v_prev_emp.employer_name,'&','and')           || '</employer_name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<job_name>' || replace(v_prev_emp.job_name,'&','and')          || '</job_name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<start_date>' || v_prev_emp.start_date || '</start_date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<end_date>' || v_prev_emp.end_date          || '</end_date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Grp>' || v_prev_emp.Grp      || '</Grp>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<LEAV_REAS>' || replace(v_prev_emp.LEAV_REAS,'&','and')           || '</LEAV_REAS>');
    /*Close the group tag </G_NO_CHILD> at the end of child record*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_PREV_EMP>');
    END LOOP;
    FOR v_prev_Qual IN cur_prev_Qual (v_employee.person_id)
    LOOP
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_PREV_qual>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Qual_Type>' || replace(v_prev_qual.Qual_Type,'&','and') || '</Qual_Type>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Qual_date>' || replace(v_prev_qual.Qual_date     ,'&','and')     || '</Qual_date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<GRADE_ATTAINED>'|| replace(v_prev_qual.GRADE_ATTAINED ,'&','and') || '</GRADE_ATTAINED>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<school_name>' || replace(v_prev_qual.school_name,'&','and')     || '</school_name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_PREV_qual>');
    END LOOP;
    FOR v_train IN cur_train (v_employee.person_id)
    LOOP
    /*For each child record create a group tag <G_TRAIN> at the start*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_train>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Course_Name>' || replace(v_train.Course_Name,'&','and') || '</Course_Name>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Course_Desc>' || replace(v_train.Course_Desc,'&','and')          || '</Course_Desc>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Start_date>' || replace(v_train.Start_date,'&','and') || '</Start_date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<END_DATE>' || replace(v_train.END_DATE,'&','and')          || '</END_DATE >');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_train>');
    END LOOP;
    FOR v_MED IN cur_med (v_employee.person_id)
    LOOP
    /*For each child record create a group tag <G_MED> at the start*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_MED>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Test>'           || v_MED.Test               || '</Test>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<CONSULTATION_DATE>' || v_MED.CONSULTATION_DATE           || '</CONSULTATION_DATE>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Result>'           || v_MED.Result          || '</Result>');
    /*Close the group tag </G_NO_CHILD> at the end of child record*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_MED>');
    END LOOP;
    FOR v_ind IN cur_ind (v_employee.person_id)
    LOOP
    /*For each child record create a group tag <G_IND> at the start*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_IND>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Induction_Date>'      || v_IND.Induction_Date               || '</Induction_Date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<Status>'      || v_IND.Status                     || '</Status>');
    /*Close the group tag </G_NO_CHILD> at the end of child record*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_IND>');
    END LOOP;
    FOR v_first IN cur_first (v_employee.person_id)
    LOOP
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<G_first>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<first_Date>'      || v_first.first_Date               || '</first_Date>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_first>');
    END LOOP;
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</G_EMP_NAME>');
    END LOOP;
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</PERDUMMY1>');
    I would be most grateful if anyone out there has any ideas?

    OPen your xml in IE, it will complain about the same thing.
    The xml formed could be wrong.
    can you paste the xml created here >?

  • Error in moni as invalid XML character (Unicode: 0x16) was found

    Hello Experts,
    I am facing an issue in Production interface is Proxy - -> JDBC data is passing in ECC successfully in PI moni it is showing error
    as                  Runtime Exception when executing application mapping program com/sap/xi/tf/_MaterialPlantFromSAP_to_MaterialPlantToDYNAMINE_; Details: com.sap.aii.utilxi.misc.api.BaseRuntimeException; An invalid XML character (Unicode: 0x16) was found in the element content of the document.
    when i try to open the payload it is showing data is too long when i click on open screen is getting hang showing as not responding.I have checked in the ECC it is also showing data is too long when i click on open after 1 min payload is opening when i try to copy the payload and paste in Message mapping test tab again screen is getting hanging when i try to test with 20 or 30 records in Mapping it going through.
    I have downloaded that XML file from ECC moni it is 8.83 MB .
    PI can process this huge file ? please suggest me how to pass data in chunks .And also i am not understanding error is due to Payload has not correct data or Payload is huge.
    Please throw some light on the issue any help is highly appreciated.
    Regards
    Praveen Reddy

    Hi Praveen,
                       you need a HEX editor. Please download one from this link
    http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm
    Here in the editor search for the HEX value 0X16 and see the corrosponding charcater in payload.
    Try getting rid of the character before it reaches Integrtaion engine possibly with java mapping.
    Regards
    Anupam
    Edited by: anupamsap on Jan 4, 2012 6:43 PM

  • XML Parser error Invalid Char

    When using proxy to download data from ECC to XI -- XML parser throws this error --
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: Invalid char #0x1a(:main:, row:1, col:50831067) at com.sap.aii.mappingtool.tf3.Transformer.checkParserException
    Is there are setting to handle such hexadecimal charaters?
    Right now the option is to use java code to scan this XML document for such char's and replace with space before message mapping....I am eager to know a better solution .Thanks

    Hi,
    Did you ever get an answer to this question?
    I'm seeing a similar issue where ECC is sending an invalid character 0x13 in an XML message.  I would have expected the adapter to encode this properly in an XML document.
    Isn't this basic, foundational stuff?  It's preparing and sending an invalid XML document.
    What am I missing and/or what is ECC missing?

  • Outlook 2013 standard error cannot open the outlook window. Invalid XML.

    I have a user that tries to open outlook and gets this error.
    ( Cannot start microsoft outlook. cannot open the outlook window. Invalid XML, the view cannot be loaded.

    Hi,
    Try starting Outlook with the /ResetNavPane command.
    Steps:
    Open the run box (Win-button + R)
    Type: outlook.exe /resetnavpane
    http://wikiclouded.com/cannot-start-microsoft-outlook-invalid-xml-the-view-cannot-be-loaded/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • Error parsing feed: invalid XML: Error Line 1: Content isnot allowed in pr

    Hi I am trying t post a new podcast via iTunes but get an error
    Error parsing feed: invalid XML: Error Line 1: Content is not allowed in prolog
    this is my URL
    http://www.rolandjyoung.pwp.blueyonder.co.uk/podcast/dripodepisode1.mp3
    any ideas?

    That's not a feed, it's a web page. Your feed is at
    http://www.blogtalkradio.com/bluespot.rss
    and this can be subscribed to successfully in iTunes.

  • Xml parsing error: invalid character

    We started receving below error while opening PDF forms in the browser , its started happening from today for several users.   They were using IE and Adobe Reader 10.1
    Any one saw  this error before?
    xml parsing error: invalid character number (error code 14), line 3 , column 264  of file....

    We can see this issue only in Adobe Reader XI (11.0.01), X (10.1.5) And 9.5.3 in OS Win XP and 7.0. This happens only in IE. Fire Fox it works fine.
    We rolled back to Adobe Reader 10.1.3 , works perfect.

  • Mapping error: Character reference "&# 00" is an invalid XML character

    Hi All,
      Iam performing the RFC(R/3) -> PI(7.1) -> SOAP (third party software) ; Synchronous scenario.
    The messages are reaching the PI server , but the a mapping errors is occurring due to dummy characters ""& #00" been sent to the XI system.
    Is this due to the R/3 sending the invalid characters or these been generated in PI system. Would you suggest any notes,patches to resolve the issue?
    "MAPPING">EXCEPTION_DURING_EXECUTE
    com.sap.aii.utilxi.misc.api.BaseRuntimeException:
    Character reference "& # 00" is an invalid XML character
    Many thanks!
    guru

    Hi,
    If you go through this link last page and last para, which says..
    "The only solution is to use a Java mapping before the actual mapping to perform the escaping."
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42
    Regards,
    Sarvesh

  • Invalid InputSource Error using XML Parser V2

    I'm using the following code to read xml from
    a clob field in an Oracle database.
    try
    // Parse xsl and xml documents
    parser = new DOMParser();
    parser.setPreserveWhitespace(true);
    Statement sqlSel=conn.createStatement();
    ResultSet xmlDet=sqlSel.executeQuery("SELECT * FROM USER_XML WHERE IHC_USER_ID='123456789'");
    if (xmlDet.next())
    CLOB xmlCLOB= ((OracleResultSet)xmlDet).getCLOB(2);
    int index=0;
    Reader clobStream=xmlCLOB.getCharacterStream();
    parser.parse(clobStream);
    Everything seems to work fine, and I can
    create a String from the stream which contains the entire XML document. However, if I try to do the above and parse the Stream, or alternatively parse the String resulting from the stream, I get the following Error:
    nvalid InputSource.
    void oracle.xml.parser.v2.XMLError.flushErrors()
    void oracle.xml.parser.v2.XMLError.error(int, int, java.lang.String, java.lang.String, java.lang.String, int, java.lang.Exception, int, boolean)
    void oracle.xml.parser.v2.XMLError.error(oracle.xml.parser.v2.XMLReader, java.lang.String, int, java.lang.Exception, int, boolean)
    void oracle.xml.parser.v2.XMLReader.pushXMLReader(org.xml.sax.InputSource)
    void oracle.xml.parser.v2.XMLParser.parse(java.lang.String)
    void xmlquerydb.testParse()
    void xmlquerydb.main(java.lang.String[])
    Any ideas what could cause this?

    I'm quite sure the xml documents are valid.
    At present, I'm just using booklist.xml,
    which comes as an example with the XML SQL
    utility. The problem is not really with the
    parsing (If I convert the xml into a url then it parses fine).
    My real problem is pulling the document out
    of a CLOB field. Regardless of what I pass to the parser( a string or a stream), or which xml its parsing, I still get the Invalid inputsource error.

  • How to fix the error "Invalid Item ID /index.xml The item you are ....?

    Hi:
    I'm working with collaboration at NW2004 EP 6 SP19. When using some pre-defined pages I get the following error:
    Invalid Item ID
    /index.xml
    The item you are attempting to access does not exist. Check whether the name of the associated repository is correct.
    If I duplicate an existing default template everything works fine, but when customizing I get the error when I execute it from the room.
    Thanks a lot for your time on this thread.
    Regards,
    Rocío.

    Hello experts,
    I have the same error with SAP standard iview announcements.
    How did you fixed it?
    Regards
    Wiebke

  • Dreamweaver stopped working. XML parsing fatal error: Invalid document structure, line1  Tried reloading DW. Didn't work.

    Dreamweaver (CS5) stopped working.  The error message says - XML parsing fatal error: Invalid document structure, line: 1, I tried to reload DW. No change. I also tried to reset the computer to an earlier date before I reloaded. Also didn't work. Can anybody shed some light?

    The first thing to try is Deleting Corrupted Cache.  Be sure to turn on Hidden Files & Folders in your file manager (Win Explorer or Mac Finder).
    http://forums.adobe.com/thread/494811
    If that doesn't help, try Restore Preferences
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    If all else fails, use the CC Cleaner Tools below to wipe DW from your system, followed by a software re-install.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Keep us posted on your results.
    Nancy O.

  • An invalid XML character (Unicode: 0x15) was found  ERROR

    I AM TRYING TO USE JAXB TO UNMARSHAL XML FILE AND GET FOLLOWING ERROR.
    PLEASE HELP.
    THANKS IN ADVANCE
    [java] org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0x15) was found in the element content of the document.
    [java] DefaultValidationEventHandler: [FATAL_ERROR]: An invalid XML character (Unicode: 0x15) was found in the element content of the document.
    [java] Location:
    [java]      at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:232)
    [java]      at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(ErrorHandlerWrapper.java:213)
    [java]      at org.apache.xerces.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:385)
    [java]      at org.apache.xerces.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:315)
    [java]      at org.apache.xerces.impl.XMLScanner.reportFatalError(XMLScanner.java:1294)
    [java]      at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1500)
    [java]      at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:348)
    [java]      at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:539)
    [java]      at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:595)
    [java]      at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
    [java]      at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1125)
    [java]      at grants.impl.runtime.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:142)
    [java]      at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:131)
    [java]      at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:178)
    [java]      at Transfer.main(Transfer.java:20)

    You made the file? Then fix the program that makes it so that it doesn't put that character into the file. Standard XML processors like those used by JAXP will never create invalid XML, so why not use them?

  • OSB 10.31 - Invalid xml error

    Hello,
    after updating a jar file containing a few java callouts I get the following error on a proxy service (shown in OSB console in Conflicts):
    Invalid xml: Expected element 'stage@http://www.bea.com/wli/sb/pipeline/config' instead of 'stage@http://www.bea.com/wli/sb/stages/config' here in element pipeline@http://www.bea.com/wli/sb/pipeline/config
    I tried exporting the proxy service and reading it's XML config. It seems ok - all stages in the pipeline have the same namespace prefixes and definitions. Also, when I compare the XML before and after JAR file update, it's identical.
    This proxy service does not do any java callouts, just calls another proxy service that does. It has XOP/MTOM Support enabled (by value).

    I have this error too.
    There was no indication as to which part of the message flow was causing the error.
    So I deleted bits until the error went away.
    I tracked it down to a Log stage in the Service Error Handler. No idea what was wrong. I deleted it, Saved/Activated, then re-created it, Saved/Activated.
    There was nothing wrong with the stage (validated and tested ok), and I re-created it to be identical to the stage I deleted.
    But the problem went away....

  • Unhandled Error (HTTP Status:500): unmarshal.invalid.xml

    Hello Gurus,
    I am facing a typical problem while assigning users to the Environment in BPC 10.0 NW SP 4.
    In BPC Web interface I am able to see the user list, but when I try to add user and save system pops an error nessage
    Unhandled Error (HTTP Status:500): unmarshal.invalid.xml
    waiting for your expert advice.
    Regards
    Manoj Damle

    Hi Manoj,
    Please see note - 1693703. It says environmentshell is not properly activated.
    Please implement 1615644 to fix the issue.
    Regards,
    Ashish

  • XML-22108: (Error) Invalid Source - URL format is incorrect

    Hi,
    When following statement is executed from PERL getting err msg.
    `$JAVA_RUNTIME org.apache.xalan.xslt.Process -in $work_xml_file -xsl $xsl_file -out $sql_file 2>&1`;
    XML-22108: (Error) Invalid Source - URL format is incorrect.
    XML-22000: (Fatal Error) Error while parsing XSL file (no protocol:xsl file).
    Exception in thread "main" java.lang.NullPointerException
    at oracle.xml.parser.v2.DOMLocator.getPublicId(DOMLocator.java:101)
    at org.apache.xml.utils.DefaultErrorHandler.printLocation(DefaultErrorHandler.java:341)
    at org.apache.xalan.xslt.Process.main(Process.java:1091)
    Kindly help me to resolve the issue.
    Thanks and Regards,
    Vijay

    Hi Alosh,
    Thanks for the reply.
    We are in process of upgrading Oracle Apps R11i into R12. This statement works fine in 11i but not working in R12. I think issue is not with -IN, -XSL and -OUT parameters.
    Thanks and Regards,
    Vijay

Maybe you are looking for

  • How do I burn a iDVD project on more than one computer?

    I created an iDVD (7.1.2) project with three elements. Two iMovies made from iMovie '11 and a presentation made from Keynote (5.1.1). I deleted the chapters in the slide show to help simplify matters and it did cut down on my burning/processing time.

  • Error when deploying an ear file on the weblogic 6.0 admin server

    ####<Feb 6, 2001 8:48:27 AM EST> <Error> <Management> <wSDWAPW95A452> <petstoreServer> <Application Manager Thread> <> <> <141004> <IOException opening application petstore:Name=s3,Type=Application, loading from path C:\bea\wlserver6.0\config\petstor

  • Upload/Select Menu Form

    I'm a rookie with a complex issue: I'm having trouble working through an upload/select option within my form. I have successfully created a form for a client to select from a variety of photos to create a new record in the database. Problem is, they

  • Problem in Starting Analytical Server

    Hi, I was instaled the Hyperion 9.3 license,Shared services, Aanlytical servers in my PC successfully it was running. But after restart my system The Analytical server get corrupted it was not started. After runnig the configuration utility it was wo

  • Need ipod tonight need help fast

    I can load everything up and when its at menu i try n move my finger around the little cirlce and i wont move. i can play a song by hitting play but cant shuffle through them... i already reset it and restored it please help asap im begging some1.