Tuning xml

Hi,
I have 2 tables as below (in similar format) having CLOB type column and these are range partitioned on the value_date column.
CREATE TABLE I_TAB_A
STG_RECORD_ID NUMBER NOT NULL,
STG_LOAD_TIMESTAMP TIMESTAMP(6) WITH TIME ZONE NOT NULL,
STG_STATUS_FLAG VARCHAR2(1 CHAR) DEFAULT 'V' NOT NULL,
VALUE_DATE DATE,
MESSAGE_XML CLOB NOT NULL
And, i am creating a view to select from these 2 tables. but following select is taking long time. Can someone suggest me how i can tune this select ?
oracle DB and client version are as below:
============================================
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning option
SQL> select * from v$version;
BANNER
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
PL/SQL Release 11.2.0.2.0 - Production
CORE 11.2.0.2.0 Production
TNS for Linux: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - Production
SQL>
============================================
--CREATE OR REPLACE VIEW V_A_MOV
--AS
SELECT glc.stg_record_id                stg_record_id
, glc.value_date stg_cob_date
, glc.msg_type msg_type
, mh.business_date business_date
, mh.event_datetime event_datetime
, SUBSTR(mh.time_context_ref,1,255) time_context_ref
, mh.e_transfer_id e_transfer_id
, mh.e_transfer_id_1 e_transfer_id_1
, gi.setmt_status setmt_status
, glc.msg_type||gi.setmt_id setmt_id
, DECODE (glc.msg_type, 'GEQ', 'Glacier Equities'
, 'Glacier Credit/Rates') setmt_system_name
, rgi1.business_line
, rgi1.ops_team
, gi.ext_gateway external_gateway
, nt.value_date value_date
, nt.value_date_1 value_date_1
, nt.payer_pty_ref payer_pty_ref
, nt.rec_pty_ref rec_pty_ref
, nt.setmt_ccy setmt_ccy
, nt.net_setmt_amount net_setmt_amount
, nt.netted_payment netted_payment
, nt.setmt_instruction_type setmt_instruction_type
, nt.swift_mt swift_mt
, si.correspondent_id correspondent_id
, si.correspondent_id_type correspondent_id_type
, si.correspondent_acct_name correspondent_acct_name
, si.correspondent_acct_no correspondent_acct_no
, si.correspondent_sub_acct_no correspondent_sub_acct_no
, si.benf_bank_id benf_bank_id
, si.benf_bank_id_type benf_bank_id_type
, si.benf_bank_name benf_bank_name
, si.benf_bank_acct_no benf_bank_acct_no
, si.benf_bank_sub_acct_no benf_bank_sub_acct_no
, si.benf_bank_ref_text benf_bank_ref_text
, si.benficiary_name benficiary_name
, si.benficiary_acct_no benficiary_acct_no
, si.benficiary_sub_acct_no benficiary_sub_acct_no
, SUBSTR(TRIM(REPLACE(REPLACE(XMLQUERY('settlementInstruction/beneficiary/routingExplicitDetails/routingAddress/streetAddress/streetLine' PASSING sa.COLUMN_VALUE RETURNING CONTENT)
,'<streetLine>' , ''), '</streetLine>' , '')),1,2000) benficiary_street_line
, si.benficiary_city benficiary_city
, si.benficiary_state benficiary_state
, si.benficiary_country benficiary_country
, si.benficiary_postalCode benficiary_postalCode
, si.benficiary_id benficiary_id
, si.benficiary_id_type benficiary_id_type
, si.benficiary_name_1 benficiary_name_1
, si.benficiary_acct_no_1 benficiary_acct_no_1
, si.benficiary_sub_acct_no_1 benficiary_sub_acct_no_1
, SUBSTR(TRIM(REPLACE(REPLACE(XMLQUERY('settlementInstruction/beneficiary/routingIdsAndExplicitDetails/routingAddress/streetAddress/streetLine' PASSING sa.COLUMN_VALUE RETURNING CONTENT)
,'<streetLine>' , ''), '</streetLine>' , '')),1,2000) benficiary_street_line_1
, si.benficiary_city_1 benficiary_city_1
, si.benficiary_state_1 benficiary_state_1
, si.benficiary_country_1 benficiary_country_1
, si.benficiary_postalCode_1 benficiary_postalCode_1
, pty.book_ent_persp book_ent_persp
, pty.party_id_1 party_id_1
, pty.party_id_2 party_id_2
, UPPER(pty.party_internal_1) party_internal_1
, UPPER(pty.party_internal_2) party_internal_2
, UPPER(pty.party_role_1) party_role_1
, UPPER(pty.party_role_2) party_role_2
, pty.party_1_name_1 party_1_name_1
, pty.party_1_name_2 party_1_name_2
, pty.party_2_name_1 party_2_name_1
, pty.party_2_name_2 party_2_name_2
, pty.party_3_name_1 party_3_name_1
, pty.party_3_name_2 party_3_name_2
, pty.party_4_name_1 party_4_name_1
, pty.party_4_name_2 party_4_name_2
, pty.party_5_name_1 party_5_name_1
, pty.party_5_name_2 party_5_name_2
, pty.party_1_id_1 party_1_id_1
, pty.party_1_id_2 party_1_id_2
, pty.party_2_id_1 party_2_id_1
, pty.party_2_id_2 party_2_id_2
, pty.party_3_id_1 party_3_id_1
, pty.party_3_id_2 party_3_id_2
, pty.party_4_id_1 party_4_id_1
, pty.party_4_id_2 party_4_id_2
, pty.party_5_id_1 party_5_id_1
, pty.party_5_id_2 party_5_id_2
, UPPER(pty.party_1_id_type_1) party_1_id_type_1
, UPPER(pty.party_1_id_type_2) party_1_id_type_2
, UPPER(pty.party_2_id_type_1) party_2_id_type_1
, UPPER(pty.party_2_id_type_2) party_2_id_type_2
, UPPER(pty.party_3_id_type_1) party_3_id_type_1
, UPPER(pty.party_3_id_type_2) party_3_id_type_2
, UPPER(pty.party_4_id_type_1) party_4_id_type_1
, UPPER(pty.party_4_id_type_2) party_4_id_type_2
, UPPER(pty.party_5_id_type_1) party_5_id_type_1
, UPPER(pty.party_5_id_type_2) party_5_id_type_2
FROM (select glc1.*, 'GEQ' msg_type from i_tab_a glc1 where value_date = :l_cob_date
UNION ALLL
select glc2.*, 'GCR' msg_type from i_tab_b glc2 where value_date = :l_cob_date) glc
, XMLTABLE( 'emml/messageHeader' PASSING XMLTYPE(glc.MESSAGE_XML)
COLUMNS business_date VARCHAR2(255) PATH 'businessDate/text()'
, event_datetime VARCHAR2(255) PATH 'eventDateTime/text()'
, time_context_ref VARCHAR2(255) PATH 'eventDateTime/@timeContextReference'
, e_transfer_id VARCHAR2(255) PATH 'sourceSystemMessageIdentifier'
, e_transfer_id_1 VARCHAR2(255) PATH 'sourceSystemMessageInstigator'
) mh
, XMLTABLE( 'emml/newTransfer/settlementInformation/settlementInstruction' PASSING XMLTYPE(glc.MESSAGE_XML)) sa
, XMLTABLE( 'emml/transferEventHeader' PASSING XMLTYPE(glc.MESSAGE_XML)
COLUMNS setmt_id VARCHAR2(255) PATH 'transferGroupIdentifier/transferGroupId'
, setmt_system_name VARCHAR2(255) PATH 'transferGroupIdentifier/systemReference'
, setmt_status VARCHAR2(255) PATH 'additionalComments'
, ext_gateway VARCHAR2(255) PATH 'externalGateway'
, group_class_scheme VARCHAR2(255) PATH 'transferGroupIdentifier/transferGroupClassificationScheme'
) gi
, ( SELECT glc.stg_record_id stg_record_id
, MAX(CASE
WHEN rgi.group_type = 'Operations Processing Group' THEN rgi.ops_team
END) ops_team
, MAX(CASE
WHEN rgi.group_type = 'Reporting Unit' THEN rgi.ops_team
END) business_line
FROM (select glc1.*, 'GEQ' msg_type from i_glc_e_transfer_eq glc1 where value_date = '05-OCT-2012'
UNION ALL
select glc2.*, 'GCR' msg_type from i_glc_e_transfer_cr glc2 where value_date = '05-OCT-2012') glc
, XMLTABLE('emml/transferEventHeader/reportingGroupIdentifier' PASSING XMLTYPE(glc.MESSAGE_XML)
COLUMNS ops_team VARCHAR2(255) PATH 'reportingGroupId'
, group_type VARCHAR2(255) PATH 'reportingGroupClassificationScheme'
) rgi
GROUP BY glc.stg_record_id ) rgi1
, XMLTABLE( 'emml/newTransfer' PASSING XMLPARSE(glc.MESSAGE_XML)
COLUMNS value_date DATE PATH 'adjustedSettlementDate'
, value_date_1 VARCHAR2(255) PATH 'tradeAttributes/tradeDate/text()'
, payer_pty_ref VARCHAR2(255) PATH 'cashMovement/payerPartyReference'
, rec_pty_ref VARCHAR2(255) PATH 'cashMovement/receiverPartyReference'
, setmt_ccy VARCHAR2(255) PATH 'cashMovement/settlementAmount/currency'
, net_setmt_amount VARCHAR2(255) PATH 'cashMovement/settlementAmount/amount'
, setmt_instruction_type VARCHAR2(255) PATH 'settlementDetails/settlementInstructionType'
, swift_mt VARCHAR2(255) PATH 'settlementDetails/settlementProcessingInstruction'
, netted_payment VARCHAR2(255) PATH 'settlementDetails/nettedCashflow'
) nt
, XMLTABLE( 'emml/newTransfer/settlementInformation/settlementInstruction' PASSING XMLTYPE(glc.MESSAGE_XML)
COLUMNS correspondent_id VARCHAR2(255) PATH 'correspondentInformation/routingIdsAndExplicitDetails/routingIds/routingId'
, correspondent_id_type VARCHAR2(255) PATH 'correspondentInformation/routingIdsAndExplicitDetails/routingIds/routingIdScheme'
, correspondent_acct_name VARCHAR2(255) PATH 'correspondentInformation/routingIdsAndExplicitDetails/routingName'
, correspondent_acct_no VARCHAR2(255) PATH 'correspondentInformation/routingIdsAndExplicitDetails/routingAccountNumber'
, correspondent_sub_acct_no VARCHAR2(255) PATH 'correspondentInformation/routingIdsAndExplicitDetails/routingSubAccountNumber'
, benf_bank_id VARCHAR2(255) PATH 'beneficiaryBank/routingIdsAndExplicitDetails/routingIds/routingId'
, benf_bank_id_type VARCHAR2(255) PATH 'beneficiaryBank/routingIdsAndExplicitDetails/routingIds/routingIdScheme'
, benf_bank_name VARCHAR2(255) PATH 'beneficiaryBank/routingIdsAndExplicitDetails/routingName'
, benf_bank_acct_no VARCHAR2(255) PATH 'beneficiaryBank/routingIdsAndExplicitDetails/routingAccountNumber'
, benf_bank_sub_acct_no VARCHAR2(255) PATH 'beneficiaryBank/routingIdsAndExplicitDetails/routingSubAccountNumber'
, benf_bank_ref_text VARCHAR2(255) PATH 'beneficiaryBank/routingIdsAndExplicitDetails/routingReferenceText'
, benficiary_name VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingName'
, benficiary_acct_no VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingAccountNumber'
, benficiary_sub_acct_no VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingSubAccountNumber'
, benficiary_city VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingAddress/city'
, benficiary_state VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingAddress/state'
, benficiary_country VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingAddress/country'
, benficiary_postalCode VARCHAR2(255) PATH 'beneficiary/routingExplicitDetails/routingAddress/postalCode'
, benficiary_id VARCHAR2(255) PATH 'beneficiary//routingIdsAndExplicitDetails/routingIds/routingId'
, benficiary_id_type VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingIds/routingIdScheme'
, benficiary_name_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingName'
, benficiary_acct_no_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingAccountNumber'
, benficiary_sub_acct_no_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingSubAccountNumber'
, benficiary_city_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingAddress/city'
, benficiary_state_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingAddress/state'
, benficiary_country_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingAddress/country'
, benficiary_postalCode_1 VARCHAR2(255) PATH 'beneficiary/routingIdsAndExplicitDetails/routingAddress/postalCode'
) si
, XMLTABLE('emml' PASSING XMLTYPE(glc.MESSAGE_XML)
COLUMNS book_ent_persp VARCHAR2(255) PATH 'newTransfer/bookingEntityPerspective'
, party_internal_1 VARCHAR2(255) PATH 'newTransfer/party[1]/isPartyInternal'
, party_internal_2 VARCHAR2(255) PATH 'newTransfer/party[2]/isPartyInternal'
, party_id_1 VARCHAR2(255) PATH 'newTransfer/party[1]/@id'
, party_id_2 VARCHAR2(255) PATH 'newTransfer/party[2]/@id'
, party_role_1 VARCHAR2(255) PATH 'newTransfer/party[1]/partyRole'
, party_role_2 VARCHAR2(255) PATH 'newTransfer/party[2]/partyRole'
, party_1_name_1 VARCHAR2(255) PATH 'newTransfer/party[1]/partyIdentifier[1]/partyName'
, party_1_name_2 VARCHAR2(255) PATH 'newTransfer/party[1]/partyIdentifier[2]/partyName'
, party_2_name_1 VARCHAR2(255) PATH 'newTransfer/party[2]/partyIdentifier[1]/partyName'
, party_2_name_2 VARCHAR2(255) PATH 'newTransfer/party[2]/partyIdentifier[2]/partyName'
, party_3_name_1 VARCHAR2(255) PATH 'newTransfer/party[3]/partyIdentifier[1]/partyName'
, party_3_name_2 VARCHAR2(255) PATH 'newTransfer/party[3]/partyIdentifier[2]/partyName'
, party_4_name_1 VARCHAR2(255) PATH 'newTransfer/party[4]/partyIdentifier[1]/partyName'
, party_4_name_2 VARCHAR2(255) PATH 'newTransfer/party[4]/partyIdentifier[2]/partyName'
, party_5_name_1 VARCHAR2(255) PATH 'newTransfer/party[5]/partyIdentifier[1]/partyName'
, party_5_name_2 VARCHAR2(255) PATH 'newTransfer/party[5]/partyIdentifier[2]/partyName'
, party_1_id_1 VARCHAR2(255) PATH 'newTransfer/party[1]/partyIdentifier[1]/partyId'
, party_1_id_2 VARCHAR2(255) PATH 'newTransfer/party[1]/partyIdentifier[2]/partyId'
, party_2_id_1 VARCHAR2(255) PATH 'newTransfer/party[2]/partyIdentifier[1]/partyId'
, party_2_id_2 VARCHAR2(255) PATH 'newTransfer/party[2]/partyIdentifier[2]/partyId'
, party_3_id_1 VARCHAR2(255) PATH 'newTransfer/party[3]/partyIdentifier[1]/partyId'
, party_3_id_2 VARCHAR2(255) PATH 'newTransfer/party[3]/partyIdentifier[2]/partyId'
, party_4_id_1 VARCHAR2(255) PATH 'newTransfer/party[4]/partyIdentifier[1]/partyId'
, party_4_id_2 VARCHAR2(255) PATH 'newTransfer/party[4]/partyIdentifier[2]/partyId'
, party_5_id_1 VARCHAR2(255) PATH 'newTransfer/party[5]/partyIdentifier[1]/partyId'
, party_5_id_2 VARCHAR2(255) PATH 'newTransfer/party[5]/partyIdentifier[2]/partyId'
, party_1_id_type_1 VARCHAR2(255) PATH 'newTransfer/party[1]/partyIdentifier[1]/partyIdClassificationScheme'
, party_1_id_type_2 VARCHAR2(255) PATH 'newTransfer/party[1]/partyIdentifier[2]/partyIdClassificationScheme'
, party_2_id_type_1 VARCHAR2(255) PATH 'newTransfer/party[2]/partyIdentifier[1]/partyIdClassificationScheme'
, party_2_id_type_2 VARCHAR2(255) PATH 'newTransfer/party[2]/partyIdentifier[2]/partyIdClassificationScheme'
, party_3_id_type_1 VARCHAR2(255) PATH 'newTransfer/party[3]/partyIdentifier[1]/partyIdClassificationScheme'
, party_3_id_type_2 VARCHAR2(255) PATH 'newTransfer/party[3]/partyIdentifier[2]/partyIdClassificationScheme'
, party_4_id_type_1 VARCHAR2(255) PATH 'newTransfer/party[4]/partyIdentifier[1]/partyIdClassificationScheme'
, party_4_id_type_2 VARCHAR2(255) PATH 'newTransfer/party[4]/partyIdentifier[2]/partyIdClassificationScheme'
, party_5_id_type_1 VARCHAR2(255) PATH 'newTransfer/party[5]/partyIdentifier[1]/partyIdClassificationScheme'
, party_5_id_type_2 VARCHAR2(255) PATH 'newTransfer/party[5]/partyIdentifier[2]/partyIdClassificationScheme'
) pty
WHERE rgi1.stg_record_id = glc.stg_record_id
;

Hi,
Can someone suggest me how i can tune this select ?With such an extensive query, I think there's absolutely no chance of optimizing anything without migrating the column to Binary XMLType.

Similar Messages

  • XML Message Body Selector in Automation

    Hi,
    I'm having some trouble implementing a XML Message Body Selector in an automated task. I'm running OSM 7.2.0.7 in a Unix environment and using Design Studio 7.2.1.
    I'm sendind in my request to an external system a request tthe following string: OSM-TaskName-%{CARTRIDGE_VERSION}
    <Request>
        <Header>
            <dueDate>20131128</dueDate>
            <application>OSM-MSS_Lookup-1.0.0.0.5</application>
        </Header>
    </Request>
    The response of MSS is:
    <Response>
        <Header>
            <dueDate>20131128</dueDate>
            <application>OSM-MSS_Lookup-1.0.0.0.5</application>
        </Header>
    In the selector I've tried different XPath expressions:
    Select:
    /*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']/text()
    *[local-name() ='Responset']/*[local-name()='Header']/*[local-name()='application']/text()
    //*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']/text()
    /*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']
    *[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']
    //*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']
    /Response/Header/application
    /Response/Header/application/text()
    Compare: OSM-MSS_Lookup-%{CARTRIDGE_VERSION}
    I keep getting the following error in the log file for the differente selectors:
    ####<Nov 28, 2013 10:34:31 AM CST> <Info> <oms> <hostname> <SOM_ManagedServer_1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'
    > <sceadmin> <BEA1-49AB960B7AE5258D5CC8> <0710a255d6bbb54d:-1d6ed94c:142960580fb:-8000-0000000000026363> <1385656471431> <BEA-000000> <api.e:
            namespace/version: SOM_Cartridge/1.0.0.0.5
            automator type: taskAutomator
            plugin JNDI name: MSS_Lookup.automatedtask.somprovisioning.MSS_LookupReceiverBean
            plugin class name: oracle.communications.ordermanagement.automation.plugin.XQueryReceiver
            run plugin as: oms-automation   receiver:
                    type: external
                    JMS source: sky/MSS/Product/WebServiceResponseQueue
                    message [property|body] selector: JMS_BEA_SELECT('xpath', '/*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']')='OSM-MSS_Lookup-1.0.0.0.5'
    ####<Nov 28, 2013 10:34:31 AM CST> <Warning> <EJB> <hostname> <SOM_ManagedServer_1> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <oms-automation> <> <0710a255d6bbb54d:-1d6ed94c:142960580fb:-8000-000000000002650a> <1385656471454> <BEA-010061> <The Message-Driven EJB: MSS_Lookup.automatedtask.somprovisioning.MSS_LookupReceiverBeanMDB is unable to connect to the JMS destination: sky/MSS/Product/WebServiceResponseQueue. The Error was:
    javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "JMS_BEA_SELECT('xpath', '/*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']')='OSM-MSS_Lookup-1.0.0.0.5'"
    Nested exception: javax.jms.InvalidSelectorException: weblogic.messaging.kernel.InvalidExpressionException: Expression : "JMS_BEA_SELECT('xpath', '/*[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']')='OSM-MSS_Lookup-1.0.0.0.5'"
    I would appreciate any help or ideas.
    Cheers

    Hi,
    Could you confirm on below:
    1 ) Are you using multiple automation plug-in external event receivers in the same automation task ?
    2 ) And are you having the default Correlation Message property set to 'JSMCorrelationID' in external event receiver?
    If your answer for the first question is No, they i would suggest to use Correlation XML Body as
    *[local-name() ='Response']/*[local-name()='Header']/*[local-name()='application']
    The value of the field(application) in request must match the value of the field in response, in your case it is matching. And you will be reading this correlation id in response processing xquery.
    Regards
    Srinivas

  • Adding a new UDF throws a null pointer exception and modifying user.xml

    Hello,
    I have a two part question.
    i. I am trying to add a UDF (using Advanced>User Configuration..Attributes) to a fully configured OIM i.e. oim with reconciliation and provisioning from and to resources but it throws a null pointer exception. Look at the log, I see
    ===============Excerpt form the log file==========
    [2012-01-26T11:28:14.447-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JKQq8vZ8dpC5nFk3yZ1Evvpt000LzY,0] [APP: oim#11.1.1.3.0] [dcid: c62f3a4b80d21e6f:ef93519:134587d39c4:-7ffd-0000000000022a3e] [[
    ---Stack Trace Begins[[This is not an exception. For debugging purposes]]---
    oracle.iam.platform.authz.impl.OESAuthzServiceImpl.doCheckAccess(OESAuthzServiceImpl.java:210)
    oracle.iam.platform.authz.impl.OESAuthzServiceImpl.hasAccess(OESAuthzServiceImpl.java:188)
    oracle.iam.platform.authz.impl.OESAuthzServiceImpl.hasAccess(OESAuthzServiceImpl.java:180)
    oracle.iam.platform.authz.impl.AuthorizationServiceImpl.hasAccess(AuthorizationServiceImpl.java:173)
    oracle.iam.configservice.impl.ConfigManagerImpl.checkAuthorization(ConfigManagerImpl.java:1899)
    oracle.iam.configservice.impl.ConfigManagerImpl.addAttribute(ConfigManagerImpl.java:177)
    oracle.iam.configservice.api.ConfigManagerEJB.addAttributex(Unknown Source)
    ... 21 lines skipped..
    oracle.iam.configservice.api.ConfigManager_5u0nrx_ConfigManagerRemoteImpl.addAttributex(ConfigManager_5u0nrx_ConfigManagerRemoteImpl.java:864)
    ... 13 lines skipped..
    oracle.iam.configservice.api.ConfigManagerDelegate.addAttribute(Unknown Source)
    oracle.iam.configservice.agentry.config.CreateAttributeActor.perform(CreateAttributeActor.java:266)
    oracle.iam.consoles.faces.mvc.canonic.Model.perform(Model.java:547)
    oracle.iam.consoles.faces.mvc.admin.Model.perform(Model.java:324)
    oracle.iam.consoles.faces.mvc.canonic.Controller.doPerform(Controller.java:255)
    oracle.iam.consoles.faces.mvc.canonic.Controller.doSelectAction(Controller.java:178)
    oracle.iam.consoles.faces.event.NavigationListener.processAction(NavigationListener.java:97)
    ... 24 lines skipped..
    oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:115)
    ... weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:100)
    ... 15 lines skipped..
    weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ---Stack Tracefor this call Ends---
    [2012-01-26T11:28:14.447-05:00] [oim_server1] [NOTIFICATION] [IAM-1010010] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JKQq8vZ8dpC5nFk3yZ1Evvpt000LzY,0] [APP: oim#11.1.1.3.0] [dcid: c62f3a4b80d21e6f:ef93519:134587d39c4:-7ffd-0000000000022a3e] [arg: 1] [arg: null] [arg: USER_MANAGEMENT_CONFIG] [arg: CREATE_ATTRIBUTE] ********** Entering the Authorization Segment with parameters:: LoggedInUserId = 1, target resourceID = null, Feature = USER_MANAGEMENT_CONFIG, Action = CREATE_ATTRIBUTE **********
    [2012-01-26T11:28:14.448-05:00] [oim_server1] [NOTIFICATION] [IAM-1010021] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JKQq8vZ8dpC5nFk3yZ1Evvpt000LzY,0] [APP: oim#11.1.1.3.0] [dcid: c62f3a4b80d21e6f:ef93519:134587d39c4:-7ffd-0000000000022a3e] [arg: [InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: noop, values: [true], convertToObligation: false]] Validating the Internal Obligations: [InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: noop, values: [true], convertToObligation: false]
    [2012-01-26T11:28:14.448-05:00] [oim_server1] [NOTIFICATION] [IAM-1010022] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JKQq8vZ8dpC5nFk3yZ1Evvpt000LzY,0] [APP: oim#11.1.1.3.0] [dcid: c62f3a4b80d21e6f:ef93519:134587d39c4:-7ffd-0000000000022a3e] ---------- The list of Internal Obligation is satisfied, returning TRUE ----------
    [2012-01-26T11:28:14.448-05:00] [oim_server1] [NOTIFICATION] [IAM-1010026] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JKQq8vZ8dpC5nFk3yZ1Evvpt000LzY,0] [APP: oim#11.1.1.3.0] [dcid: c62f3a4b80d21e6f:ef93519:134587d39c4:-7ffd-0000000000022a3e] [arg: Decision :PERMIT\nObligations from policy: ] ********** Exiting the Authorization Segment with result Decision :PERMIT[[
    =============Excerpt ends==============
    Is there a reason why this is and how do I get by it.
    ii. Can I just add the field directly within the MDS>file/user.xml? Would there be an issue with changing an existing attribute metadata using the user.xml?

    Pradeep thank you for your response. it was helpful. However, I also found the responses to both my questions.
    i. The null pointer exception was due to using a complex query I was using in the LOV query. I tried a simple query and that worked fine.
    ii. For modifying the user defined attributes one can consult the following forum post:
    OIM 11g - Change UDF Field Type form String to LOV
    Thanks

  • XML Publisher: issues for  a large data and datatemplate

    There is proposal to build a data template with query consisting of 350 columns and the query is expected to fetch around 10000 rows. The data template will have all 350 columns as elements.
    In the report, the user can select and show whatever columns it wants.
    Apart from tuning of the sql query, what are the other issues involved in the above case.
    thanks and regards

    I guess,
    its gonna take time to get the data into xml from DB,
    and
    of course, if you attach the template with lot of grouping, which i suppose is going to happen after by looking at the no of columns you have...
    wil be heavy on output generation part,
    if the template is going to be little complex one, then it wont be a problem :)
    what kind of issues you faced till now ?

  • Unable to load descriptor .../web.xml - DescriptorException - Java EE6 war

    Deploying a simple Java EE 6 war into WebLogic 10.3.3 fails with <Unable to load descriptor /root/Oracle/Middleware/user_projects/domains/palis1/servers/AdminServer/upload/SimpleEE6App.war/WEB-INF/web.xml of module SimpleEE6App.war. The error is weblogic.descriptor.DescriptorException: VALIDATION PROBLEMS WERE FOUND
    problem: cvc-enumeration-valid: string value '3.0' is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee:<null>
    The web app consists of one JSF 2 web dialog, one managed bean, one stateless session bean and one entity bean. In GlassFish v3 the app works fine. Then I installed the actual version of WebLogic server in order to check whether I can run EE6 apps there to. But deploying the war using WebLogic admin console fails with
    ... <AdminServer> <main> <<WLS Kernel>> <> <> <1273649525966> <BEA-000360> <Server started in RUNNING mode>
    ... <AdminServer> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <admin> <> <> <1273649790693> <BEA-160197> <Unable to load descriptor /root/Oracle/Middleware/user_projects/domains/palis1/servers/AdminServer/upload/SimpleEE6App.war/WEB-INF/web.xml of module SimpleEE6App.war. The error is weblogic.descriptor.DescriptorException: VALIDATION PROBLEMS WERE FOUND
    problem: cvc-enumeration-valid: string value '3.0' is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee:<null>
    at weblogic.descriptor.internal.MarshallerFactory$1.evaluateResults(MarshallerFactory.java:245)
    at weblogic.descriptor.internal.MarshallerFactory$1.evaluateResults(MarshallerFactory.java:231)
    at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:155)
    at weblogic.descriptor.BasicDescriptorManager.createDescriptor(BasicDescriptorManager.java:323)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.getDescriptorBeanFromReader(AbstractDescriptorLoader2.java:788)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.createDescriptorBean(AbstractDescriptorLoader2.java:409)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBeanWithoutPlan(AbstractDescriptorLoader2.java:759)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBean(AbstractDescriptorLoader2.java:768)
    at weblogic.servlet.internal.WebAppDescriptor.getWebAppBean(WebAppDescriptor.java:141)
    at weblogic.servlet.utils.WarUtils.getWebAppBean(WarUtils.java:124)
    at weblogic.application.compiler.WARModule.processLibraries(WARModule.java:413)
    at weblogic.application.compiler.WARModule.merge(WARModule.java:455)
    at weblogic.application.compiler.flow.SingleModuleMergeFlow.proecessModule(SingleModuleMergeFlow.java:16)
    at weblogic.application.compiler.flow.SingleModuleFlow.compile(SingleModuleFlow.java:36)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36)
    at weblogic.application.compiler.FlowDriver$CompilerFlowDriver.compile(FlowDriver.java:96)
    at weblogic.application.compiler.ReadOnlyWarMerger.merge(ReadOnlyWarMerger.java:27)
    at weblogic.application.compiler.flow.AppMergerFlow.mergeInput(AppMergerFlow.java:88)
    at weblogic.application.compiler.flow.AppMergerFlow.compile(AppMergerFlow.java:41)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36)
    at weblogic.application.compiler.FlowDriver$CompilerFlowDriver.compile(FlowDriver.java:96)
    at weblogic.application.compiler.AppMerge.runBody(AppMerge.java:157)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.application.compiler.AppMerge.merge(AppMerge.java:169)
    at weblogic.deploy.api.internal.utils.AppMerger.merge(AppMerger.java:88)
    at weblogic.deploy.api.internal.utils.AppMerger.getMergedApp(AppMerger.java:63)
    at weblogic.deploy.api.model.internal.WebLogicDeployableObjectFactoryImpl.createDeployableObject(WebLogicDeployableObjectFactoryImpl.java:181)
    at weblogic.deploy.api.model.internal.WebLogicDeployableObjectFactoryImpl.createLazyDeployableObject(WebLogicDeployableObjectFactoryImpl.java:156)
    at weblogic.deploy.api.tools.SessionHelper.inspect(SessionHelper.java:661)
    at com.bea.console.actions.app.install.Flow$2.execute(Flow.java:469)
    at com.bea.console.utils.DeploymentUtils.runDeploymentAction(DeploymentUtils.java:5000)
    at com.bea.console.actions.app.install.Flow.appSelected(Flow.java:467)
    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:597)
    at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:870)
    at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
    at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
    at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
    at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
    The web.xml is
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
    </context-param>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
    <welcome-file>faces/index.xhtml</welcome-file>
    </welcome-file-list>
    </web-app>
    After changing the version number I got the same error message with the differing number. I also tryed to deploy the web-app_3_0.xsd into the server. This also did not solve the problem.
    Any ideas?
    Thanks in advance
    Axel Burghof

    The web app consists of one JSF 2 web dialog, one managed bean, one stateless session bean and one entity bean. In GlassFish v3 the app works fine. Then I installed the actual version of WebLogic server in order to check whether I can run EE6 apps there to. But deploying the war using WebLogic admin console fails with ...
    Hey Axel -
    WLS 10.3.x does not implement Java EE 6 -- it's a Java EE 5 based server.
    While we have added support for a few independent Java EE 6 specifications where we can -- such as JSF 2.0 in WLS 10.3.3 and JPA 2.0/JAX-RS 1.1 with WLS 10.3.4 that is coming in the next patchset -- we don't support all of the Java EE 6 model and thus you can't use any of the EJB 3.1, Servlet 3.0 changes and you can't deploy EJBs (and JPA entities) inside of a WAR file. Our next major release will be a Java EE 6 implementation, where this will be possible.
    -steve-

  • XML Publisher report in EBS - Parameter Form Problem

    Hi,
    XML Publisher is a very powerful tool for report developing.
    In EBS, we have some efficient issue for showing the parameter form when submit a concurrent program.
    If the report is D2K Report or PL/SQL script, when submit a request, it almost shows the parameter form immediately after entering the name of the concurrent program.
    But if the report output is XML and generate report using XML Publisher, it takes about 1 minutes to show the parameter form.
    Is there any setting should be tuning in our environment or some patches should be applied??
    Thanks in advance.
    Best regards,
    Zhxiang.

    Hi All,
    Is there any suggestion, for the issue that t takes long time to show the parameter form?
    Thanks in advance,
    Zhxiang

  • Can we use xml Publisher reporting for sql* Plus in EBS

    Hello All,
    The current report is designed in Sql* Plus Executable report and the output is in txt format, Now the requirement is to have the output in Excel format.
    So is it possible to use the xml reporting and make the output as Excel from the word template we design from MSword as we do for rdf(I have done few reports created in rdf to xml publisher reports in EBS and stand alone as well.).
    Do the same procedure will suit for Sql*Plus reports tooo or Is there any work around to achieve this.
    Thanks and Regards
    Balaji.

    Hi
    Thanks for the reply..
    I tried to do the follwoing
    1. changed the output to xml in the conc. prog.
    2. ran the same report but i am getting the follwoing error in the output file
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    Invalid at the top level of the document. Error processing resource
    Other reports which are using the Oracle Reports(rdf) as source, i am able to generated the xml as expected....
    So my question is whether we can use sql* reports executable and generate xml in the conc.prog.
    if any one has used the sql*reports for xml publisher reporting... please let me know, so that if its possible i will check my sql needs some validation or tuning...
    thanks in advance
    Balaji.

  • Oim-config.xml was not found in MDS Repository.

    Hi there,
    I'm trying to install Oracle Fusion Application (last version .5) but I can't go ahead becuase I got an error during the OIM Server installation.
    $ uname -a
    Linux server02 2.6.39-200.24.1.el6uek.x86_64 #1 SMP Sat Jun 23 02:39:07 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux
    $ cd /repository/fusion/fmw/iam/bin/
    $ ./config.sh &
    Select only “OIM Server” [...] everything is going fine without error. I've re-started the AdminServer and started the OIM.
    If I try to open the browser http://<server>:14000 I got an Error 404
    Take a look at the log, there is an Error on oim-config.xml
    I was trying to find something on Google but all the forum talked about the missing security files.
    I tried to install again OIM but nothing happened.
    Someone could help me please?
    Thanks and best regards,
    Lain
    $ tail -f /repository/fusion/fmw//admin/IDMDomain/mserver/IDMDomain/servers/wls_oim1/logs/wls_oim1.log
    ####<Jan 30, 2013 1:24:15 AM CET> <Error> <Deployer> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66
    ef4907f1903f:-58c6bc2b:13c88d5b7cb:-8000-0000000000000003> <1359505455419> <BEA-149205> <Failed to initialize the application 'oim [Version=11.1.1.3.0]' due to error oracle.iam.platform.uti
    ls.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    oim-config.xml was not found in MDS Repository.
    oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    oim-config.xml was not found in MDS Repository.
            at oracle.iam.platform.utils.OIMAppInitializationListener.preStart(OIMAppInitializationListener.java:145)
            at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
            at weblogic.application.internal.flow.BaseLifecycleFlow.preStart(BaseLifecycleFlow.java:62)
            at weblogic.application.internal.flow.HeadLifecycleFlow.prepare(HeadLifecycleFlow.java:284)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:649)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
            at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
            at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
            at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
            at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:144)
            at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:40)
            at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
            at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
            at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
            at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
            at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
            at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    oim-config.xml was not found in MDS Repository.
           at oracle.iam.platform.utils.OIMAppInitializationListener.preStart(OIMAppInitializationListener.java:145)
            at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
            at weblogic.application.internal.flow.BaseLifecycleFlow.preStart(BaseLifecycleFlow.java:62)
            at weblogic.application.internal.flow.HeadLifecycleFlow.prepare(HeadLifecycleFlow.java:284)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:649)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
            at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
            at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
            at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
            at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:144)
            at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:40)
            at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
            at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
            at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
            at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
            at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
            at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    ####<Jan 30, 2013 1:24:15 AM CET> <Warning> <Munger> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66ef4907f1903f:-58c6bc2b:13c88d5b7cb:-8000-0000000000000003> <1359505455586> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in /repository/fusion/fmw/iam/server/apps/spml-xsd.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    ####<Jan 30, 2013 1:24:15 AM CET> <Warning> <Munger> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66ef4907f1903f:-58c6bc2b:13c88d5b7cb:-8000-0000000000000003> <1359505455702> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in /repository/fusion/fmw/admin/IDMDomain/mserver/IDMDomain/servers/wls_oim1/tmp/_WL_user/spml-xsd/ahejq0/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    ####<Jan 30, 2013 1:24:15 AM CET> <Info> <WorkManager> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66ef4907f1903f:-58c6bc2b:13c88d5b7cb:-8000-0000000000000003> <1359505455706> <BEA-002903> <Creating WorkManager from "OIMUIWorkManager" WorkManagerMBean for application "spml-xsd">
    ####<Jan 30, 2013 1:24:15 AM CET> <Info> <WorkManager> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66ef4907f1903f:-58c6bc2b:13c88d5b7cb:-8000-0000000000000003> <1359505455706> <BEA-002903> <Creating WorkManager from "OIMMDBWorkManager" WorkManagerMBean for application "spml-xsd">
    ####<Jan 30, 2013 1:24:15 AM CET> <Info> <Deployer> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66ef4907f1903f:-58c6bc2b:13c88d5b7cb:-8000-0000000000000003> <1359505455718> <BEA-149059> <Module spml-xsd of application spml-xsd is transitioning from STATE_NEW to STATE_PREPARED on server wls_oim1.>

    Thanks for your support Rajiv Dewan and idamGod,
    I've just followed this metalink ID: “Easy step for Oracle Identity Manager 11g (OIM 11g) installation on Windows [ID 1234357.1]”
    In my case I don’t have this error:
    Unable to find keystore "default-keystore.jks" in <DOMAIN_HOME>/config/fmwconfig/.
    Unable to find keystore ".xldatabasekey" in <DOMAIN_HOME>/config/fmwconfig/.
    […]Maybe it’s the same root causes but I installed again the OIM without success. I can’t login to the OIM because I just back 404.
    I’m sorry but I didn’t understand what I can do.
    Thanks,
    Lain

  • Error while deploying in web.xml with web-app_2_5.xsd

    Weblogic version 10.3.5 and java is 1.6.0_31
    context root is - "/" (slash)
    Web.xml - old
    has following declaration and works fine
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    i am trying to change web.xml's web-app definition as below
    Web.xml - new
    <web-app xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         version="2.5">
    and to accommodate above change i enclosed all "tag libs" inside <jsp-config> tag which is as per 2.5
    when i try to deploy with above changes, i am getting following error but with old definition i am not getting any error.
    <Error> <Deployer> <clbblr-4423> <StoreFront> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1358234763292> <BEA-149205> <Failed to initialize the application 'shopstr' due to error weblogic.application.ModuleException: Failed to load webapp: '/'.
    weblogic.application.ModuleException: Failed to load webapp: '/'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:613)
    Caused By: java.lang.ClassNotFoundException: atg.web.tagsupport.CollectionTagSupport
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)
         at java.lang.ClassLoader.defineClass1(Native Method)
    Would appreciate suggestions. Thanks

    added JAR file pwsTaglib2_0.jar and now problems are resolved. will open this thread if i see any other error

  • Error while saving xml document in table

    I am using dbms_xmlsave.insert to
    insert records in the table.
    The procedure works fine when the xml file size is less then 1 Mb.
    But when the file size is around 4 MB
    I get the error java.lang.outofMemoryError.
    Is there any limitation of number of records that can be saved or is there any parameter or any file required to be tuned.
    null

    Try increase JAVA_POOL size or set BATCH_SIZE
    to be small.

  • Oracle Open World 2012 - XML DB Presentations and Hands-on Labs

    Hereby following up on a small tradition, I think, I get going since 2006...an agenda overview of all things XMLDB you can do or see during this years Oracle Open World.
    Oracle Open World is the biggest IT conference nowadays in the world with 40.000+ thousand attendees and 1600+ sessions or workshops, so an overview regarding specific topics can be handy.
    If there is an update or something needs correction or added, please post it here.
    Regards
    Marco Gralike
    HOL10055 - Oracle XML DB Hands-On Lab
    ========================================================================================================================
    This hands-on lab provides an introduction to using Oracle XML DB and XQuery to store and manage XML content stored in Oracle Database.
    It introduces the different kinds of XML storage and indexing offered by Oracle XML DB and shows how to optimize XQuery operations on XML
    content by selecting the correct storage and indexing model. The lab also provides an introduction to the XML features available in the latest
    version of Oracle Database, including the new XQuery Update standard. And it shows how to take full advantage of the latest XQuery standards,
    such as XQuery Full-Text, to develop applications that combine the power of Full-Text and XML-based indexes
    BOF9908 - Oracle XML DB BOF
    ========================================================================================================================
    This session provides you with an opportunity to get answers to your questions about Oracle XML DB from the development team, product
    management team, acknowledged independent experts, and fellow Oracle XML DB users. The goal is to have an open and frank discussion
    about how to get the best out of all the features of Oracle XML DB. The session gives you a chance to establish personal contact with the
    people who have firsthand experience with developing and delivering systems that make use of Oracle XML DB
    CON8443 - Simple Content Management with Oracle XML DB and Database Native Web Services
    ========================================================================================================================
    This session demonstrates the power of the Oracle XML DB repository. You will learn how to automate the processing of documents stored
    in the Oracle XML DB repository, using repository events, and how to combine XML, PL/SQL, and database native Web services with Ajax and
    JavaScript to create simple, effective applications that leverage the full power of Oracle XML DB and the Oracle XML DB repository. The session
    focuses on a sample application, called XFiles, and shows how it was created with a combination of XML, XSL, JavaScript Ajax, and PL/SQL
    CON8440 - Managing XML Content with the Latest-Generation Oracle XML DB
    ========================================================================================================================
    This session introduces the latest generation of Oracle XML DB technology. XML standards continue to evolve, and Oracle XML DB continues
    to provide the industry’s leading implementation of those standards. The latest version of Oracle XML DB provides support for two new exciting
    XML standards, XQuery-Update and XQuery-Full Text. You will learn how to use XQuery, XQuery-Update, and XQuery Full-Text to develop
    powerful XML-centric applications. The session also demonstrates how to optimize XQuery Full-Text operations with Oracle’s new XML full-text
    index. The presentation also introduces Oracle’s new midtier XQuery engine and the XQJ API, which enables Java developers to access the full
    power of Oracle’s XML technology
    CON3148 - Integrating XML by Using Oracle SQL Developer 3.1 and Oracle Database 11g Release 2
    ========================================================================================================================
    Frequently during a project lifecycle, new technology is introduced that presents first-time challenges. This session describes a project using
    Oracle XML Database (Oracle XML DB) and discusses why Oracle XML DB was chosen, how it was used, and the technical issues encountered.
    The presentation covers several examples using XMLTYPE, CLOBs, Oracle XML DB methods, XMLAGG, XMLELEMENT, XMLFOREST, and
    dbms_xmldom. You will learn about methods, design considerations, and issues with Oracle XML DB. You will also take home working examples
    that you can copy and paste into your Oracle environment. Benefit from examples that use Oracle Database 11g Release 2 and Oracle SQL
    Developer 3.1.
    CON8442 - Design Guidelines and Performance Tuning for Storing XML in Oracle Database
    ========================================================================================================================
    This session examines techniques that can be used to optimize the performance of XML processing in Oracle XML DB. It looks at the different
    storage and indexing options and provides guidelines on when each should be considered. After establishing a framework for deciding how to
    store XML, the presentation considers the options available for indexing XML to ensure optimal performance of an XML-based application.
    The session also discusses how standard techniques such as partitioning and using parallel data manipulation language (PDML) can be used to
    scale XML processing on extremely large volumes of XML content and how Oracle XML DB can leverage the intelligent storage capabilities of
    Oracle Exadata.
    DEMOGROUNDS (Moscone South)
    XML Application Development: Oracle XML DB, Oracle XML Developer Kit
    ========================================================================================================================
    Oracle XML Database provides a high-performance, native XML storage and retrieval technology. It fully absorbs the W3C XML data model into
    the Oracle Database, and provides new standard access methods for navigating and querying XML. With Oracle XML Database, you get all the
    advantages of relational database technology plus the advantages of XML. Come and learn how to develop applications that take advantage
    of Oracle's XML technology and the Oracle XML DB Repository.
    Oracle XML Database: Structured, Semistructured, and Unstructured XML
    ========================================================================================================================
    Oracle XML Database provides a high-performance, native XML storage and retrieval technology. It fully absorbs the W3C XML data model into
    the Oracle Database, and provides new standard access methods for navigating and querying XML. With Oracle XML Database, you get all the
    advantages of relational database technology plus the advantages of XML. Come and learn how to develop applications that take advantage
    of Oracle's XML technology and the Oracle XML DB Repository.Oracle's OOW 2012 Content Catalog: https://oracleus.activeevents.com/connect/search.ww?event=openworld (use "XML DB" or "XMLDB" as search tag)
    Edited by: user10212268 on Aug 13, 2012 5:10 AM

    Other resources are also on linkedin http://www.linkedin.com/groups/Oracle-XMLDB-3282943 to keep you updated.
    M.

  • Missing XML files in Export of Portal Resource in WebCenter Portal App

    Using JDeveloper 11.1.1.5.0
    1) Create a JSF fragment in the Portal Project/WebContent/oracle/webcenter/portalapp/pages -> untiltled3.jsff.
    2) From the Component Palette -> Webcenter Content Display Templates, drag a Content Template Def onto the jsff.
    3) Create var = "node".
    4) Drag an AdfOutputText into the contentTemplateDef.
    5) Save.
    6) In Application Navigator, right click on untitled3.jsff -> View Page Definition. No page definition has been created. Create a new page definition.
    7) In Application Navigator, right click on untitled3.jsff -> Create Portal Resource.
    7.1) Select my Content Repository Name(already created a content server Application Resource called UML)
    7.2) Content Type - IDC:GlobalProfile
    7.3) Content Type Default View: true
    7.4) View ID - testTemplate
    7.5) Display Name - untitled3
    7.6) Content Directory - defaulted to /C:/Projects/Application1/Portal/public_html/oracle/webcenter/portalapp/shared/
    8) Click OK.
    9) In Application Navigator, right click on untitled3.jsff -> Export Portal Resource.
    1) Export Archive File Name -> M:\testTemplate6102011
    10) Click OK.
    11) Results in the following:
    This is displayed in the Messages - Log:
    Jun 10, 2011 10:47:12 AM oracle.mds
    WARNING: The associated extended metadata document for the given document name /oracle/webcenter/portalapp/pages/untitled3PageDef.xml is missing.
    Jun 10, 2011 10:47:12 AM oracle.mds
    WARNING: The associated extended metadata document for the given document name /oracle/webcenter/portalapp/pages/untitled3.jsff is missing.
    Jun 10, 2011 10:47:12 AM oracle.mds
    WARNING: The associated extended metadata document for the given document name /oracle/webcenter/portalapp/pages/untitled3PageDef.xml is missing.
    How do I setup JDev to include the missing xml files? What am I doing wrong?
    Follow Up:
    When I Upload my testTemplate6102011.ear in Webcenter Spaces-> Resources -> Content Presenter I get the following error in the Spaces log file:
    Message ID     WCS-12045
    Message Level     1
    Relationship ID     0
    Component     WCSpaces
    Module     oracle.webcenter.lifecycle.siteresource.operation.SiteResourceImportOperation
    Thread ID     [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    ECID     5b329033a707e8d5:2d924c4d:130755eef60:-8000-00000000000061c3
    Message     Operation aborted because of an exception thrown by subunit (oracle.webcenter.lifecycle.siteresource.configuration.SiteResourceConfigurationUnit)
    Supplemental Detail     oracle.webcenter.lifecycle.LifecycleException: Unexpected error occurred while adding a generic site resource.
    at oracle.webcenter.portalframework.genericsiteresources.model.lifecycle.SiteResourcesHelper.addSiteResource(SiteResourcesHelper.java:222)
    at oracle.webcenter.portalframework.genericsiteresources.model.lifecycle.DefaultSiteResourceLifecycleHandler.updateImportRegistry(DefaultSiteResourceLifecycleHandler.java:824)
    at oracle.webcenter.lifecycle.siteresource.SiteResourceLifecycleHandler.doConfigurationImport(SiteResourceLifecycleHandler.java:273)
    at oracle.webcenter.lifecycle.siteresource.configuration.SiteResourceConfigurationUnit.doImport(SiteResourceConfigurationUnit.java:121)
    at oracle.webcenter.lifecycle.siteresource.operation.SiteResourceImportOperation.doImport(SiteResourceImportOperation.java:129)
    at oracle.webcenter.lifecycle.LifecycleSiteResourceService.doImport(LifecycleSiteResourceService.java:339)
    at oracle.webcenter.lifecycle.view.siteresource.LifecycleSRMImportBean.doImport(LifecycleSRMImportBean.java:198)
    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:597)
    at com.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:879)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:312)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.bi.nanserver.adf.servlet.BIADFServletFilter.doFilter(BIADFServletFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.bi.presentation.runtime.binding.BIRegionBindingFilter.doFilter(BIRegionBindingFilter.java:43)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.generalsettings.model.provider.GeneralSettingsProviderFilter.doFilter(GeneralSettingsProviderFilter.java:83)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellPageRedirectionFilter.doFilter(WebCenterShellPageRedirectionFilter.java:250)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellFilter.doFilter(WebCenterShellFilter.java:696)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:109)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.processFilters(WebCenterLocaleWrapperFilter.java:335)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.doFilter(WebCenterLocaleWrapperFilter.java:224)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: oracle.webcenter.portalframework.genericsiteresources.GenericSiteResourcesException: Unexpected error occurred while adding a generic site resource.
    at oracle.webcenter.portalframework.genericsiteresources.internal.model.GenericSiteResourcesManagerImpl.addResource(GenericSiteResourcesManagerImpl.java:333)
    at oracle.webcenter.portalframework.genericsiteresources.model.lifecycle.SiteResourcesHelper.addSiteResource(SiteResourcesHelper.java:214)
    at oracle.webcenter.portalframework.genericsiteresources.model.lifecycle.DefaultSiteResourceLifecycleHandler.updateImportRegistry(DefaultSiteResourceLifecycleHandler.java:824)
    at oracle.webcenter.lifecycle.siteresource.SiteResourceLifecycleHandler.doConfigurationImport(SiteResourceLifecycleHandler.java:273)
    at oracle.webcenter.lifecycle.siteresource.configuration.SiteResourceConfigurationUnit.doImport(SiteResourceConfigurationUnit.java:121)
    at oracle.webcenter.lifecycle.siteresource.operation.SiteResourceImportOperation.doImport(SiteResourceImportOperation.java:130)
    at oracle.webcenter.lifecycle.LifecycleSiteResourceService.doImport(LifecycleSiteResourceService.java:339)
    at oracle.webcenter.lifecycle.view.siteresource.LifecycleSRMImportBean.doImport(LifecycleSRMImportBean.java:202)
    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:597)
    at com.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:879)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:312)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.bi.nanserver.adf.servlet.BIADFServletFilter.doFilter(BIADFServletFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.bi.presentation.runtime.binding.BIRegionBindingFilter.doFilter(BIRegionBindingFilter.java:44)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:34)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:45)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.webcenter.generalsettings.model.provider.GeneralSettingsProviderFilter.doFilter(GeneralSettingsProviderFilter.java:83)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellPageRedirectionFilter.doFilter(WebCenterShellPageRedirectionFilter.java:253)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellFilter.doFilter(WebCenterShellFilter.java:701)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:116)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:176)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.processFilters(WebCenterLocaleWrapperFilter.java:335)
    at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.doFilter(WebCenterLocaleWrapperFilter.java:224)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    ... 6 more
    Caused by: oracle.security.idm.OperationFailureException: javax.naming.PartialResultException [Root exception is javax.naming.CommunicationException: DomainDnsZones.fitchdevna.corp:389 [Root exception is java.net.UnknownHostException: DomainDnsZones.fitchdevna.corp]]
    at oracle.security.idm.providers.stdldap.util.LDAPRealm.throwException(LDAPRealm.java:773)
    at oracle.security.idm.providers.stdldap.util.DirectSearchResponse.initSearch(DirectSearchResponse.java:162)
    at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:52)
    at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:44)
    at oracle.security.idm.providers.stdldap.util.LDAPRealm.searchUsers(LDAPRealm.java:489)
    at oracle.security.idm.providers.stdldap.LDIdentityStore.search(LDIdentityStore.java:273)
    at oracle.security.idm.providers.stdldap.LDIdentityStore.searchUsers(LDIdentityStore.java:366)
    at oracle.webcenter.framework.service.Utility.findUserByGuid(Utility.java:765)
    at oracle.webcenter.portalframework.genericsiteresources.internal.model.GenericSiteResourcesManagerImpl.addResource(GenericSiteResourcesManagerImpl.java:179)
    ... 104 more
    Caused by: javax.naming.PartialResultException [Root exception is javax.naming.CommunicationException: DomainDnsZones.fitchdevna.corp:389 [Root exception is java.net.UnknownHostException: DomainDnsZones.fitchdevna.corp]]
    at com.sun.jndi.ldap.LdapNamingEnumeration.hasMoreImpl(LdapNamingEnumeration.java:224)
    at com.sun.jndi.ldap.LdapNamingEnumeration.hasMore(LdapNamingEnumeration.java:171)
    at oracle.security.idm.providers.stdldap.util.DirectSearchResponse.initSearch(DirectSearchResponse.java:137)
    at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:52)
    at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:43)
    at oracle.security.idm.providers.stdldap.util.LDAPRealm.searchUsers(LDAPRealm.java:489)
    at oracle.security.idm.providers.stdldap.LDIdentityStore.search(LDIdentityStore.java:273)
    at oracle.security.idm.providers.stdldap.LDIdentityStore.searchUsers(LDIdentityStore.java:366)
    at oracle.webcenter.framework.service.Utility.findUserByGuid(Utility.java:765)
    at oracle.webcenter.portalframework.genericsiteresources.internal.model.GenericSiteResourcesManagerImpl.addResource(GenericSiteResourcesManagerImpl.java:179)
    at oracle.webcenter.portalframework.genericsiteresources.model.lifecycle.SiteResourcesHelper.addSiteResource(SiteResourcesHelper.java:214)
    at oracle.webcenter.portalframework.genericsiteresources.model.lifecycle.DefaultSiteResourceLifecycleHandler.updateImportRegistry(DefaultSiteResourceLifecycleHandler.java:824)
    at oracle.webcenter.lifecycle.siteresource.SiteResourceLifecycleHandler.doConfigurationImport(SiteResourceLifecycleHandler.java:273)
    at oracle.webcenter.lifecycle.siteresource.configuration.SiteResourceConfigurationUnit.doImport(SiteResourceConfigurationUnit.java:121)
    at oracle.webcenter.lifecycle.siteresource.operation.SiteResourceImportOperation.doImport(SiteResourceImportOperation.java:129)
    at oracle.webcenter.lifecycle.LifecycleSiteResourceService.doImport(LifecycleSiteResourceService.java:339)
    at oracle.webcenter.lifecycle.view.siteresource.LifecycleSRMImportBean.doImport(LifecycleSRMImportBean.java:198)
    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:597)
    at com.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:879)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:312)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.bi.nanserver.adf.servlet.BIADFServletFilter.doFilter(BIADFServletFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.bi.presentation.runtime.binding.BIRegionBindingFilter.doFilter(BIRegionBindingFilter.java:43)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterCh

    Hi,
    try this forum: WebCenter Portal
    Frank

  • Handling xml message of size more than 100mb in SAP PI 7.1

    Dear Experts,
    Is it possible for PI to pick-up and process a XML message of size more than 100 MB in PI 7.1 EHP-1?
    If yes, can you please let me know how to handle it?
    Thank  you.

    Hi Saravana,
    it is not a best practice to more than 100mb..
    you can increase below parameters and so that you would be able to process for the best..
    u2022     UME Parameters :  May be we need to look into the pool size and poolmax wait parameters - UME recommended parameters (like: poolmaxsize=50, poolmaxwait=60000)
    u2022     Tuning Parameters:  May be we need to look/define the Message Size Limit u201Clike: EO_MSG_SIZE_LIMIT = 0000100u201D under tuning category
    u2022     ICM Parameters: May be we need to consider ICM parameters (ex: icm/conn_timeout = 900000. icm/HTTP/max_request_size_KB = 2097152)
    Thanks and Regards,
    Naveen

  • XML to Idoc- XML size more than 200 MB

    Hi Experts,
    I have an interface with source xml file size more than 200MB. I need to map it to Idoc and send it to ERP. I am planning to change wsdl of idoc(changing occurence 1.1 to 0.99999) to send multiple idocs in one message.
    I want to split XML file somehow and send it. what are the different options i have to achieve that ?  I am short of ideas.
    I know if we have flat file,  we can use recordset per message in sender file adapter.
    OR
    Cleint is willing to send it as a SOAP request, i do not want to use SOAP for such a big file.
    Regards
    Inder

    Hi Inder,
    As per sap recommendation we would be able to handle 100 MB, you need to tune your server by increasing the [arametersso that you would be able to handle the messages with big payload.
    By default the parameter  icm/HTTP/max_request_size_KB will be 10240 which can handle 100MB of file size.if you increase the parameter value by tuning ur system you can process a file bigger than that..
    Please refer to the below links for reference....
    [link1|http://help.sap.com/saphelp_nw04s/helpdata/en/58/108b02102344069e4a31758bc2c810/content.htm]
    [link2|http://help.sap.com/saphelp_nwpi71/helpdata/de/95/1528d8ca4648869ec3ceafc975101c/content.htm]
    as per the above suggestions the best practice is to sand as a multiple idocs splitting into chunks.
    Cheers!!!!
    Naveen.

  • Advice to "thick as a brick" in Java-files tuning, please

    I have just now installed on the NT ojsp, jswdk, jsdk, Apache
    and tried OJSP "White papers"'s example with <%@ page
    import="mybeans.NameBean" %>. I have compiled "NameBean.java"
    to "NameBean.class" and put it into the same directory where a
    jsp-coded page saved. But I got:
    Request URI: /Usebean.jsp
    Exception:
    oracle.jsp.parse.JspParseException: Line #2, Error: Unable to
    find class for bean 'pageBean' defined by tag with class:
    mybeans.NameBean
    Could somebody advice me where I can find descriptions of
    Javabeans, classes and import USING and TUNING on the filesystem?
    And where should I put NameBean.class to run "Usebean.jsp"?
    null

    GF (guest) wrote:
    : Oracle Java Technical Team wrote:
    : : GF (guest) wrote:
    : : : I have just now installed on the NT ojsp, jswdk, jsdk,
    : Apache
    : : : and tried OJSP "White papers"'s example with <%@ page
    : : : import="mybeans.NameBean" %>. I have
    : compiled "NameBean.java"
    : : : to "NameBean.class" and put it into the same directory
    : where a
    : : : jsp-coded page saved. But I got:
    : : : Request URI: /Usebean.jsp
    : : : Exception:
    : : : oracle.jsp.parse.JspParseException: Line #2, Error: Unable
    : to
    : : : find class for bean 'pageBean' defined by tag with class:
    : : : mybeans.NameBean
    : : : Could somebody advice me where I can find descriptions of
    : : : Javabeans, classes and import USING and TUNING on the
    : : filesystem?
    : : : And where should I put NameBean.class to run "Usebean.jsp"?
    : : Your download also contains documentation; "Oracle JSP
    : Developers
    : : Guide". Read the first couple of chapters including the one
    : : concerning JSP applications.
    : : The short answer to you question is you put the bean in the
    : : WEB-INF/classes directory of your application. If you have
    no
    : : application then the servers document root is considered the
    : : application (root).
    : : An alternative is to put the class where ever you want and
    : : configure either OJSP or the underlying servers classpath to
    : : include this location.
    : ===========================================================
    : Thanks a lot for the previous one.
    : There is other point of question.
    : I successfully tested "white paper"'s JDBCQuery.jsp but didn't
    : the SQLJQuery.sqljsp.
    : Could you help again? Where is the reason of Exception?
    : So,
    : It seems that I have all required records and over in
    : the "jserv.properties" file:
    : "wrapper.classpath=C:\Program Files\Apache Group\Apache
    : JServ\ApacheJServ.jar
    : wrapper.classpath=d:\Jsdk2.0\lib\jsdk.jar
    : wrapper.classpath=d:\jswdk-1.0.1\lib\servlet.jar
    : wrapper.classpath=d:\ojsp\lib\ojsp.jar
    : wrapper.classpath=d:\ojsp\lib\xmlparserv2.jar
    : wrapper.classpath=d:\jswdk-1.0.1\lib\jspengine.jar
    : wrapper.classpath=d:\jswdk-1.0.1\lib\xml.jar
    : wrapper.classpath=d:\orant\jdbc\lib\classes111.zip
    : wrapper.classpath=d:\ojsp\lib\translator.zip"
    : But running of http://nt-tst/SQLJQuery.sqljsp gives on the
    : Browser's page:
    : "JSP Error
    : Request URI: /SQLJQuery.sqljsp
    : Exception:
    : oracle.jsp.provider.JspCompileException:
    : Errors compiling: c:\jsps\\SQLJQuery.java
    : Line # Error "
    : and in "jserv.log":
    : [26/11/1999 14:52:02:280 GMT+03:00] JspServlet: unable to
    : dispatch to requested page:Exception:
    : oracle.jsp.provider.JspCompileException: <H3>Errors compiling:
    : c:\jsps\\SQLJQuery.java</H3>...
    : I checked SQLJQuery.sqlj file in the Jdeveloper 2.0
    environment.
    : There were red painted items:
    : "import oracle.jsp.runtime.*;
    : import javax.servlet.jsp.*;
    : import oracle.sqlj.runtime.Oracle;
    : oracle.jsp.runtime.HttpJsp
    : hireDate
    : JspFactory
    : PageContext
    : JspWriter".
    The error is being reported during page compile. Unfortunately,
    the compile problem isn't being reported. It is possible that
    the code is confused and the page compiled correctly -- check to
    see if SQLJQuery.class exists.
    Another thing to check is what files were generate? Does
    SQLJQuery.java exist? If not an error occurred when the SQLJ
    translator was run. If SQLJQuery.java exists but SQLJQuery.class
    doesn't then the error occurred during Java compilation. My
    advice in either case is to manually translate/compile thelast
    generated file to determine the actual compile/translation error.
    I.e. either SQLJQuery.sqlj via the SQLJ translator
    or SQLJQuery.java via the Java compiler
    null

Maybe you are looking for

  • Missing ID3 Tags

    Is there an open-source app or one that supports PPC Macs that helps you fix missing ID3 tag data? ITunes 7 is amazing with the new search engine + cool UI to quickly pick the album of your choice.... HOWEVER, I have no use for this since some dork t

  • Time machine no longer backs up changes to files in home folder.

    My Time Machine seems to be in some sort of weird state where it has stopped backing up any files/folders in my home (~/) folder or below. This is obviously a big issue since those are the files most needing to be backed up. It does catch changes to

  • Cant create a review in Indesign CS5

    I recently created a number of reviews from both Photoshop and Indesign, however it now seems that it has stopped working. I can add a review but it tells me there is no content. There is 6 pages in the doc, and it asks me to "take an image" of it, b

  • Connection string for 9i from vb6.0

    i am accessing a package and stored procedure inside the package from vb 6.0 application. the record fetch is too slow and takes about 4 mins for just 11 records. if i execute the package directly it takes 3 seconds for the records to be fetched. i a

  • SQL Developer in Citrix

    Hi, 1. Are there are development teams, who are using the SQL developer software in Citrix? 2. I had SQL developer 1.2 version and then upgraded to 2.1 version and found that the connection info was all gone. I found the IDEConnections.xml from my de