OSB replace action failed..

very urgent help needed.
Scenario:
1. My proxy service (new wsdl based) calls business (legacy wsdl based).
2. I want to transform input format from new format schema to legacy format schema.
3. I write a Xquery and Replace ./* in variable body with Xquery. Binding variable is accepted as $body.
4. Individually tested, works like a charm; but when proxy is exected-throws following error:
BEA-382513: OSB Replace action failed updating variable "body": line 29, column 1: {err}XP0006: "element {http://schemas.xmlsoap.org/soap/envelope/}Body { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type element {http://myURL}SwapnilRequest { {http://www.w3.org/2001/XMLSchema}anyType }
here myURL is namespace defined for input format "SwapnilRequest".
In short, the content of variable "body" are not changed even after transformation.
Please help.
Thanks and Regards,
Swapnil Kharwadkar.

Dear Eric,
Following is Xquery:
(:: pragma bea:global-element-parameter parameter="$aMA_UpdateRQ1" element="ns0:AMA_UpdateRQ" location="AMA_UpdateRQ.xsd" ::)
(:: pragma bea:schema-type-return type="ns1:ListOfAyLoyMemberPortalProspectTopElmt" location="AY%20LOY%20Member%20Portal%20Prospect_blore.wsdl" ::)
declare namespace ay = "http://www.siebel.com/xml/AYRES%20Member%20Information%20–%20Long%20Portal";
declare namespace com = "http://com.finnair";
declare namespace asi = "http://siebel.com/asi/";
declare namespace xf = "http://tempuri.org/GetNewCard_WithSiebel_XQuery/A_getProfile_Xquery/newResponse/";
declare namespace pros="http://com.finnair/prospectProcessing/";
declare function xf:A_blore_QueryByExample_Request($AMA_UpdateRQ as element(com:AMA_UpdateRQ))
as element(asi:ListOfAyLoyMemberPortalProspectTopElmt) {
let $AMA_UpdateRQ := $AMA_UpdateRQ
return
<asi:ListOfAyLoyMemberPortalProspectTopElmt>
<ay:ListOfAyLoyMemberPortalProspect>
<ay:Contact>
<ay:Id>{ data($AMA_UpdateRQ/com:UniqueID/@ID) }</ay:Id>
<ay:ContactId>{ data($AMA_UpdateRQ/com:UniqueID/@ID) }</ay:ContactId>
</ay:Contact>
</ay:ListOfAyLoyMemberPortalProspect>
</asi:ListOfAyLoyMemberPortalProspectTopElmt>
declare variable $AMA_UpdateRQ as element() external;
xf:A_blore_QueryByExample_Request($AMA_UpdateRQ)

Similar Messages

  • BEA-382513: OSB Replace action failed: bad value for type element anyType

    Hello, in OSB I get this strange error message on my XQUERY TRANSFORMATION.
    *<faultstring>BEA-382513: OSB Replace action failed updating variable "response":*
    com.bea.wli.common.xquery.XQueryException:
    *Error parsing XML: {err}XP0006: "*
    *element {http://xmlns.oracle.com/pcbpel/adapter/db/top/CS2AdapterSelectOffenePosten_v0_5}Cs2DebitorOpVieCollection*
    *{ {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }":*
    bad value for type element
    *{http://xmlns.oracle.com/pcbpel/adapter/db/top/CS2AdapterSelectOffenePosten_v0_5}cs2RechungungenResponse*
    *{ {http://www.w3.org/2001/XMLSchema}anyType }*
    *</faultstring>*
    I'm a pl/sql developer and I have no idea what this error message is telling me.
    In this forum I'v read someting about a wrong namespace declaration. I can't see any wrong value on my xml (ok, I'm not the specialist here...)
    Maybe someone of you xquey cracks might have a look at my code?
    This is what I have:
    _1.) a XQuery variable called cs2RechnungenResponse with this content:_
    <cs2:Cs2DebitorOpVieCollection
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:cs2="http://xmlns.oracle.com/pcbpel/adapter/db/top/CS2AdapterSelectOffenePosten_v0_5">
         <cs2:Cs2DebitorOpVie>
              <cs2:f40Konto>333</cs2:f40Konto>
              <cs2:AMT_BEZEICHNUNG>Amt für Gesundheit</cs2:AMT_BEZEICHNUNG>
              <cs2:f40Belnr>555</cs2:f40Belnr>
              <cs2:f40Sohab>S</cs2:f40Sohab>
              <cs2:f40Dmbet>100</cs2:f40Dmbet>
              <cs2:f40Fadat>2011-05-05T00:00:00.000+02:00</cs2:f40Fadat>
              <cs2:f40Valut>2011-05-05T00:00:00.000+02:00</cs2:f40Valut>
              <cs2:f40Mahns/>
              <cs2:f40F40Sj>0</cs2:f40F40Sj>
         </cs2:Cs2DebitorOpVie>
    </cs2:Cs2DebitorOpVieCollection>
    _2. a xquery with this code:_
    (:: pragma bea:global-element-parameter parameter="$cs2RechnungenResponse" element="ns2:cs2RechnungenResponse" location="../adapters/cs2_adapters/xsd/CS2AdapterSelectOffenePosten_v0_5_table.xsd" ::)
    (:: pragma bea:global-element-return element="ns0:getDebitorRechnungResponse" location="../../interfaces/RechnungServiceTypes_v0_6.xsd" ::)
    declare namespace ns3 = "http://www.llv.li/common/types/v1";
    declare namespace ns2 = "http://xmlns.oracle.com/pcbpel/adapter/db/top/CS2AdapterSelectOffenePosten_v0_5";
    declare namespace ns1 = "http://www.llv.li/fin/types/v1";
    declare namespace ns0 = "http://www.llv.li/fin/services/rechnungService/v1";
    declare namespace xf = "http://tempuri.org/fin_sb/RechnungsService/transformations/CARI_CS_2DBAdpter_to_RechnungsServiceGetOffenePosten_v0_5/";
    declare function xf:CARI_CS_2DBAdpter_to_RechnungsServiceGetOffenePosten_v1_0($cs2RechnungenResponse as element(ns2:cs2RechnungenResponse))
    as element(ns0:getDebitorRechnungenResponse) {
    <ns0:getDebitorRechnungenResponse schemaVersion="0.6">
              if ($cs2RechnungenResponse/ns2:Cs2DebitorOpVie) then
              <ns0:debitorRechnungList>
         for $Cs2DebitorOpVie in $cs2RechnungenResponse/ns2:Cs2DebitorOpVie
         return
         <ns0:debitorRechnung>
              <ns1:peid>0</ns1:peid>
              <ns1:rechnungsnummer>{ data($Cs2DebitorOpVie/ns2:f40Belnr) }</ns1:rechnungsnummer>
              <ns1:rechnungsdatum>{ xs:date(fn-bea:remove-timezone-from-dateTime(data($Cs2DebitorOpVie/ns2:f40Fadat))) }</ns1:rechnungsdatum>
              <ns1:faelligAm>{ xs:date(fn-bea:remove-timezone-from-dateTime(data($Cs2DebitorOpVie/ns2:f40Valut))) }</ns1:faelligAm>
         <ns1:behoerde>{ data($Cs2DebitorOpVie/ns2:AMT_BEZEICHNUNG) }</ns1:behoerde>
         <ns1:positionList>
              <ns1:position>
                   <ns1:positionsnummer>1</ns1:positionsnummer>
                                                 <ns1:betrag>{ data($Cs2DebitorOpVie/ns2:f40Dmbet) }</ns1:betrag>
                                                 <ns1:waehrung>
                                                      <ns1:isoCode>CHF</ns1:isoCode>
                                                      <ns1:bezeichnung>Schweizer Franken</ns1:bezeichnung>
                                                 </ns1:waehrung>
              </ns1:position>
              </ns1:positionList>
         <ns1:status>offen</ns1:status>
              if ($Cs2DebitorOpVie/ns2:f40Mahns/text() > "") then
                   <ns1:mahnstufe>{ xs:int(data($Cs2DebitorOpVie/ns2:f40Mahns)) }</ns1:mahnstufe>
              else ()
         </ns0:debitorRechnung>
         </ns0:debitorRechnungList>
         else ()
    <ns0:resultatStatus>
         <ns3:code>Erfolgreich</ns3:code>
         <ns3:beschreibung>Rechnungen aus MFK fehlen</ns3:beschreibung>
    </ns0:resultatStatus>     
    </ns0:getDebitorRechnungenResponse>
    declare variable $cs2RechnungenResponse as element(ns2:cs2RechnungenResponse) external;
    xf:CARI_CS_2DBAdpter_to_RechnungsServiceGetOffenePosten_v1_0($cs2RechnungenResponse)
    _3. this should result in this response, but it doesn't_
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Body xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <v1:getDebitorRechnungenResponse schemaVersion="0.6" xmlns:v1="http://www.llv.li/fin/services/rechnungService/v1">
    <v1:debitorRechnungList>
    <v1:debitorRechnung>
    <v11:peid xmlns:v11="http://www.llv.li/fin/types/v1">333</v11:peid>
    <v11:rechnungsnummer xmlns:v11="http://www.llv.li/fin/types/v1">555</v11:rechnungsnummer>
    <v11:rechnungsdatum xmlns:v11="http://www.llv.li/fin/types/v1">2011-05-05</v11:rechnungsdatum>
    <v11:faelligAm xmlns:v11="http://www.llv.li/fin/types/v1">2011-05-05</v11:faelligAm>
    <v11:behoerde xmlns:v11="http://www.llv.li/fin/types/v1">Amt für Gesundheit</v11:behoerde>
    <v11:positionList xmlns:v11="http://www.llv.li/fin/types/v1">
    <v11:position>
    <v11:positionsnummer>1</v11:positionsnummer>
    <v11:betrag>100</v11:betrag>
    <v11:waehrung>
    <v11:isoCode>CHF</v11:isoCode>
    <v11:bezeichnung>Schweizer Franken</v11:bezeichnung>
    </v11:waehrung>
    </v11:position>
    </v11:positionList>
    <v11:status xmlns:v11="http://www.llv.li/fin/types/v1">offen</v11:status>
    </v1:debitorRechnung>
    </v1:debitorRechnungList>
    <v1:resultatStatus>
    <v11:code xmlns:v11="http://www.llv.li/common/types/v1">Erfolgreich</v11:code>
    <v11:beschreibung xmlns:v11="http://www.llv.li/common/types/v1">Rechnungen aus MFK fehlen</v11:beschreibung>
    </v1:resultatStatus>
    </v1:getDebitorRechnungenResponse>
    </soap-env:Body>
    </soapenv:Envelope>
    But I do not get this expectet result, all I get is the BEA-382513: OSB Replace action failed: bad value for type element anyType?
    Any help would be appreciated.
    Thanks
    Best regards
    rk

    cs2RechungungenResponse or cs2RechnungenResponse ? the error message says cs2RechungungenResponse, but the actual element is cs2RechnungenResponse (one less "u")

  • OSB : BEA-382510: OSB Assign action failed updating variable

    Hi all,
    I just started learning OSB and created a simple process .
    This is my request :
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         </soap:Header>
         <soapenv:Body>
         <hel:getGreeting      xmlns:hel="http://hello.alsb.com/">
         <!--Optional:-->
         <arg0>string</arg0>
         </hel:getGreeting>
         </soapenv:Body>
         </soapenv:Envelope>
    im getting a error response in Assign:
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soapenv:Body>
         <soapenv:Fault>
         <faultcode>soapenv:Server</faultcode>
         <faultstring>
         BEA-382510: OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </faultstring>
         <detail>
         <con:fault      xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-382510</con:errorCode>
         <con:reason>
         OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </con:reason>
         <con:location>
         <con:node>RouteTo_HelloWorldBiz</con:node>
         <con:path>response-pipeline</con:path>
         </con:location>
         </con:fault>
         </detail>
         </soapenv:Fault>
         </soapenv:Body>
         </soapenv:Envelope>
    This is my Xquery:
    xquery version "1.0" encoding "Cp1252";
    declare namespace xf = "http://tempuri.org/GoodbyeWorld_SB/XQuery/Hello_to_GoodBye/";
    declare function xf:Hello_to_GoodBye($helloStr as xs:string)
    as xs:string {
    replace($helloStr, 'HELLO', 'Goodbye')
    declare variable $helloStr as xs:string external;
    xf:Hello_to_GoodBye($helloStr)
    in my message response pipeln of the proxy service:
    i have added the assign and given the expression : $body/hel:getGreetingResponse/return
    var :Test
    After the assign: i have given a replace activity:
    xpath: ./hel:getGreetingResponse/return
    varabile : body
    Expression : string($Test)
    when i test in OSB console:
    im getting this error:
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soapenv:Body>
         <soapenv:Fault>
         <faultcode>soapenv:Server</faultcode>
         <faultstring>
         BEA-382510: OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </faultstring>
         <detail>
         <con:fault      xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-382510</con:errorCode>
         <con:reason>
         OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </con:reason>
         <con:location>
         <con:node>RouteTo_HelloWorldBiz</con:node>
         <con:path>response-pipeline</con:path>
         </con:location>
         </con:fault>
         </detail>
         </soapenv:Fault>
         </soapenv:Body>
         </soapenv:Envelope>
    aany suggestions on where the issue is.
    im totaly stuck here:
    TIA,
    karthik

    it is not clear at which point you are invoking Hello_to_GoodBye, and using which argument
    anyway it's likely that you are passing an Xml element (a node, something like <hello>Charlie</hello>) instead of a simple type (a string, like "Charlie")
    you should use the function data($body/bla) or text ($body/bla/text() ) to extract the value (Charlie) of your element

  • MQ:OSB Assign action failed updating variable "ServiceRequest"

    Hi
    We have a problem with the MQ adapters in Oracle Service Bus.
    If we (by accident/break testing) put messages on the queue that are invalid XML (such as "Banana" as plain text), the OSB goes into an infinte loop with this message, as it can never be dequeued due to:
    <BEA-381901> <Exception in MQ Inbound Request: TransportException EndPoint: T20230_GoodsEvent/ProxyServices/T20230_G
    oodsEvent, com.bea.wli.sb.transports.TransportException: OSB Assign action failed updating variable "ServiceRequest": com.bea.wli.common.xquery.XQueryException: Error parsing XML: {err}FORG0
    005: expected exactly one item, got 0 items
    com.bea.wli.sb.transports.TransportException: OSB Assign action failed updating variable "ServiceRequest": com.bea.wli.common.xquery.XQueryException: Error parsing XML: {err}FORG0005: expect
    ed exactly one item, got 0 itemsThis even prevents the message from being put on the dead letter queue.
    Any hints?

    Correct, but we have tried switching to Text to no avail.

  • OSB Validate action failed validation

    Hi All,
    I'm trying to convert non-xml to xml by using XqueryTransformation source as an HL7 and target as an CCD schema.When validating the against the schema I got the following exception.
    Please provide any suggestions.
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-382505</con:errorCode>
    <con:reason>OSB Validate action failed validation</con:reason>
    <con:details>
    <con1:ValidationFailureDetail xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config">
    <con1:message>
    string value '' does not match pattern for cs in namespace urn:hl7-org:v3
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    <con1:message>
    Element 'title@urn:hl7-org:v3' with empty content type cannot have text or element content.
    </con1:message>
    <con1:xmlLocation>
    <ns0:title xmlns:ns0="urn:hl7-org:v3">XXX</ns0:title>
    </con1:xmlLocation>
    </con1:ValidationFailureDetail>
    </con:details>
    Thanks
    Mani

    Hi Anuj,
    I tried doing that but in Response, it is echoing back the request after the statement:
    The invocation resulted in an error: .
    And now it shows:
    Stage Error Handler
    $fault: <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-382505</con:errorCode>
    <con:reason>OSB Validate action failed validation</con:reason>
    <con:details>
    <con1:ValidationFailureDetail xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config">
    <con1:message>
    string value '2' is not a valid enumeration value for VersionType in namespace http://www.example.org/abcd_Request_Schema
    </con1:message>
    <con1:xmlLocation>
    <abcd:Version xmlns:abcd="http://www.example.org/abcd_Request_Schema">2</abcd:Version>
    </con1:xmlLocation>
    </con1:ValidationFailureDetail>
    </con:details>
    <con:location>
    <con:node>PipelinePairNode1</con:node>
    <con:pipeline>PipelinePairNode1_request</con:pipeline>
    <con:stage>request xml validation</con:stage>
    <con:path>request-pipeline</con:path>
    </con:location>
    </con:fault>
    System Error Handler
    $fault: <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>402</con:errorCode>
    <con:reason>
    Validation Failed. Please enter proper values.
    </con:reason>
    <con:details>
    <con1:ValidationFailureDetail xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config">
    <con1:message>
    string value '2' is not a valid enumeration value for VersionType in namespace http://www.example.org/abcd_Request_Schema
    </con1:message>
    <con1:xmlLocation>
    <abcd:Version xmlns:abcd="http://www.example.org/abcd_Request_Schema">2</abcd:Version>
    </con1:xmlLocation>
    </con1:ValidationFailureDetail>
    </con:details>
    <con:location>
    <con:node>PipelinePairNode1</con:node>
    <con:pipeline>PipelinePairNode1_request</con:pipeline>
    <con:stage>request xml validation</con:stage>
    <con:path>request-pipeline</con:path>
    </con:location>
    </con:fault>
    Is there any way by which only the customized error can be seen & not the OSB errors?

  • OSB Validate action fails even an element is nillable="true"

    Hi,
    I have declared two elements in my inline schema nillable="true":
    <xsd:element name="Skip_CreditChk" nillable="true" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
    <xsd:element name="Observation_End_Date" nillable="true" type="xsd:date" minOccurs="0" maxOccurs="1"/>
    In my OSB message flow, my first action is a Validate action.
    When I test the proxy service in the OSB Console and input the following elements I encounter an OSB validate action failed error even when those fields below are declared as nillable in the schema. Anyone got an idea regarding this issue?
    <Skip_CreditChk/>
    <Observation_End_Date/>

    Please check W3C recommendation -
    http://www.w3.org/TR/xmlschema-0/ (section 2.9 Nil Values)
    Your input should be like -
    <Skip_CreditChk xsi:nil="true"></Skip_CreditChk>
    <Observation_End_Date xsi:nil="true"></Observation_End_Date>
    Regards,
    Anuj

  • I need helop with my ALSB Replace action failed updating variable

    System Error Handler
    $fault:      
         <con:fault      xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-382513</con:errorCode>
         <con:reason>
         ALSB Replace action failed updating variable "body": Error parsing XML: {err}XP0006: "element {http://rep.oio.dk/tinglysning.dk/svarservice/message/anmeldelse/1/}AndelsbogAnmaerkningStatusModtag { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type element {http://rep.oio.dk/tinglysning.dk/schema/anmeldelse/1/}AndelsbogAnmaerkningStatus { {http://www.w3.org/2001/XMLSchema}anyType }
         </con:reason>
         <con:location>
         <con:node>PipelinePairNode1</con:node>
         <con:pipeline>PipelinePairNode1_response</con:pipeline>
         <con:stage>stage1</con:stage>
         <con:path>response-pipeline</con:path>
         </con:location>
         </con:fault>
    Edited by: user543916 on Jun 28, 2011 2:28 AM

    you should report also the content of the variable you were trying to assign to $body, and which element in $body you were trying to modify.

  • OSB Validate action

    As I have just started working in OSB, so my query is whether I can get a proper error message from OSB validate action against the particular attribute in an XML which is having the wrong input.
    Example : Suppose in my XSD i have defined student's id as integer but in below XML it is coming with a string. So can I get the exact error message stating like attribute 'id' is having a wrong value and so validation failed.
    <Class>
    <student id="123"/>
    </Class>
    Please help.

    The attribute level validation was done through java call out. Had to use sax parser for this..
    here is the code :
    public class XMLValidator {
    static boolean success = true;
    static private String errorMsg = "";
    static String msg = "";
    * @param xsdPath
    * @param payload
    * @return
    public static String XMLValidator(String xsdPath, String payload) {
    String status = "";
    try {
    System.out.println("XSD Path: " + xsdPath);
    System.out.println("Payload: " + payload);
    status = ValidateXML(new URL(xsdPath), payload);
    } catch (MalformedURLException e) {
    return (e.getMessage());
    return (status);
    public static String ValidateXML(URL xsdUrl, String xmlFile) {
    success = true;
    errorMsg = "";
    SAXParser saxParser = new SAXParser();
    saxParser.setValidationMode(XMLParser.SCHEMA_VALIDATION);
    String xmlFilePayload = xmlFile;
    XSDBuilder builder;
    try {
    builder = new XSDBuilder();
    URL url = xsdUrl;
    //System.out.println(url.getPath());
    XMLSchema schemadoc = (XMLSchema)builder.build(url);
    saxParser.setXMLSchema(schemadoc);
    Validator handler = new Validator();
    saxParser.setErrorHandler(handler);
    // saxParser.parse(new FileInputStream(new File(xmlFilePayload)));
    InputStream inputStream =
    new ByteArrayInputStream(xmlFilePayload.getBytes("UTF-8"));
    saxParser.parse(inputStream);
    if (success) {
    msg = "Successfully Validated";
    } else {
    /* writeLogFile(logFileName,
    "[" + counter + "]. " + xmlFileName + "\n" +
    "------------------------------------------------------------------------------------------------------\n" +
    errorMsg + "\n\n\n", true);*/
    msg = errorMsg;
    } catch (XSDException f) {
    System.out.println("XSDException : " + f.getMessage());
    //System.out.println("XSDException : " + f.getMessage());
    } catch (FileNotFoundException f) {
    System.out.println("FileNotFoundException : " + f.getMessage());
    } catch (SAXException f) {
    System.out.println("SAXException : " + f.getMessage());
    } catch (IOException f) {
    System.out.println("IOException : " + f.getMessage());
    catch (Exception f) {
    System.out.println("IOException : " + f.getMessage());
    return (msg);
    public static class Validator implements ErrorHandler {
    public void error(SAXParseException exception) {
    success = false;
    int separator = exception.getMessage().indexOf(")");
    System.out.println("index "+separator);
    String st = exception.getMessage().substring(separator+1);
    errorMsg = errorMsg + "Error : " + st + "\n";
    //System.out.println("error: " + exception.getMessage());
    public void fatalError(SAXParseException exception) {
    success = false;
    errorMsg =
    errorMsg + "Fatal Error : " + exception.getMessage() + "\n";
    // System.out.println("fatalError: " + exception.getMessage());
    public void warning(SAXParseException exception) {
    success = false;
    errorMsg = errorMsg + "Warning : " + exception.getMessage() + "\n";
    //System.out.println("warning: " + exception.getMessage());
    }

  • OSB Replace

    Hi,
    cant we do a replace action on the "fault" variable.
    I was trying this and couldnt do.
    Thanks.

    You can replace the values of $fault variable (for example - Replace ./ctx:errorCode in variable fault with '500'). But you can not change the structure of fault variable.
    $fault variable has a fixed defined schema and you can not replace its content with an XML which does not follow that schema. You can check the schema of $fault variable here:
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/context.html#wp1060634
    Details section of $fault is of type xs:anyType and you can put any custom content there, apart from that you can change the values of errorCode and reason if needed.
    That is one way to send fault back, you can of course define a SOAP Fault if you are using a WSDL based service. Remember that you will need to replace contents of $body and NOT $fault with the SOAP Fault XML that you want to send back.

  • The following actions failed or were not attempted: Configuring network...

    The following actions failed or were not attempted:
    Configuring network
    Starting push notification server.
    ================================
    Hello All,
    I'm trying to do a fresh install of Mac OS X 10.6 Server on my Mac Mini Server and at the end of the setup process I keep getting the above error.
    I connect the Mac Mini Server to my home network using its build in wireless connection and when it asks me for my Primary DNS and Computer name I enter:
    Primary DNS: macminiserver.private
    Computer Name: Mac Mini Server
    I have managed to get it complete the install once without error but I can't seem to be able to replicate the successes and it is driving me nuts Would appreciate any help and/or advice I can get.
    Thanks

    Mac OS X Server expects functional DNS. If you don't have that (and on a NAT'd LAN, you don't have it until you set it up), you'll want to let Mac OS X Server set up its own "runt" DNS server. Once that's set-up and your installation is complete, you can rip it out and replace it with your own full DNS server configuration. And as is the usual course of further confusion here, no, you can't refer to your ISP DNS here, as that's not going to get a translation for NAT'd boxes on your LAN.
    Primary DNS: macminiserver.private
    That's likely asking for a DNS server on your LAN. Press return and see if you can skip that prompt, and see if Mac OS X Server will then (as usual) set up the "runt" DNS server for you for this case.
    Computer Name: Mac Mini Server
    I'd suggest "McNair" or "Foo" or something that'll be less typing than MacMiniServer.example.com, and I'd suggest getting yourself a real and registered domain name. While you can camp out in another domain or can create your own bogus domain name, migrating domains is a hassle and if/when you want to use some of your DNS publicly, you'll need a real and registered domain.

  • One or more post-processing actions failed. Consult the OPP service log for details.

    hi expert plz help me i can't understand here what can i do to resove this error.
    here is the logfile details of output post processor
    ebs- 11i (11.5.10.2)
    os - rhel 4
    [9/2/13 4:54:48 PM] [main] Starting GSF service with concurrent process id = 2984174.
    [9/2/13 4:54:48 PM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [9/2/13 4:54:48 PM] [Thread-14] Service thread starting up.
    [9/2/13 4:54:48 PM] [Thread-15] Service thread starting up.
    [9/2/13 4:59:34 PM] [OPPServiceThread0] Post-processing request 21672063.
    [9/2/13 4:59:35 PM] [2984174:RT21672063] Executing post-processing actions for request 21672063.
    [9/2/13 4:59:35 PM] [2984174:RT21672063] Starting XML Publisher post-processing action.
    [9/2/13 4:59:35 PM] [2984174:RT21672063]
    Template code: PURCHASE_REGISTER_ITEMWISE
    Template app:  CONA
    Language:      en
    Territory:     00
    Output type:   PDF
    [090213_045936406][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [090213_045936407][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [090213_045936408][][EXCEPTION] [DEBUG]  [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [090213_045936408][][EXCEPTION] [DEBUG]  [SECURITY_GROUP_ID]:[0]
    [090213_045936408][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [090213_045936408][][EXCEPTION] [DEBUG]  [NLS_CHARACTERSET]:[US7ASCII]
    [090213_045936408][][EXCEPTION] [DEBUG]  [RESP_APPL_ID]:[-1]
    [090213_045936408][][EXCEPTION] [DEBUG]  [NLS_LANGUAGE]:[AMERICAN]
    [090213_045936408][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MIN]:[1]
    [090213_045936409][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MAX]:[2]
    [090213_045936409][][EXCEPTION] [DEBUG]  [NLS_NUMERIC_CHARACTERS]:[.,]
    [090213_045936409][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=demo.oriplast.com)(PORT=1526)))(CONNECT_DATA=(SID=ORIDEMO)))]
    [090213_045936409][][EXCEPTION] [DEBUG]  [RESP_ID]:[-1]
    [090213_045936409][][EXCEPTION] [DEBUG]  [FND_MAX_JDBC_CONNECTIONS]:[500]
    [090213_045936410][][EXCEPTION] [DEBUG]  [FND_JDBC_USABLE_CHECK]:[false]
    [090213_045936410][][EXCEPTION] [DEBUG]  [USER_ID]:[-1]
    [090213_045936410][][EXCEPTION] [DEBUG]  [NLS_TERRITORY]:[AMERICA]
    [090213_045936410][][EXCEPTION] [DEBUG]  [FND_JDBC_PLSQL_RESET]:[false]
    [090213_045936410][][EXCEPTION] [DEBUG]  [FND_JDBC_CONTEXT_CHECK]:[true]
    [090213_045936418][][EXCEPTION] [DEBUG]  [NLS_DATE_FORMAT]:[DD-MON-RR]
    [090213_045936418][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [090213_045936418][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [090213_045936418][][EXCEPTION] [DEBUG]  [NLS_SORT]:[BINARY]
    [090213_045936418][][EXCEPTION] [DEBUG]  [NLS_DATE_LANGUAGE]:[AMERICAN]
    [090213_045936419][][EXCEPTION] [DEBUG]  [LOGIN_ID]:[-1]
    [090213_045936419][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [090213_045936419][][EXCEPTION] [DEBUG] [APPLTMP]:[/u03/ORIDEMO/LIVE_APPL/livecomn/temp]
    [090213_045936419][][EXCEPTION] [DEBUG]  [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [090213_045936419][][EXCEPTION] [DEBUG]  [sun.boot.library.path]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/i386]
    [090213_045936419][][EXCEPTION] [DEBUG]  [java.vm.version]:[1.4.2_04-b05]
    [090213_045936419][][EXCEPTION] [DEBUG]  [OVERRIDE_DBC]:[true]
    [090213_045936419][][EXCEPTION] [DEBUG] [dbcfile]:[/u03/ORIDEMO/LIVE_APPL/liveappl/fnd/11.5.0/secure/ORIDEMO_demo/oridemo.dbc]
    [090213_045936419][][EXCEPTION] [DEBUG]  [java.vm.vendor]:[Sun Microsystems Inc.]
    [090213_045936420][][EXCEPTION] [DEBUG]  [java.vendor.url]:[http://java.sun.com/]
    [090213_045936420][][EXCEPTION] [DEBUG]  [path.separator]:[:]
    [090213_045936420][][EXCEPTION] [DEBUG] [APPLCSF]:[/u03/ORIDEMO/LIVE_APPL/livecomn/admin]
    [090213_045936420][][EXCEPTION] [DEBUG]  [java.vm.name]:[Java HotSpot(TM) Client VM]
    [090213_045936420][][EXCEPTION] [DEBUG]  [file.encoding.pkg]:[sun.io]
    [090213_045936420][][EXCEPTION] [DEBUG]  [user.country]:[US]
    [090213_045936420][][EXCEPTION] [DEBUG]  [sun.os.patch.level]:[unknown]
    [090213_045936420][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [090213_045936421][][EXCEPTION] [DEBUG] [user.dir]:[/u03/ORIDEMO/LIVE_APPL/livecomn/admin/log/ORIDEMO_demo]
    [090213_045936421][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.4.2_04-b05]
    [090213_045936421][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [090213_045936421][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/endorsed]
    [090213_045936421][][EXCEPTION] [DEBUG]  [os.arch]:[i386]
    [090213_045936421][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[/u03/ORIDEMO/LIVE_APPL/liveappl/fnd/11.5.0/secure/ORIDEMO_demo/oridemo.dbc]
    [090213_045936421][][EXCEPTION] [DEBUG]  [java.io.tmpdir]:[/tmp]
    [090213_045936422][][EXCEPTION] [DEBUG]  [line.separator]:[
    [090213_045936422][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [090213_045936422][][EXCEPTION] [DEBUG]  [os.name]:[Linux]
    [090213_045936422][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MIN]:[1]
    [090213_045936422][][EXCEPTION] [DEBUG]  [cpid]:[2984174]
    [090213_045936422][][EXCEPTION] [DEBUG]  [sun.java2d.fontpath]:[]
    [090213_045936423][][EXCEPTION] [DEBUG] [java.library.path]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/i386/client:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/i386:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/../lib/i386:/u03/ORIDEMO/LIVE_APPL/liveora/iAS/lib:/u03/ORIDEMO/LIVE_APPL/liveora/8.0.6/network/jre11/lib/i686/native_threads:/u03/ORIDEMO/LIVE_APPL/liveora/8.0.6/network/jre11/lib/linux/native_threads:/u03/ORIDEMO/LIVE_APPL/liveappl/cz/11.5.0/bin:/u03/ORIDEMO/LIVE_APPL/liveora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [090213_045936423][][EXCEPTION] [DEBUG]  [java.specification.name]:[Java Platform API Specification]
    [090213_045936423][][EXCEPTION] [DEBUG]  [java.class.version]:[48.0]
    [090213_045936423][][EXCEPTION] [DEBUG] [java.util.prefs.PreferencesFactory]:[java.util.prefs.FileSystemPreferencesFactory]
    [090213_045936423][][EXCEPTION] [DEBUG]  [os.version]:[2.6.9-82.ELsmp]
    [090213_045936424][][EXCEPTION] [DEBUG]  [LONG_RUNNING_JVM]:[true]
    [090213_045936424][][EXCEPTION] [DEBUG]  [user.home]:[/home/appdemo]
    [090213_045936424][][EXCEPTION] [DEBUG]  [user.timezone]:[GMT+05:30]
    [090213_045936424][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.print.PSPrinterJob]
    [090213_045936424][][EXCEPTION] [DEBUG]  [file.encoding]:[ANSI_X3.4-1968]
    [090213_045936424][][EXCEPTION] [DEBUG]  [java.specification.version]:[1.4]
    [090213_045936424][][EXCEPTION] [DEBUG]  [CACHEMODE]:[DISTRIBUTED]
    [090213_045936424][][EXCEPTION] [DEBUG] [java.class.path]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/lib/dt.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/lib/tools.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/rt.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/charsets.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/java/appsborg2.zip:/u03/ORIDEMO/LIVE_APPL/livecomn/java/apps.zip:/u03/ORIDEMO/LIVE_APPL/liveora/8.0.6/forms60/java:/u03/ORIDEMO/LIVE_APPL/livecomn/java]
    [090213_045936424][][EXCEPTION] [DEBUG]  [user.name]:[appdemo]
    [090213_045936424][][EXCEPTION] [DEBUG] [DBCFILE]:[/u03/ORIDEMO/LIVE_APPL/liveappl/fnd/11.5.0/secure/ORIDEMO_demo/oridemo.dbc]
    [090213_045936425][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [090213_045936425][][EXCEPTION] [DEBUG] [java.home]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre]
    [090213_045936425][][EXCEPTION] [DEBUG]  [sun.arch.data.model]:[32]
    [090213_045936425][][EXCEPTION] [DEBUG]  [user.language]:[en]
    [090213_045936425][][EXCEPTION] [DEBUG]  [java.specification.vendor]:[Sun Microsystems Inc.]
    [090213_045936425][][EXCEPTION] [DEBUG]  [java.vm.info]:[mixed mode]
    [090213_045936425][][EXCEPTION] [DEBUG] [logfile]:[/u03/ORIDEMO/LIVE_APPL/livecomn/admin/log/ORIDEMO_demo/FNDOPP2984174.txt]
    [090213_045936425][][EXCEPTION] [DEBUG]  [java.version]:[1.4.2_04]
    [090213_045936425][][EXCEPTION] [DEBUG] [java.ext.dirs]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/ext]
    [090213_045936426][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/rt.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/i18n.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/sunrsasign.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/jsse.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/jce.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/charsets.jar:/u03/ORIDEMO/LIVE_APPL/livecomn/util/java/1.4/j2sdk1.4.2_04/jre/classes]
    [090213_045936426][][EXCEPTION] [DEBUG]  [java.vendor]:[Sun Microsystems Inc.]
    [090213_045936426][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MAX]:[2]
    [090213_045936426][][EXCEPTION] [DEBUG]  [file.separator]:[/]
    [090213_045936426][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [090213_045936426][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [090213_045936426][][EXCEPTION] [DEBUG]  [sun.cpu.endian]:[little]
    [090213_045936426][][EXCEPTION] [DEBUG]  [APPLOUT]:[out/ORIDEMO_demo]
    [090213_045936427][][EXCEPTION] [DEBUG]  [sun.cpu.isalist]:[]
    [9/2/13 4:59:40 PM] [UNEXPECTED] [2984174:RT21672063] java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
            at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
            at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
            at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
            at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
            at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
            at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
            at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
            at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
            at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
            at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
            at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
            at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:153)
    Caused by: java.io.UnsupportedEncodingException: &Encoding
            at sun.io.Converters.getConverterClass(Converters.java:215)
            at sun.io.Converters.newConverter(Converters.java:248)
            at sun.io.ByteToCharConverter.getConverter(ByteToCharConverter.java:64)
            at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:223)
            at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:209)
            at sun.nio.cs.StreamDecoder.forInputStreamReader(StreamDecoder.java:76)
            at java.io.InputStreamReader.<init>(InputStreamReader.java:83)
            at oracle.xdo.parser.v2.XMLReader.setEncoding(XMLReader.java:848)
            at oracle.xdo.parser.v2.XMLReader.checkXMLDecl(XMLReader.java:2718)
            at oracle.xdo.parser.v2.XMLReader.pushXMLReader(XMLReader.java:471)
            at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:263)
            ... 17 more
    [9/2/13 4:59:40 PM] [2984174:RT21672063] Completed post-processing actions for request 21672063.
    [9/2/13 5:10:51 PM] [OPPServiceThread1] Post-processing request 21672114.
    [9/2/13 5:10:51 PM] [2984174:RT21672114] Executing post-processing actions for request 21672114.
    [9/2/13 5:10:51 PM] [2984174:RT21672114] Starting XML Publisher post-processing action.
    [9/2/13 5:10:51 PM] [2984174:RT21672114]
    Template code: PURCHASE_REGISTER_ITEMWISE
    Template app:  CONA
    Language:      en
    Territory:     00
    Output type:   PDF
    [9/2/13 5:10:51 PM] [UNEXPECTED] [2984174:RT21672114] java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
            at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
            at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
            at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
            at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
            at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
            at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
            at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
            at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
            at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
            at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
            at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
            at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:153)
    Caused by: java.io.UnsupportedEncodingException: &Encoding
            at sun.io.Converters.getConverterClass(Converters.java:215)
            at sun.io.Converters.newConverter(Converters.java:248)
            at sun.io.ByteToCharConverter.getConverter(ByteToCharConverter.java:64)
            at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:223)
            at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:209)
            at sun.nio.cs.StreamDecoder.forInputStreamReader(StreamDecoder.java:76)
            at java.io.InputStreamReader.<init>(InputStreamReader.java:83)
            at oracle.xdo.parser.v2.XMLReader.setEncoding(XMLReader.java:848)
            at oracle.xdo.parser.v2.XMLReader.checkXMLDecl(XMLReader.java:2718)
            at oracle.xdo.parser.v2.XMLReader.pushXMLReader(XMLReader.java:471)
            at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:263)
            ... 17 more
    [9/2/13 5:10:51 PM] [2984174:RT21672114] Completed post-processing actions for request 21672114.
    thaks
    pritesh

    hi experts
    thanks for ur replay,
    this issue is occured with only the particular request and this is custom report. i try some step
    down the manager run the cmclean.sql, increease the  processes of output postprocessor but not get the any type of effect on issue...
    and also follow the step that describe in the below doc:
    Output Post Processor (OPP) Log Contains Error "oracle.xdo.parser.v2.XMLParseException: Unexpected EOF" (Doc ID 1273272.1)
    To Bottom
    request log file details below:
    +---------------------------------------------------------------------------+
    CONA Custom: Version : UNKNOWN - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    PURCHASE_REGISTER_ITEMWISE module: Ori - Purchase Register - Item wise (15x12)
    +---------------------------------------------------------------------------+
    Current system time is 02-SEP-2013 17:10:29
    +---------------------------------------------------------------------------+
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_SEGM='02'
    P_CHART_OF_ACCOUNTS_ID='50268'
    p_from_date='2012/04/01 00:00:00'
    p_to_date='2012/04/05 00:00:00'
    P_YES_NO='No'
    XML_REPORTS_XENVIRONMENT is :
    /u03/ORIDEMO/LIVE_APPL/liveora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /u03/ORIDEMO/LIVE_APPL/liveora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    _AMERICA.UTF8
    Report Builder: Release 6.0.8.25.0 - Production on Mon Sep 2 17:10:29 2013
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Enter Username:
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    +------------- 1) PUBLISH -------------+
    Beginning post-processing of request 21672114 on node DEMO at 02-SEP-2013 17:10:51.
    Post-processing of request 21672114 failed at 02-SEP-2013 17:10:51 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    +--------------------------------------+
    +------------- 2) PRINT   -------------+
    +--------------------------------------+
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 02-SEP-2013 17:10:52
    +---------------------------------------------------------------------------+
    i check the document that u all suggest above after that i update u as soon as possible..
    thanks & regards
    pritesh ranjan

  • One or more post-processing actions failed - XML Publisher report

    Hi all, I'm working with the following envinronment:
    Unix platform: HP-UX rp1 B.11.11 U 9000/800
    DB: Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production
    eBS: EBS 11.5.9
    More in detail I have a problem when I run a request to see an XML Publisher Report. The request's status at the end is WARNING.....
    When I click on "View Output" I don't see nothing and inside the "View Log" I have this error:
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 1897375 on node RP1DEV at 10-SEP-2008 14:13:36.
    Post-processing of request 1897375 failed at 10-SEP-2008 14:13:37 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Following the Metalink Note 364547.1 I opened the OPP service log and this is the content:
    [9/10/08 2:51:09 PM] [OPPServiceThread0] Post-processing request 1897433.
    [9/10/08 2:51:09 PM] [72379:RT1897433] Executing post-processing actions for request 1897433.
    [9/10/08 2:51:09 PM] [72379:RT1897433] Starting XML Publisher post-processing action.
    [9/10/08 2:51:09 PM] [72379:RT1897433]
    Template code: XX_MANAGERS
    Template app: AR
    Language: en
    Territory: GR
    Output type: PDF
    [9/10/08 2:51:09 PM] [UNEXPECTED] [72379:RT1897433] java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:187)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:153)
    Caused by: java.io.UnsupportedEncodingException: &Encoding
    at sun.io.Converters.getConverterClass(Converters.java:223)
    at sun.io.Converters.newConverter(Converters.java:263)
    at sun.io.ByteToCharConverter.getConverter(ByteToCharConverter.java:64)
    at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:223)
    at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:209)
    at sun.nio.cs.StreamDecoder.forInputStreamReader(StreamDecoder.java:76)
    at java.io.InputStreamReader.<init>(InputStreamReader.java:83)
    at oracle.xdo.parser.v2.XMLReader.setEncoding(XMLReader.java:848)
    at oracle.xdo.parser.v2.XMLReader.checkXMLDecl(XMLReader.java:2718)
    at oracle.xdo.parser.v2.XMLReader.pushXMLReader(XMLReader.java:471)
    at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:263)
    ... 17 more
    [9/10/08 2:51:09 PM] [72379:RT1897433] Completed post-processing actions for request 1897433.
    Anybody have any idea where the error is ?
    Any help will be appreciated
    Alex

    You are right !!
    The problem is inside the report generated by Oracle Reports
    The XML code, which I retrieve running the report request is the following:
    <?xml version="1.0" encoding="&Encoding"?>
    - <!-- Generated by Oracle Reports version 6.0.8.20.2
    -->
    - <MODULE1>
    - <LIST_G_MANAGER_NO>
    - <G_MANAGER_NO>
    <MANAGER_NO>1000</MANAGER_NO>
    <MANAGER_NAME>Anil Passi</MANAGER_NAME>
    </G_MANAGER_NO>
    - <G_MANAGER_NO>
    <MANAGER_NO>1001</MANAGER_NO>
    <MANAGER_NAME>Martin</MANAGER_NAME>
    </G_MANAGER_NO>
    </LIST_G_MANAGER_NO>
    </MODULE1>
    and the problem is the "&" !!!
    So, inside Oracle Reports, when I try to generate the XML code from a preexisting report, the encoding variable is not set.
    Now, I'm trying to understand how to set it, but I didn't find nothing....
    Somebody knows where can I find a Report's configuration file in order to set this "encoding" ?
    Thanks
    Alex

  • I am attempting to replace a failed hard drive on a F500 Vista laptop. I have a home premium recover

    I am attempting to replace a failed hard drive on a F500 Vista laptop. I have a home premium recovery DVD (1 of 1) and It runs the recovery after a while of loading, and it creates a 24GB partion and loads about 2.6Gb of information on it. the it ejects the disc and asks if I have any suplimental disks, which I don't have. Then it reboots it's self and cycles through reboots for 5 hours, yes I let it do this for 5 hours as the HP site says it could take several hours.
     After this I finally shut down the computer and loaded the hard drive in an ext case and retrieved the above information. I also note that the 250GB drive is shown as a 24GB drive, so I guess it hasn't completed the partions?
    I never get to a Vista window.
    This hard drive does pass the laptop's Bios hard drive check (the former 80GB drive did NOT) and was used to store Old Time Radio shows, until I went to a larger drive.
    The Laptop has a dual core Athlon TK-53 processor and the recovery disc is for 32 bit Vista (and the label in front and license on back don't state Vista 64, just Vista)
    So, Do I need a Vista 64 recovery disc? Should I download the available driver on the HP site and slap in that disc when the Recovery disc finishes and asks for supplimental discs? Might thngs indicate other issues with the laptop?
    I've loaded from scratch XP several times, but this is my 1st Vista experience. Thank you for any help!

    Okay. So I was able to install, and format the new internal HD. Was able to install Lion then Mavericks.  Next, is to try to retrieve my data from my failing old HD.  I bought an enclosure (sled), and have my HD hooked up to my laptop, and it finally showed up in Finder.  So.  Now.  What is next?  I am seeing a screen that shows these folders:  Applications (translate for the PC me = Programs), Library (I am assuming?? these are my various files such as docs, photos, music, etc.) System, opt, and Users.  Should I just try to drag and drop some/all of the folders onto my desktop, then open up the folders and do something with the contents?  Sorry to sound so vague and frankly, rather dumb-sounding, but the nomenclature with a Mac is a bit different than with a PC, and Finder is a little different looking to me than Windows Explorer.  I am relieved to see that I was even able to get this failing drive to show up in the first place, so I feel a little like I could be on borrowed time with it.  I think it may just be bad sectors, since I don't hear any clicking or other mechanical issues with the drive as it spins.  But, any further help with retrieving the data would be VERY much appreciated!!

  • HT1338 How to install OS X on a new HDD to replace a failed drive?

    My sisters MacBook (Late 2006) HDD has failed. I have a spare drive that I would like to install OS X onto to replace the failed drive. Whats the best way to do this and which version of OS is best to install for this model MacBook?

    Hello, it'd be best to use the Original Install Disc while booting the MacBook from it, but a Retail 10.6 Install Disc may work...
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 4GB at least, more if you can afford it)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/
    Buy Snow Leopard > http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    Call Apple Sales...in the US: 1-800-MY-APPLE. Or Support... 1-800-275-2273
    Other countries...
    http://support.apple.com/kb/HE57

  • Is it possible to replace a failed drive with another unused hard drive within an ix12-300r

    I have an ix12-300r with a failed drive in a storage pool - I want to replace the failed drive with one of the other drives in the NAS that are unused (i.e. not part of any other storage pool)
    i.e. Storage Pool consists of 3 drives - disk 1, disk 2 and disk 3.
    Disk 3 has failed.
    Disk 4 is free and not used by any other storage pool.
    Can Disk 4 be pulled out and then put into the place of Disk 3?
    (All disks are the same model/size/speed)

    Hello cayliffe
    Yes!  In you case disk 4 would be usable as a replacement for disk 3.  
    You can remove disk 4 and put it in bay 3 if you wish, however you should be able to set the ix12 to use unused drives as hot spares so the firmware switches to the disk automatically.  In Drive Management > Settings the "Use available drives as hot spares" option will allow your device to use any compatible unused/available disk as a hot spare for any of the storage pools.  
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

Maybe you are looking for

  • IDVD 6 vs. Toast 7

    I have both Toast 7.1 and iDVD 6 installed on my Intel MacBook. I've been using iDVD happily for a year or two (on another computer) but am noticing some quality issues and compression artifacts when I play my created DVDs on the MacBook. This is eve

  • The YouTube app won't let me sign in

    Every time I try to sign in to my account it pops up a message that says "Authentication Failed". I've even tried the 'App-Specific' Password from Google. It stil won't work. Help!!!!

  • Best way for UITextField Validation

    Hi........Every one I am trying to validate the UITextField in 3 ways Regular Expression, NSPredicates, NSCharacterset. if choose NSPredicates - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(

  • Today in Italy, on the main news, probable InDesign error !!!

    La riforma della scuola? Bocciata in grammatica - IlGiornale.it The Italian government has announced new reforms in Education with a leaflet full of errors due to wrong splitting of the words when going to the next line. I am iItalian and have a copy

  • Implemetation of XI in self registratin scenario

    Hi all, we are implementing the self registration scenario in which the supplier fills out a self registration form and after this he compiles a questionnaire. These informations will be stored in the DB prospects which is on a specific client. After