Error in creating the Domain from template in WLS 10.3.2

Hi All,
I am using WLS 10.3.2 and I need to create a domain from the template of my existing domain.
I followed these steps while creating my existing domain:
I chose these 2 while creating my existing domain
** WebLogic Portal - 10.3.2.0*
** Weblogic Portal Collaboration Repository - 10.3.2.0 [wlportal_10.3]*
after Test JDBC Data Sources step where all my tests fail and in the next step
Run Database Scripts: here I am running the Scripts by clicking on Run Scripts button and I get the message Database Load Successful!
everything goes fine and my domain works fine.
Now I am trying to create the domain template based on this domain which I created.
After this step I am trying to create a new domain from the newly created template. I follow the steps given and at the end
Creating Domain: Here it shows the progress and once it reaches 100% it displays the info in a popup window saying CFGFWK-60600: Before booting this domain, it is necessary to run the SQL file located at C:\bea\user_projects\domains\base_domain\security\SQLAuthenticator.sql in order to initialize a domain security admin user in the database.
I assume this message is because while creating the domain from template I did not get the step Run Database Scripts and that is why I get that msg at the end.
So I executed the create_db.cmd file wich is in domain home now I get the msg
+[java] Files=+
+[java] file:/C:/bea/user_projects/domains/local_domain_frm_tmpl/security/SQLAuthenticator.sql+
+[java] Load was succesful+
+[echo] ***** output written to logfile=create_db.log+
so that says DB load was successful now when I tried to start the domain wich is created from the template.....it doesn't start and throws this error:
+<Jun 18, 2010 5:24:07 PM PDT> <Error> <Management> <BEA-141244> <Schema validation errors while parsing C:\bea\user_projects\domains\local_domain_frm_tmpl\config\config.xml - Inval+
id xsi:type qname: 'wsrp:wsrp-identity-asserterType' in element realm@http://xmlns.oracle.com/weblogic/domain>
+<Jun 18, 2010 5:24:07 PM PDT> <Error> <Management> <BEA-141244> <Schema validation errors while parsing C:\bea\user_projects\domains\local_domain_frm_tmpl\config\config.xml - C:\be+
a\user_projects\domains\local_domain_frm_tmpl\<unknown>:11:9: error: failed to load java type corresponding to t=wsrp-identity-asserterType@http://www.bea.com/ns/wlp/90/security/ws
rp>
+<Jun 18, 2010 5:24:07 PM PDT> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: [Management:141245]Schema Validation Error in C:\bea\user_projects\domains\local_doma+
in_frm_tmpl\config\config.xml see log for details. Schema validation can be disabled by starting the server with the command line option: -Dweblogic.configuration.schemaValidationE
nabled=false>
+<Jun 18, 2010 5:24:07 PM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>+
+<Jun 18, 2010 5:24:07 PM PDT> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>+
+<Jun 18, 2010 5:24:07 PM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>+
Stopping PointBase server...
PointBase server stopped.
seems that this error now has something to do with config.xml........
Any suggestions.......???
Thanks,
Win

Hi Win35,
Your Error Indicates that ...may be u are trying to Manually Edit the "config.xml" Security Realm Part.. There something is wrong...
<Jun 18, 2010 5:24:07 PM PDT> <Error> <Management> <BEA-141244> <Schema validation errors while parsing C:\bea\user_projects\domains\local_domain_frm_tmpl\config\config.xml - Invalid xsi:type qname: 'wsrp:wsrp-identity-asserterType' in element realm@http://xmlns.oracle.com/weblogic/domain>
<Jun 18, 2010 5:24:07 PM PDT> <Error> <Management> <BEA-141244> <Schema validation errors while parsing C:\bea\user_projects\domains\local_domain_frm_tmpl\config\config.xml - C:\bea\user_projects\domains\local_domain_frm_tmpl\<unknown>:11:9: error: failed to load java type corresponding to t=<font color=maroon>wsrp-identity-asserterType@http://www.bea.com/ns/wlp90/security/wsrp</font>>
*This specially happens when working in Nopepad/TextPad ...in the Schema declaration  (At the top 2-3 Lines) of "config.xml" file some Spaces or Special Characters OR a Line Break occurs gets included...*
Thanks
Jay SenSharma
http://weblogic-wonders.com/weblogic (WebLogic Wonders Are here)

Similar Messages

  • Error while creating the view from one instance to another instance

    Hi Experts
    I want to Create a view which reside in one instance for example xxx Instance . I want to create the same view which reside in xxx instance to another instance for example YYY Instance How to acheive this ?
    I tried desc the View take the view script from XXX instance and copied the view script to YYY instance when I compiled Iam getting an Error
    For Example My view in XXX Instance
    CREATE OR REPLACE FORCE VIEW xxx.sample
    First_name,
    last_name
    as
         select "F_NAME",
                 "L_NAME"
         FROM  EMP;When try to copy and compile the same view in my YYY Instance
    i am getting error
    ORA: table or view does not exist
    Advance Thanks
    AT

    A.T wrote:
    Hi Experts ,
    Thanks For all your valuable information I amTrying Of DB Link i think so
    As per My understanding If wrong anywhere please advice me
    Here Instance is Like : One DB 10g divided into several Instance like (test , devlopement , production Instance)
    Now hope i ll make my req clear .
    Coming to my reqirement
    the actual table EMP is in xxi.TEST (Here xxi => Schema and test is an Instance )
    I want to create the view which is based on by table EMP which in my test instance to devoplment instance
    For example xxo.development (here xxo => Schema and development is an Instance )
    Need to access the xxi schema in Test Instance How can I create a DB Link please share your ideas and advice me
    Advance Thanks
    ATIt's still not at all clear, but let me outline what I think you are after
    Given a database, ORCL_A
    In database ORCL_A we have a schema, HALFTRACK
    User HALFTRACK has a table, MYSTUFF
    Given a database, ORCL_B
    In database ORCL_B we have a user GREENBRASS
    User GREENBRASS needs to be able to query the table HALFTRACK.MYSTUFF.
    In database ORCL_B, as user GREENBRASS
    create database link mylink
    connect to halftrack identified by halftracks_pswd
    using ORCL_A;
    select * from mytable@mylink;The db link defines a connection specification to ORCL_A, using the credentials of a user on ORCL_A. The target of the USING clause in the link definition must be an entry in the tnsames.ora file on the server hosting database ORCL_B.
    When querying through the link, database ORCL_B is simply acting as a client to ORCL_A, no different that a sqlplus session on ORACL_B's server. As far as ORCL_A is concerned, ORCL_B is just another client requesting a connection, connecting with the credentials defined in the link definition.

  • Error while Opening the report  from template builder

    hi all,
    After log in in the BI publisher template builder, tried to Open the report from the report Template . Then the message is displayed as Error occurred: ‘Please check the settings and try again’.
    I am using the OBIEE 10.1.3.3 version and Ms-Office 2000......
    Please give me the solution very urgent............
    Regards

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • WWC-00000 error while creating the user

    Any one can help me on the WWC-00000 error while creating the
    user from the Admin tab of Oralce Portal. In fact I can't use
    the Login server administration. same problem exists.
    I granted DBA privileges to the PORTAL30, just to verify and NO
    use.
    I am using the latest version of Portal S/W on iAS9i 1.0.2.2.1
    - Suneel

    Hi Suresh,
    This error trace is not sufficient to understand the issue and at what step you got this error.
    First tell me, did you got the User Admin Tab in your portal access. if yes.. did you got the next step...which is Identity Management. Please elaborate when did you got this error (i mean at what step) after that only we can give it a try.
    Thanks,
    Vinod

  • Create bid invit. from template in two different ways has different consequ

    Hi everybody
    "Create bid invit. from template in two different ways has different consequuences"
    When I create a bid invitation from a previous template, from the template search results (Icon_create SAPLBBP_BID_INV 1010) my bid is published but then stay in the model search and the status is wating for approval. But no workflow started in BBP_PD.
    If I use the same template for creating a new bid from the detail using the create bid invitation button, the bid invitation is created correctly.
    I have configured the two events for the BUS2200 object and both of them have an initial condition.
    It seems that the two actions trigger different events or something like that
    Does anybody why it is occurring this and how I could link the workflow without approval for this case.
    Thanks

    Hi
    What SRM version are you using ?
    <b>Please see these SAP OSS notes / links, which might help -></b>
    <u>Note 976752 - Bidding Worklfows are not triggered correctly
    Note 941417 - Creating a bid invitation from template in the background
    Note 971752 - Incorrect approval preview in bid approval
    Note 741372 - Separating template search from bid invitation search
    Note 764028 - New bid invitation items not visible in bid
    Note 996907 No approval preview for bid after note 976752
    Note 765771 Workflow error when creating a purchase order from bid
    Note 790930 No warning message in case of jump from bid</u>
    Regards
    - Atul

  • Error while creating the HTTP client with destination GB_DPSRetrieve

    Hi All,
    It is an interface R/3 -->XI --> HTTP ( proxy to HTTP ).
    Please find the error log below and throw some light why the HTTP adapter is getting error -
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SAP="http://sap.com/xi/XI/Message/30">
    - <SOAP:Header>
    - <SAP:Main xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" versionMajor="003" versionMinor="000" SOAP:mustUnderstand="1" wsu:Id="wsuid-main-92ABE13F5C59AB7FE10000000A1551F7">
      <SAP:MessageClass>SystemError</SAP:MessageClass>
      <SAP:ProcessingMode>synchronous</SAP:ProcessingMode>
      <SAP:MessageId>DC98499F-7E42-74F1-A41F-0017A4107EE6</SAP:MessageId>
      <SAP:RefToMessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:RefToMessageId>
      <SAP:TimeSent>2007-11-21T15:51:30Z</SAP:TimeSent>
    - <SAP:Sender>
      <SAP:Party agency="http://sap.com/xi/XI" scheme="XIParty">GovernmentGateway</SAP:Party>
      <SAP:Service>GGMailbox</SAP:Service>
      <SAP:Interface namespace="http://sap.com/xi/E-FILING_GB/2005">DPSretrieve</SAP:Interface>
      </SAP:Sender>
    - <SAP:Receiver>
      <SAP:Party agency="" scheme="" />
      <SAP:Service>SAP_DEV_ERP2005</SAP:Service>
      <SAP:Interface namespace="http://sap.com/xi/HR">HR_GB_EFI_DPSretrieve</SAP:Interface>
      </SAP:Receiver>
      <SAP:Interface namespace="http://sap.com/xi/E-FILING_GB/2005">DPSretrieve</SAP:Interface>
      </SAP:Main>
    - <SAP:ReliableMessaging xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:QualityOfService>BestEffort</SAP:QualityOfService>
      </SAP:ReliableMessaging>
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="PLAINHTTP_ADAPTER">ATTRIBUTE_CLIENT_DEST</SAP:Code>
      <SAP:P1>GB_DPSRetrieve</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while creating the HTTP client with destination GB_DPSRetrieve</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    - <SAP:HopList xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
    - <SAP:Hop timeStamp="2007-11-21T15:51:30Z" wasRead="false">
      <SAP:Engine type="BS">SAP_DEV_ERP2005</SAP:Engine>
      <SAP:Adapter namespace="http://sap.com/xi/XI/System">XI</SAP:Adapter>
      <SAP:MessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:MessageId>
      <SAP:Info>3.0</SAP:Info>
      </SAP:Hop>
    - <SAP:Hop timeStamp="2007-11-21T15:51:30Z" wasRead="false">
      <SAP:Engine type="IS">is.00.lbsth-tb1ci</SAP:Engine>
      <SAP:Adapter namespace="http://sap.com/xi/XI/System">XI</SAP:Adapter>
      <SAP:MessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:MessageId>
      <SAP:Info>3.0</SAP:Info>
      </SAP:Hop>
    - <SAP:Hop timeStamp="2007-11-21T15:51:30Z" wasRead="false">
      <SAP:Engine type="IS" />
      <SAP:Adapter namespace="http://sap.com/xi/XI/System">HTTP</SAP:Adapter>
      <SAP:MessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:MessageId>
      <SAP:Info />
      </SAP:Hop>
      </SAP:HopList>
    - <SAP:RunTime xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
      <SAP:Date>20071121</SAP:Date>
      <SAP:Time>155130</SAP:Time>
      <SAP:Host>lbsth-tb1ci</SAP:Host>
      <SAP:SystemId>XIS</SAP:SystemId>
      <SAP:SystemNr>00</SAP:SystemNr>
      <SAP:OS>Windows NT</SAP:OS>
      <SAP:DB>ORACLE</SAP:DB>
      <SAP:Language />
      <SAP:ProcStatus>023</SAP:ProcStatus>
      <SAP:AdapterStatus>000</SAP:AdapterStatus>
      <SAP:User>PISUPER</SAP:User>
      <SAP:TraceLevel>1</SAP:TraceLevel>
      <SAP:LogSeqNbr>000</SAP:LogSeqNbr>
      <SAP:RetryLogSeqNbr>000</SAP:RetryLogSeqNbr>
      <SAP:PipelineIdInternal>SAP_CENTRAL</SAP:PipelineIdInternal>
      <SAP:PipelineIdExternal>CENTRAL</SAP:PipelineIdExternal>
      <SAP:PipelineElementId>60C3C53B4BB7B62DE10000000A1148F5</SAP:PipelineElementId>
      <SAP:PipelineService>PLSRV_CALL_ADAPTER</SAP:PipelineService>
      <SAP:QIdInternal />
      <SAP:CommitActor>X</SAP:CommitActor>
      <SAP:SplitNumber>0</SAP:SplitNumber>
      <SAP:NumberOfRetries>0</SAP:NumberOfRetries>
      <SAP:NumberOfManualRetries>0</SAP:NumberOfManualRetries>
      <SAP:TypeOfEngine client="200">CENTRAL</SAP:TypeOfEngine>
      <SAP:PlsrvExceptionCode />
      <SAP:EOReferenceRuntime type="TID" />
      <SAP:EOReferenceInbound type="TID" />
      <SAP:EOReferenceOutbound type="TID" />
      <SAP:MessageSizePayload>0</SAP:MessageSizePayload>
      <SAP:MessageSizeTotal>2918</SAP:MessageSizeTotal>
      <SAP:PayloadSizeRequest>0</SAP:PayloadSizeRequest>
      <SAP:PayloadSizeRequestMap>0</SAP:PayloadSizeRequestMap>
      <SAP:PayloadSizeResponse>0</SAP:PayloadSizeResponse>
      <SAP:PayloadSizeResponseMap>0</SAP:PayloadSizeResponseMap>
      <SAP:Reorganization>INI</SAP:Reorganization>
      <SAP:AdapterInbound>PLAINHTTP</SAP:AdapterInbound>
      <SAP:AdapterOutbound>IENGINE</SAP:AdapterOutbound>
      <SAP:InterfaceAction>INIT</SAP:InterfaceAction>
      <SAP:RandomNumber>15</SAP:RandomNumber>
      <SAP:AckStatus>000</SAP:AckStatus>
      <SAP:SkipReceiverDetermination />
      <SAP:Receiver_Agreement_GUID>24422A5646443F8E9D975D57A3EE8162</SAP:Receiver_Agreement_GUID>
      </SAP:RunTime>
    - <SAP:PerformanceHeader xmlns:SAP="http://sap.com/xi/XI/Message/30">
    - <SAP:RunTimeItem>
      <SAP:Name type="ADAPTER_IN">INTEGRATION_ENGINE_HTTP_ENTRY</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.5</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="ADAPTER_IN">INTEGRATION_ENGINE_HTTP_ENTRY</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_INTERFACE_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_INTERFACE_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_MESSAGE_SPLIT</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_MESSAGE_SPLIT</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_MAPPING_REQUEST</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_MAPPING_REQUEST</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_OUTBOUND_BINDING</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_OUTBOUND_BINDING</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_CALL_ADAPTER</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.656</SAP:Timestamp>
      </SAP:RunTimeItem>
      </SAP:PerformanceHeader>
    - <SAP:Diagnostic xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:TraceLevel>Information</SAP:TraceLevel>
      <SAP:Logging>Off</SAP:Logging>
      </SAP:Diagnostic>
    - <SAP:Trace xmlns:SAP="http://sap.com/xi/XI/Message/30">
      <Trace level="1" type="T">SystemError message generated. Guid: DC98499F7E4274F1A41F0017A4107EE6</Trace>
      <Trace level="1" type="T">Error during execution of message : DC98499CA1EABEF1B4DD00110A63BF06</Trace>
      <Trace level="1" type="T">ApplicationMessage was (=RefToMsgId): DC98499CA1EABEF1B4DD00110A63BF06</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      </SAP:Trace>
      </SOAP:Header>
    - <SOAP:Body>
      <SAP:Manifest xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="wsuid-manifest-5CABE13F5C59AB7FE10000000A1551F7" />
      </SOAP:Body>
      </SOAP:Envelope>
    Regards,
    Kishore

    Hi,
    In the HTTP Receiver what is the Addressing Type used ? (URL Address or HTTP Destination).
    If its URL Addressing Type, check if right Authentication Type is used with valid values and for HTTP Addressing Type check this HTTP Client Create Error, it could be helpful.
    Also check if the Target system can be reached from the XI server to validate the configuration parameters.
    Regards,
    S.Santhosh Kumar

  • An error occurred creating the form (task 2346, form 0). (ALC-WKS-007-040) error

    Hi all,
    I am a newbie to adobe livecycle process. I am trying to prepopulate the data like the users info when the form is originated in the workspace.
    I did use the samples example for form render service but added to variables called first and lastname as i want these fields to be populated.I am also using an xmlvariable which stores the xml data-(first name and last name) from the form (i got the xml data from the jDBC service usingquery multiple rows by quering edcpricnipal entity). I have followed the steps from http://www.roland-lopez.com/blog/index.cfm?event=showEntry&entryId=ECB034DA-3048-5304-BA9 BB7B0DEDC725A.
    Now I am trying to use the sevice in my application. hennce I created a input variable called app_info of type xfa form and in advanced settings I called the render service which is created before. I am using a PDF file in resources.
    When I try to open the form in workspace I get the error
    An error occurred creating the form (task 2348, form 0). (ALC-WKS-007-040)
    In the erroe log I get the the following error -
    message = ALC-WKS-005-028: A problem occurred in the Render Service. Please review the render orchestration for this process.
    details = null
    rootCause = ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    body = null
    extendedData = {message=ALC-WKS-005-028, cause=com.adobe.idp.taskmanager.dsc.client.task.TaskManagerException}
    2008-11-23 18:55:11,138 INFO [STDOUT] [Flex] Error handling message: flex.messaging.MessageException: ALC-WKS-005-028: A problem occurred in the Render Service. Please review the render orchestration for this process.
    incomingMessage: Flex Message (flex.messaging.messages.RemotingMessage)
    operation = render
    clientId = BE816575-BA0E-55AB-43D6-53511DE9544A
    destination = task-actions
    messageId = 995C15F0-9EE8-20A7-7378-CBC737C22D1A
    timestamp = 1227484510810
    timeToLive = 1227484510810
    body = null
    hdr(DSEndpoint) = workspace-polling-amf
    hdr(DSId) = BE810559-3C1E-B9CC-BB02-DAD2017E1CB6
    errorReply: Flex Message (flex.messaging.messages.ErrorMessage)
    clientId = BE816575-BA0E-55AB-43D6-53511DE9544A
    correlationId = 995C15F0-9EE8-20A7-7378-CBC737C22D1A
    destination = task-actions
    messageId = BE816896-820E-9C32-0CC9-22149F2E7879
    timestamp = 1227484511138
    timeToLive = 0
    body = null
    code = Server.Processing
    Can someone please help me with this.
    Thanks a tonn in advance.

    Hi Jasmin,
    Thanks for your reply. I have changed the variable type in the main application from xfa to document type as suggested. But when I try to open the file in workspace I get the sameerror. but in the error log the error is as follows
    INFO [STDOUT] [Flex] Error handling message: flex.messaging.MessageException: com.thoughtworks.xstream.mapper.CannotResolveClassException : com.adobe.idp.taskmanager.form.impl.xfa.XFARepositoryFormInstance : No ClassLoaders found for: com.adobe.idp.taskmanager.form.impl.xfa.XFARepositoryFormInstance
    incomingMessage: Flex Message (flex.messaging.messages.RemotingMessage)
    operation = render
    clientId = C750393C-201C-717C-FCD5-6C61E56457A8
    destination = task-actions
    messageId = 8F8A2B82-2778-A08E-6D8A-CF62CE975DD3
    timestamp = 1227545038368
    timeToLive = 1227545038368
    body = null
    hdr(DSEndpoint) = workspace-polling-amf
    hdr(DSId) = C74FE532-741B-7AD1-6240-601872F82B0D
    errorReply: Flex Message (flex.messaging.messages.ErrorMessage)
    clientId = C750393C-201C-717C-FCD5-6C61E56457A8
    correlationId = 8F8A2B82-2778-A08E-6D8A-CF62CE975DD3
    destination = task-actions
    messageId = C7503B9E-7A0B-28E0-59DC-ACD49B49B722
    timestamp = 1227545038618
    timeToLive = 0
    body = null
    code = Server.Processing
    message = com.thoughtworks.xstream.mapper.CannotResolveClassException : com.adobe.idp.taskmanager.form.impl.xfa.XFARepositoryFormInstance : No ClassLoaders found for: com.adobe.idp.taskmanager.form.impl.xfa.XFARepositoryFormInstance
    details = null
    rootCause = com.thoughtworks.xstream.mapper.CannotResolveClassException: com.adobe.idp.taskmanager.form.impl.xfa.XFARepositoryFormInstance : No ClassLoaders found for: com.adobe.idp.taskmanager.form.impl.xfa.XFARepositoryFormInstance
    body = null
    extendedData = null
    2008-11-24 11:44:01,321 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl retrieveEvent
    INFO: retrieving active event for 6052
    2008-11-24 11:44:01,321 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl retrieveEvent
    INFO: retrieved active event for 6052
    2008-11-24 11:44:01,337 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl sendNotifications
    INFO: Total subscriptions retrieved = 2 for event id6052
    2008-11-24 11:44:01,353 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl createNotifications
    INFO: Now creating notifications.
    2008-11-24 11:44:01,353 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl createNotifications
    INFO: Created 2 notifications.
    2008-11-24 11:44:01,353 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl retrieveEvent
    INFO: retrieving active event for 6052
    2008-11-24 11:44:01,353 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl retrieveEvent
    INFO: retrieved active event for 6052
    2008-11-24 11:44:01,431 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Now delivering notification to service RemoteEvents
    2008-11-24 11:44:01,431 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Now delivering notification to service operation onEvent
    2008-11-24 11:44:01,431 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Now delivering notification to service operation parameters {eventType=TaskCreated}
    2008-11-24 11:44:01,431 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Now delivering notification to service OrchestrationEventHandler
    2008-11-24 11:44:01,446 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Now delivering notification to service operation onEvent
    2008-11-24 11:44:01,446 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Now delivering notification to service operation parameters {eventTemplateId=STRT_ER1172599333679, serviceName=Task Assignment, eventTemplateType=eventReceiveAsStartTemplate, eventTypeName=TaskCreated}
    2008-11-24 11:44:01,446 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Notifications delivered
    2008-11-24 11:44:01,446 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl disableNotification
    INFO: Attempting to disable the notification after delivery.
    2008-11-24 11:44:01,446 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.workflow.dsc.service.OrchestrationEventListenerService onAsynchronousEvent
    INFO: ProcessManagerSerice:onAsynchronousEvent()
    2008-11-24 11:44:01,446 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl disableNotification
    INFO: Attempting to disable the notification after delivery.
    2008-11-24 11:44:01,462 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.util.EventDBHelper getActiveEventByPrimaryKey
    INFO: Event with id 6052 is already disabled, EventService will not deliver notification.
    2008-11-24 11:44:01,462 INFO [com.adobe.workflow.AWS] Invoking action synchronously
    2008-11-24 11:44:01,462 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.livecycle.notification.TaskNotificationServiceImpl taskAssignment
    INFO: TaskNotificationService called taskAssignment: 2350
    2008-11-24 11:44:01,462 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.livecycle.notification.TaskNotificationServiceImpl handleNotificationEvent
    INFO: TaskNotificationService called handleAssignmentOrReminderEvent: 2350
    Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl updateEventStatus
    INFO: Event with id 6052 is already inactive.Event instance with id 6052 is inactive for TaskCreated
    2008-11-24 11:44:01,478 INFO [com.adobe.livecycle.remoteevents.client.RemoteEventClient] message received type: event
    2008-11-24 11:44:01,478 INFO [com.adobe.livecycle.remoteevents.client.RemoteEventClient] message received part 1: {data=[B@1d766ce, event=TaskCreated}
    2008-11-24 11:44:01,556 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl deliverNotificationToService
    INFO: Notifications delivered
    2008-11-24 11:44:01,556 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl disableNotification
    INFO: Attempting to disable the notification after delivery.
    2008-11-24 11:44:01,556 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl disableNotification
    INFO: Attempting to disable the notification after delivery.
    2008-11-24 11:44:01,556 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.util.EventDBHelper getActiveEventByPrimaryKey
    INFO: Event with id 6052 is already disabled, EventService will not deliver notification.
    2008-11-24 11:44:01,556 INFO [STDOUT] Nov 24, 2008 11:44:01 AM com.adobe.idp.event.notification.NotificationManagerImpl updateEventStatus
    INFO: Event with id 6052 is already inactive.Event instance with id 6052 is inactive for TaskCreated
    Thanks for your reply!

  • Heap space error while creating XML document from Resultset

    I am getting Heap space error while creating XML document from Resultset.
    It was working fine from small result set object but when the size of resultset was more than 25,000, heap space error
    I am already using -Xms32m -Xmx1024m
    Is there a way to directly write to xml file from resultset instead of creating the whole document first and then writing it to file? Code examples please?
    here is my code:
    stmt = conn.prepareStatement(sql);
    result = stmt.executeQuery();
    result.setFetchSize(999);
    Document doc = JDBCUtil.toDocument(result, Application.BANK_ID, interfaceType, Application.VERSION);
    JDBCUtil.write(doc, fileName);
    public static Document toDocument(ResultSet rs, String bankId, String interfaceFileType, String version)
        throws ParserConfigurationException, SQLException {
            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
            DocumentBuilder builder = factory.newDocumentBuilder();
            Document doc = builder.newDocument();
            Element results = doc.createElement("sims");
            results.setAttribute("bank", bankId);
            results.setAttribute("record_type", "HEADER");
            results.setAttribute("file_type", interfaceFileType);
            results.setAttribute("version", version);
            doc.appendChild(results);
            ResultSetMetaData rsmd = rs.getMetaData();
            int colCount = rsmd.getColumnCount();
            String columnName="";
            Object value;
            while (rs.next()) {
                Element row = doc.createElement("rec");
                results.appendChild(row);
                for (int i = 1; i <= colCount; i++) {
                    columnName = rsmd.getColumnLabel(i);
                    value = rs.getObject(i);
                    Element node = doc.createElement(columnName);
                    if(value != null)
                        node.appendChild(doc.createTextNode(value.toString()));
                    else
                        node.appendChild(doc.createTextNode(""));
                    row.appendChild(node);
            return doc;
    public static void write(Document document, String filename) {
            //long start = System.currentTimeMillis();
            // lets write to a file
            OutputFormat format = new OutputFormat(document); // Serialize DOM
            format.setIndent(2);
            format.setLineSeparator(System.getProperty("line.separator"));
            format.setLineWidth(80);
            try {
                FileWriter writer = new FileWriter(filename);
                BufferedWriter buf = new BufferedWriter(writer);
                XMLSerializer FileSerial = new XMLSerializer(writer, format);
                FileSerial.asDOMSerializer(); // As a DOM Serializer
                FileSerial.serialize(document);
                writer.close();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            //long end = System.currentTimeMillis();
            //System.err.println("W3C File write time :" + (end - start) + "  " + filename);
        }

    you can increase your heap size..... try setting this as your environment variable.....
    variable: JAVA_OPTS
    value: -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m

  • Getting error while creating the Shopping cart.

    Hi ,
    I am getting error while creating the Shopping cart.
    a.Error in account assignment for item 1  (Item  Testing SC ) 
    b.Duplicates of Cost Centre T10063 are defined in SRM  (Item  Testing SC ) 
    Kindly provide the solutions.
    Thanks,
    Dev

    Try the following in the ERP backend system:
    Standard Hierarchy Inconsistencies
    Issue: one Cost Center is repeating in more than one node in Cost Center Standard Hierarchy.
    Update from SAP Global support, the following was the email received:
    in transaction KSH3 please run both the ambiguity and completeness check(Menu -> Extras -> Check and Help functions).
    If you think that your standard hierarchy is inconsistent you can check that as following:
    Run transaction Extras -> Hierarchy - Master data -> Test. The result shows you if there are in consistencies. If that is the case run also Extras -> Hierarchy - Master data -> Comparison.
    Alternatively, you can run the report 'RKCORRH1' (TN SE38).
    Run both the Hierarchy->Master data->test and the
    Hierarchy->Master data->comparison.
    As stated above inconsistency message showed after Test. Run the comparison and you get a similar message.
    Once the above two are run, again when you go to test, the inconsistency disappears.

  • Getting error while creating subsite using custom template in sharepoint2013

    Hi,
    I am getting the following error while creating subsite using custom template in sharpoint2013. even publish features are enabled.
    Please suggest me on this.
    Thanks in advance.

    You need to enable the PerformancePoint Service Site Collection Features(PPSMonDatasourceCtype)
    on the target site collection. go to site action > site settings> site collections features > and enable it and now try again.
    Similar case: http://imughal.wordpress.com/2012/09/20/dependency-feature-ppsmondatasourcectype-id-05891451-f0c4-4d4e-81b1-0dabd840bad4-for-feature-bicenterdataconnections-id-3d8210e9-1e89-4f12-98ef-643995339ed4-is-not-activated-at-this-scop/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Error while creating the sales order with billing reference

    hi alll
    i am getting error while creating the sales order with billing reference.The line items are coming in grey.I am not able to change the items as well as the quantity field.Can u guide me
    cheers
    shalsa007........

    Dear SAP SD 007
    I can confidently tell that an enhancement or an user exit has been applied in your scenario
    You have to check that
    Normally when creating a sales order with respect or referring billing documents the qty will be in editable mode and it is standard problem
    Your people has solved the standard problem by enhancement
    Usually OR--LF-PGI----F2 (SAY THE QTY IS 25 UNITS)
    Now you are creating returns order with reference to F2 in the return order type Re there is a standard issue that user can edit the qty to 30 from the original 25
    To solve this only your people have used userexit
    Line items and qty greyed out means definately there is some enhancement or user exit applied
    You have to check that
    Regards
    Raja

  • Error Mail Merge Aborted due to error in creating the Mail Merge DataSource

    Dear All,
    please help me with this problem (Oracle release 12.0.4.)
    1. PROBLEM:
    When attempting to extract data, using Web ADI in HRMS, Word is selected as the viewer, but an Excel spreadsheet is generated rather than a MS Word document containing the data. Also error "Mail Merge Aborted due to error in creating the Mail Merge Data Source." appears on screen.
    We are using MS Office 2003.
    2. PROBLEM:
    Unable to create data source from HR form PAYWSLEE.
    We are using custom integrator. This integrator is attached to form function. Form function is attached to responsibility. We also created the layout.
    The next step would be to create data source from form PAYWSLEE, but we are not able to perform this...
    In release 11i we used this form (PAYWSLEE) to create datasource (for mailmerge), but in R12 this is not working... Something is missing here and I need your help to determine what. I checked the most documents on Oracle Support and didn't find solution for this problem...
    Please advise.
    Kind Regards,
    Andreja

    Hi all,
    Thanks for visiting our forum and sharing your experience here. It'll be benefited to our communicator.
    Have a good time.
    Regards,
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • There was an error while retrieving the universes from the CMS (Central Management Server). (PS 20003)

    Hi there,
    When I'm trying to manage spaces in SAP Business Objects Explorer 4.1 SP04, I'm getting the following error:
    Failed to retrieve the data source list.
    There was an error while retrieving the universes from the CMS (Central Management Server). (PS 20003)
    For input string: "false"
    I've already restart Explorer servers (Explorer Exploration Server, Explorer Indexing Server, Explorer Master Server and Explorer Search Server) and rebooted the server where Explorer is installed.
    Nothing seems to fix this error message. I'm not able to create new spaces because I cant access the sources:
    I'd appreciate some help !
    Thanks in advance

    HI Pavan,
    Admin is on the Administrators Group, which as Full Control on the Explorer Application
    I think this worked on the day the Explorer was installed (past week).
    Since them never worked.

  • Error while deriving the currency from table T001P.

    Hi Friends,
    I am trying to run payroll for NZ using schema NZ00 but i am getting an error stating "Error while deriving the currency from table T001P. Error during initialization of Payroll"
    I have checked V_T001P, V_T001 and have deleted the personnel area and subarea and again created it but still i am unable to solve this problem.
    Could you please help me as to where this error can be corrected.
    Thanks,
    Manj

    About the incidence, the problem might be related to the links between
    personnel area, company code and currency set up (table T001P, T500P and
    T001).
    Please check the following points:
    1- Have you assigned the Personnel area to the Company code under SPRO -
    IMG -> Enterprise Structure -> Assignment -> Human Resource Management
    -> Assignment of Personnel Area to Company Code.
    2- SPRO -> Personnel Management -> Personnel Admin -> Basic Settings ->
    Determine Currencies (Public Sector Currency Need to be maintained along
    with the other node).
    3- SPRO- Personnel Management -> Personnel Admin -> Payroll Data ->
    Basic Pay -> Define Hourly Rates for several decimal places. (Please
    maintain all the nodes).
    4- Maintaining the table t500c through transaction code OE00.
    Regards
    Ramana

  • Too large java heap error while starting the domain.Help me please..

    I am using weblogic 10.2,after creating the domain, while starting the domain,I am getting this error.Can anyone help me.Please treat this as urgent request..
    <Oct 10, 2009 4:09:24 PM> <Info> <NodeManager> <Server output log file is "/nfs/appl/XXXXX/weblogic/XXXXX_admin/servers/XXXXX_admin_server/logs/XXXXX_admin_server.out">
    [ERROR] Too large java heap setting.
    Try to reduce the Java heap size using -Xmx:<size> (e.g. "-Xmx128m").
    You can also try to free low memory by disabling
    compressed references, -XXcompressedRefs=false.
    Could not create the Java virtual machine.
    <Oct 10, 2009 4:09:25 PM> <Debug> <NodeManager> <Waiting for the process to die: 29643>
    <Oct 10, 2009 4:09:25 PM> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <Oct 10, 2009 4:09:25 PM> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>

    Thanks Kevin.
    Let me try that.
    Already more than 8 domains were successfully created and running fine.Now the newly created domain have this problem.I need 1GB for my domain.Is there any way to do this?

Maybe you are looking for

  • My laptop beeps every time I open it, then when the Windows is already open a message window asking

    My HP Compaq Presario Q40 CQ40 beeps everytime I open it, the when the windows are already open and i click an icon a message window appear asking me if I want to delete the said icon even if I dont want to delete it, when i click the no id does not

  • Logical standby versus Streams?

    Anybody can explain me difference between logical standby and streams in terms of architecture and functionality?

  • FCP will not open

    I attempted to open my project and I get a message saying, " The application Final Cut Pro quit unexpectedly. The problem may have been caused by the Text Scrambler plug-in". It was working perfectly last week.

  • Rmi inner class extending Applet is it possible

    I have created four classes for my RMI program 1>hellointerface 2>helloserver 3>register 4>helloclient hellointerface has only one Abstract Method public String sayhello()throws java.rmi.RemoteException; The problem is with my helloserverclass. my he

  • Spacing in drop down menu

    I have made a drop down navigation menu in dreamweaver cs6 but I would like to shrink some of the spacing between the menu opinions. The places marked in red is what I would like to shrink so there is less space between the text and next navigation b