Unable to register ORACLE_HOME into global orainventory

Hi,
I am unable to register my rdbms_oracle_home in global orainventory.
I am getting the velow error.
ERROR: Error in fixing ORACLE_HOME index
java.io.FileNotFoundException: /u04/Rel11i/devdb/9.2.0/inventory/ContentsXML/comps.xml (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:91)
at java.io.FileInputStream.<init>(FileInputStream.java:54)
at oracle.apps.ad.util.OUISetup.fixHomeIdx(OUISetup.java:293)
at oracle.apps.ad.util.OUISetup.main(OUISetup.java:1347)
Removing OUI entries from the global inventory: /etc/oraInventory/ContentsXML/comps.xml
Registering the OUI component with local inventory...
ERROR: Exception while registering OUI 2.2 Component in the inventory.
java.io.FileNotFoundException: /u04/Rel11i/devdb/9.2.0/inventory/ContentsXML/comps.xml (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:91)
at oracle.apps.ad.util.OUISetup.registerOuiComp(OUISetup.java:913)
at oracle.apps.ad.util.OUISetup.main(OUISetup.java:1349)
The error is due to missing "inventory" directory in RDBMS $ORACLE_HOME.
But the IAS$ORACLE_HOME is fine.
Is there any way to create this directory or we need to reinstall Oracle_home. if yes then how do we do that. Currently we are on 9.2.0.6. Do I need to reinstall it ?
Regards,
Farhat

So, what is the difference between this and using 'rapidwiz -techstack'? We never discussed this option in this thread ? Moreover what's the point in installing and redoing the work just for Inventory? Can you explain, if I can do the task in 5 min, why should I spend 50 min on it. Anyways that's my opinion.
Thanks

Similar Messages

  • Unable to register XSD into Oracle using trigger / procedure

    Hi,
    I am using Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production.
    I have a table which stores XSD and i need to register this XSD. I am able to register the XSD if dbms_schema is executed from PLSQL anonymous block. But if i mention the same code in trigger / procedure is not working . Getting the error as insufficient privileges.
    Table, trigger and procedure are in same schema. This schema has all the privs required for XSD registration globally.
    create table t_vkk ( n number, xsd xmltype)
    alter table t_vkk add active varchar2(1)
    create sequence seq_vkk start with 1 increment by 1
    CREATE OR REPLACE TRIGGER TRG_t_vkk_xsd
    AFTER INSERT OR UPDATE
    ON t_vkk
    REFERENCING OLD AS old NEW AS new
    FOR EACH ROW
    BEGIN
    IF INSERTING AND :new.active = 'Y'
    THEN
    prc_reg_xsd(:new.n, :new.xsd);
    END IF;
    -- Applied when updating rows in the table
    IF UPDATING
    THEN
    IF :new.active = 'Y' -- XSD re-registration since template id is still active
    THEN
    prc_reg_xsd(:old.n, :old.xsd);
    ELSIF :new.active = 'N' -- XSD de-registration
    THEN
    BEGIN
    dbms_xmlschema.deleteschema (
    schemaurl => :old.n
    , delete_option => dbms_xmlschema.delete_cascade_force
    EXCEPTION
    WHEN OTHERS
    THEN
    NULL; -- This XSD was not registered
    END;
    END IF;
    END IF;
    END TRG_t_vkk_xsd;
    This fails -
    insert into t_vkk
    values (0,XMLTYPE(
    '<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:books" xmlns:bks="urn:books">
    <xsd:element name="books" type="bks:BooksForm"/>
    <xsd:complexType name="BooksForm">
    <xsd:sequence>
    <xsd:element name="book" type="bks:BookForm" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="BookForm">
    <xsd:sequence>
    <xsd:element name="author" type="xsd:string"/>
    <xsd:element name="title" type="xsd:string"/>
    <xsd:element name="genre" type="xsd:string"/>
    <xsd:element name="price" type="xsd:float"/>
    <xsd:element name="pub_date" type="xsd:date"/>
    <xsd:element name="review" type="xsd:string"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:string"/>
    </xsd:complexType>
    </xsd:schema>'
    ), 'Y')
    This works :
    After inserting the record into t_vkk (Trigger is disabled)
    declare
    begin
    for x in (select * from t_vkk)
    loop
    dbms_output.put_line (x.xsd.getstringval());
    BEGIN
    dbms_xmlschema.deleteschema (
    schemaurl => x.n
    , delete_option => dbms_xmlschema.delete_cascade_force
    EXCEPTION
    WHEN OTHERS
    THEN
    NULL; -- This XSD was not registered
    END;
    dbms_xmlschema.registerschema (schemaurl => x.n
    , schemadoc => x.xsd
    , local => false);
    end loop;
    end;
    This Fails:
    create or replace procedure prc_reg_xsd
    as
    begin
    for x IN (select * from t_vkk)
    loop
    BEGIN
    dbms_xmlschema.deleteschema (
    schemaurl => x.n
    , delete_option => dbms_xmlschema.delete_cascade_force
    EXCEPTION
    WHEN OTHERS
    THEN
    NULL; -- This XSD was not registered
    END;
    dbms_xmlschema.registerschema (schemaurl => x.n
    , schemadoc => x.xsd
    , local => false);
    end loop;
    end;
    BEGIN
    prc_reg_xsd;
    END;
    -Vinod K

    Thanks everyone. I got the solution from one of my colleague. I can invoke dbms_xmlschema.registerschema through my standalone procedure by using current_user authid.
    create or replace procedure prc_reg_xsd
    (in_id IN NUMBER
    , in_xsd IN XMLTYPE)
    authid current_user
    as
    begin
    dbms_output.put_line (' startd');
    BEGIN
    dbms_xmlschema.deleteschema (
    schemaurl => in_id
    , delete_option => dbms_xmlschema.delete_cascade_force
    EXCEPTION
    WHEN OTHERS
    THEN
    dbms_output.put_line (' Failed'); -- This XSD was not registered
    END;
    dbms_xmlschema.registerschema (schemaurl => in_id
    , schemadoc => in_xsd
    , local => false);
    dbms_output.put_line (' done');
    end;
    DECLARE
    x number:=9;
    t xmltype := XMLTYPE(
    '<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:books" xmlns:bks="urn:books">
    <xsd:element name="books" type="bks:BooksForm"/>
    <xsd:complexType name="BooksForm">
    <xsd:sequence>
    <xsd:element name="book" type="bks:BookForm" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="BookForm">
    <xsd:sequence>
    <xsd:element name="author" type="xsd:string"/>
    <xsd:element name="title" type="xsd:string"/>
    <xsd:element name="genre" type="xsd:string"/>
    <xsd:element name="price" type="xsd:float"/>
    <xsd:element name="pub_date" type="xsd:date"/>
    <xsd:element name="review" type="xsd:string"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:string"/>
    </xsd:complexType>
    </xsd:schema>');
    BEGIN
    prc_reg_xsd(x,t);
    END;
    This worked for me. The procedure is in the same schema which has XDBADMIN role. So i am able to register the XSD.
    Vinod

  • Windows XP - Unable to register with DCOM within the timeout limit

    Just curious if anyone has run into iTunes server unable to register with DCOM within the given timeout limit?
    Also quite often when I close iTunes, the process shutsdown but then 30sec - 2min iTunes opens its self right back up again. I ususally have to terminiate it from the Task Manager.
    I am running the latest version of iTunes as of Sept 28th 1:30AM

    have a look here http://www.grc.com/freeware/dcom.htm
    Thinkpad R61 7733-1GU
    Thinkpad X61T 7762-54U
    Thinkpad X60T 6363-4GU
    Did a member help you today? Thank them with a Kudo!
    If a post answers your question, please mark it as an "Accepted Solution"!
    Regards,
    GMAC

  • Unable to register my data warehouse in Service Manager

    I have been trying to register my data warehouse but keep getting the same error message each time - "Invalid URI:  the hostname could
    not be parsed."  I know the issue is on the ServiceManager database side of things, but there is not a lot of information related to this error message and the info I do find is unrelated to ServiceManager.  I have gone as far as building a
    brand new data warehouse server and reinstalling all of the data warehouse databases from scratch.  It doesn't matter if I tried to register with the original data warehouse environment or the new environment, I get the same error message.  I also
    received a powershell command from Microsoft Support to help clean up any residual entries in the ServiceManager database that might be left over.  At this point I'm at a loss on how to proceed.  Anyone ever run into this issue?
    Here's the event log message:
    Unable to register Service Manager installation with Data Warehouse installation.
     Data Warehouse Server: DW_SCSM
     Service Manager Management Server: FlowSMRC
     Exception: Microsoft.EnterpriseManagement.UI.Core.Shared.PowerShell.PSServiceException: Invalid URI: The hostname could not be parsed.
       at Microsoft.EnterpriseManagement.UI.Core.Shared.PowerShell.PSHostService.executeHelper(String cmd, Object[] input)
       at Microsoft.EnterpriseManagement.UI.Core.Shared.PowerShell.PSHostService.Invoke(String cmd, Object[] input)
       at Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.DWRegistration.Registration.DWRegistrationHelper.AcceptChanges(WizardMode wizardMode)
    Also, I tried registering the data warehouse using powershell Add-SCDWMgmtGroup and get an error saying that Cannot associate Service Manager installation on scsm_server with Service Manager Data Warehouse installation on dw_server.

    Just got additional information about this error. If you run the following query in SQL pointing to the ServiceManager database you should see the name of the Management Server.  The query is:
    select * from MT_Microsoft$SystemCenter$ResourceAccessLayer$SdkResourceStore
    There is a column named Server_<some GUID> that should contain the Management Sever NetBIOS name.  If it has some other name, run an update query to ensure the column has the NetBIOS name of the Management Server.  Restart the SCSM Console
    and retry the Database Registration again and it should succeed.
    Microsoft has said that this is normally caused by either moving the database or database server to another server and the value is never updated.
    Try registering the DW Server again and see if you have better luck.

  • Unable to register UWL

    Hello
    We are unable to register the UWL.
    Following is the status of current configurations:
    1. SSO works fine.
    2. JCO to all systems are fine.
    3. Unable to register the WebFlowConnector and AlterConnector
    The WebFlowConnector has following settings:
    System Alias: ECCCLNT500
    Connector Type: WebFlowConnector
    The error while registering WebFlowConnector is:
    System ECCCLNT500: Tue Feb 16 20:14:03 EET 2010
    (Connector) :com.sap.netweaver.bc.uwl.connect.ConnectorException:Tue Feb 16 20:14:03 EET 2010
    : No User mapping set up for user USER.PRIVATE_DATASOURCE.un:Administrator system :ECCCLNT500
    Is there any specific area to verify?
    Another area, which I think is related, Connection Test for Connectors is also failing and gives SSO error. While SSO for users is activated and in working condition. The exact error while testing Connection Test for Connectors is:
    Test Connection with Connector
    Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
    Results
    Retrieval of default alias successful
    Connection failed. Make sure that Single Sign-On is configured correctly
    Regards
    Yash

    Finally, we got it through.
    We were doing two major mistakes, and until I myself looked into we were not able to identify the root cause of problem.
    The two mistakes we were doing:
    1. We had a user communication uwl_service in R/3 but it was missing in portal. Even after we created it, our administrator was logged in as Admin instead of uwl_service.
    2. We goofed up the Connector settings:
    System Administration -> System Landscape -> Browse to your System (double click on it) -> Select Connector from the Property Catalog
    0. Use appropriate group in group. Check with BASIS consultant to know correct Group.
    1. In the Logical System Name type the correct Logical System Name. Check with BASIS consultant to know correct Logical System Name.
    2. In the message server, instead of Hostname type the IP address of your message server. Check with BASIS consultant to know correct IP Address.
    3. Remote Host Type should be set to 3 if the message server is R/3.
    4. SAP Client should be client to which you want to connect in Message Server.
    5. SID should be the SID of Message Server.
    6. Server Port should be the correct port for Message Server. Check with BASIS consultant to know correct Port Number.
    7. Rest all settings should be left to defult.
    8. To know if these settings are correct, along with BASIS guy perform the following: Logon to portal with an administrator user in EP whos communication user also exist in R/3. Go to System Administration -> Support -> SAP Application -> SAP Transaction -> Select any system, type any R/3 tcode and select SAP GUI for Windows. Click Go!! You should see the TCODE Output on Screen. If yes, you configurations are correct.
    It worked for us, hope it works in future for someone else too.
    Would like to thank Sandeep for excellent post: /message/6787312#6787312 [original link is broken] , which helped us troubleshoot to great extent.
    Thanks
    Yash

  • Unable to register new iPod Nano

    When connecting my newly purchased 8GB iPod Nano to iTunes (latest version), iTunes indicated it was unable to register my device.  Is this a known problem?
    Thank you,
    The Oldskaterman...

    I don't know if it's a known problem, but there were 2 others yesterday who ran into the same issue.  One ended up just registering the product using this link rather than doing it via iTunes.
    https://register.apple.com/cgi-bin/WebObjects/GlobaliReg.woa
    The other had to restore the iPod and re-install iTunes if I recall correctly.
    B-rock

  • Unable to Register Porsche 9981

    Hi, Need help,
    1. Unable to register the device on the network,
    I have tried all possible solutions available in the Forums.
    I have updated the OS to 7.1 through the desktop manager
    The diagnostics pass all tests except Blackberry Services where it waits for 90 secs & error is FAIL.
    The BIS ACTIVATED sim cards carrier Airtel & Vodafone are working on BB 9900 & BB9780 BUT FAIL ON THE PORSCHE 9981
    The HRT table is empty despite numerous attempts to register it.
    The carrier BIS website fails to detect the new device,
    Blackberry India will not support Phones purchased outside the country

    Well, from here, we can only guess...so here are some possibilities:
    Your BB is not truly unlocked...please check this helpful thread for information:
    http://supportforums.blackberry.com/t5/General-BlackBerry-Functions-and/Unlocking-your-BlackBerry-Gu...
    Your BB is, for one reason or another, registered inside of another carriers BIS system. Each BB can be registered into one, and only one, BIS system in the world at any given moment. If this is the case, what would happen is pretty much exactly as you describe. While running on the India carrier data network, no BIS Services are available since they cannot create a BIS account for you. But, when you activate WiFi, BIS services become available...but they are not coming from your India carrier...rather, they are coming (via WiFi) from that other carrier. Until that other carrier releases the BB PIN from their BIS system, the India carrier will be unable to enable any data services for you. But, the India carrier certainly should have been able to tell you that they could not create a BIS account...
    But, from all you have described (especially the lower case edge/gprs), the problem resides on the carrier side...there is typically nothing the end user can do to resolve this situation. The carrier(s) must do so.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I have two issues. 1) unable to update Acrobat XI Pro and 2) unable to register product

    First issue: I have for the second time installed Acrobat xi pro and then click on "check for updates" from the help menu. And it shows that an update is available. But when I update it I am given the following error message:
    Error 1328. Error applying patch to file C:\Config.Msi\PT669B.tmp. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor."
    When I click on "details" I am sent to adobe's "update error" page. Which states the following for error 1328: Error applying patch to [filename]. It's likely that something else updated the file, and the patch can't modify it. For more information, contact your patch vendor.
    I have tried uninstalling program and re-installing program but still get same error message from my attempt at updating. So I am not sure if program is update or not. And I do not know who my "patch vendor" is.
    Second issue: Unable to register product with Adobe. Because the option to do so from the "help" menu which lists "product registration" is greyed/dimmed out. Therefore not giving me the ability to register this product. Please let me know what is causing this problem.

    I am not sure, but will suggest some things to try. On the activate issue, it may be that your system already thinks it is activated and so you might try the deactivate and check. If that works, I would suggest you then uninstall, run http://labs.adobe.com/downloads/acrobatcleaner.html, remove anything left of the Acrobat folder, reboot, and reinstall. Hopefully you can open Acrobat and activate. Then do the updates from the Help menu.

  • I am new to Final Cut Express and don't understand why I am unable to drag transitions into Canvas? Something wrong in my setup? It's not the overlays they are "on" so can anyone advise me please?

    I am new to Final Cut Express and don't understand why I am unable to drag transitions into Canvas? Something wrong in my setup? It's not the overlays they are "on" so can anyone advise me please, by the way the "L" doesn't appear in the bottom left hand corner either? and by the way how can I get rid of that irritating Blue badge saying "AutoFill your contact details" all mine are in "address book" already!

    You can't drag a transition into the canvas. If you're dragginmg a transition from the effects tab you drag it between the edit point of two clips in the timeline.
    Make sure show edit overlays is turned on in the Canvas view popup.

  • PC/64/Windows 7/XIStandard recently installed/unable to put footer into document because I can't move to the bottom of the image when in footer application mode.  Display is at recommended 1920x1080.  Is there a solution or is it a flaw in the program?

    PC/64/Windows 7/XIStandard recently installed/unable to put footer into document because I can't move to the bottom of the image when in footer application mode.  Display is at recommended 1920x1080.  Is there a solution or is it a flaw in the program?

    Don't have a direct answer. But did you install the updates. They might resolve the problem.

  • Unable to Sign In into presentation services and online RPD obiee11.1.1.3.0

    Hi,
    I am using OBIEE11g (11.1.1.3.0) on Windows 64bit server, suddenly i have problem i could not able to login my Dashboard and RPD (online mode) [i.e: i am able to login offline mode in RPD] but Weblogic console and EM and OPMN all services are up .
    Please check the below error:in RPD
    http://imageshare.web.id/images/ra9qhx8pm4liwsk1rexd.jpg
    In EM:
    http://imageshare.web.id/images/y06x8bu0huhoisyqy718.jpg
    while testing DSN also error
    http://imageshare.web.id/images/zgq47suhrjabe3ye2ck.jpg
    Last few months ago i have faced the same issue ..then i resolved below method
    Unable to Sign In into presentation services and RPD obiee 11
    Issue :I had a trouble to login into RPD (online mode) the Presentation services lately.
    It was working fine before and after changed console user sequrity things changed and was having issues to login lately after that.
    It always gives me invalid username/Password was entered message when I tried to login no matter what ever username I tried.
    I was able to login into Enterprise manger and Weblogic Admin console successfully with out any issues. All the processes are up and running with out any issues.
    Tried rebooting successfully and still it wont let me login into Answers. So I tried if i could login into Admin tool and it wont let me login there as well.
    So I created new Admin user in the Weblogin console and tried to login using the new user and still no luck. The new admin will let me login into the EM and WLC but not into Answers and rpd.
    I tried deleting old references of the user directories in the catalog and still no luck.
    It has something to do with the credential store. What ever user name I created its not mapping it to the Answers/rpd inspite of both the services are running
    Solution:
    ======
    1. Please follow instructions given in
    How to fix “Unable to Sign in. An error occured during Authentication" error when a user logs in OBIEE 11g (Doc ID 1302924.1) step by step, for those steps you have done, please double check and make sure what you've done are correct.
    2. You are still not able to logon because you have missed a few steps as the following:
    8. Edit the NQSConfig.INI file to reset the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES to NO and restart the Oracle BI Servers.
    9. Remove, set to none, or comment out the line (see UpgradeAndExit in the following example) added to the instanceconfig.xml file (that instructs Oracle BI Presentation Server to refresh GUIDs on restart).
    10. <ps:Catalog xmlns:ps="oracle.bi.presentation.services/config/v1.1">
    11. <ps:UpgradeAndExit>false</ps:UpgradeAndExit>
    12. <ps:UpdateAccountGUIDs>none</ps:UpdateAccountGUIDs>
    13. Restart the Presentation Server for the instanceconfig.xml file that was updated.
    14. Make sure Oracle WebLogic Server and the system components are also running, if they are not running, restart them.
    b) Relogin as the problematic user to verify if you still see the “Unable to Sign In” error
    Step 2 : Delete user from rpd if present
    a)Launch admin tool and open rpd in OFFLINE Mode
    b)Click Manage > Identity > Users tab to verify if you see this user present
    Note : Normally you will only see list of users when you open rpd in ONLINE mode. Unless the users were created manually in rpd, no users should be visible in OFFLINE mode
    c)If the user is present, delete this user entry from rpd
    d)save rpd and deploy this changed rpd using EM
    e)restart OBI Server component
    f)relogin as the problematic user to see if you still see “Unable to Sign In” error
    Step 3 : Delete the cacheduserinfo file from webcatalog
    If Step1 and Step2 does not work, then do the following
    Note : In the example below, catalog name is SampleApp and the user who gets “invalid Login” error is Administrator user.
    a)Take a backup of your webcatalog
    b)Navigate to C:\OBIEE11G\instances\instance2\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\catalog\SampleApp\root\users\Administrator\_prefs
    c)Delete the files name cacheduserinfo and cacheduserinfo.atr
    d)Launch OBIEE 11.1.1.3 and test by logging in as the specific user.
    the best one is 3rd one.
    but the above all methods also not working
    Kindly check and help me on that ...
    Thanks
    deva

    Hi,
    errors in \user_projects\domains\bifoundation_domain\servers\AdminServer\logs?
    ####<Sep 5, 2011 5:24:31 PM SGT> <Info> <Socket> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214671768> <BEA-000436> <Allocating 3 reader threads.>
    ####<Sep 5, 2011 5:24:31 PM SGT> <Info> <Socket> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214671770> <BEA-000446> <Native IO Enabled.>
    ####<Sep 5, 2011 5:24:32 PM SGT> <Info> <IIOP> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214672013> <BEA-002014> <IIOP subsystem enabled.>
    ####<Sep 5, 2011 5:24:34 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214674424> <BEA-090894> <Successfully loaded the OPSS Policy Provider using oracle.security.jps.internal.policystore.JavaPolicyProvider.>
    ####<Sep 5, 2011 5:24:34 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214674990> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675109> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_ACmZIP/2hHMOMnTCnE4XU/CV4wQ=>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675232> <BEA-090516> <The Authenticator provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675666> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675832> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Top".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675876> <BEA-000000> <Parsing class "com.bea.common.security.store.data.DomainRealmScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675880> <BEA-000000> <Parsing class "com.bea.common.security.store.data.RegistryScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675881> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKITypeScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675881> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLTypeScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675882> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLPartner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675882> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Credential".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675883> <BEA-000000> <Parsing class "com.bea.common.security.store.data.CredentialMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675884> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLEntry".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675887> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLAssertingParty".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675891> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLRelyingParty".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675893> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredential".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675893> <BEA-000000> <Parsing class "com.bea.common.security.store.data.UserPasswordCredential".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675894> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredentialMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675895> <BEA-000000> <Parsing class "com.bea.common.security.store.data.ResourceMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675896> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKIResourceMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675896> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCertRegEntry".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675897> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCredMapCollectionInfo".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675898> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSPolicyCollectionInfo".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675899> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSRoleCollectionInfo".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675900> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLAuthorizationPolicy".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675900> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLRoleAssignmentPolicy".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675902> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Endpoint".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675903> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Partner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675904> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SPPartner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675906> <BEA-000000> <Parsing class "com.bea.common.security.store.data.IdPPartner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675908> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SAML2CacheEntry".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675909> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SchemaVersion".>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676507> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676523> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676732> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server AdminServer for security realm myrealm.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Notice> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676733> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Critical> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676930> <BEA-090404> <User weblogic is not permitted to boot the server; The server policy may have changed in such a way that the user is no longer able to boot the server.Reboot the server with the administrative user account or contact the system administrator to update the server policy definitions.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Critical> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676932> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: User weblogic is not permitted to boot the server; The server policy may have changed in such a way that the user is no longer able to boot the server.Reboot the server with the administrative user account or contact the system administrator to update the server policy definitions.
    weblogic.security.SecurityInitializationException: User weblogic is not permitted to boot the server; The server policy may have changed in such a way that the user is no longer able to boot the server.Reboot the server with the administrative user account or contact the system administrator to update the server policy definitions.
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:1009)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Sep 5, 2011 5:24:36 PM SGT> <Notice> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676974> <BEA-000365> <Server state changed to FAILED>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Error> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676974> <BEA-000383> <A critical service failed. The server will shut itself down>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Notice> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676977> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676988> <BEA-000236> <Stopping execute threads.>
    Thanks
    Deva

  • Unable to register service Error while deployment

    Hi All,
    I am getting the following error while deploying. I have attached the log details and the WSDL. Please suggest how to resolve this error.
    2010-07-26T17:11:37.828+10:00] [soa_server1] [NOTIFICATION] [SOA-21046] [oracle.integration.platform.blocks.deploy.servlet] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000IcD_uWX9xWD_n9G7yZ1CHweF000w^H,0] [APP: soa-infra] [dcid: 1cc699ed1d7ff4a3:-1e45b33a:129f87006e3:-7ffd-000000000000c092] [arg: default/ProcessData!1.0*soa_14ef45a1-847d-450b-aa18-a7eee66632ea] [arg: default/ProcessData!1.0*soa_0c78781a-709d-4b7e-a8f6-ccbd9ac75916] [arg: true] Calling coordinator to update composite. base composite: default/ProcessData!1.0*soa_14ef45a1-847d-450b-aa18-a7eee66632ea, new composite: default/ProcessData!1.0*soa_0c78781a-709d-4b7e-a8f6-ccbd9ac75916, isForceDefault flag: true
    [2010-07-26T17:11:38.254+10:00] [soa_server1] [ERROR] [SOA-20003] [oracle.integration.platform] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000IcD_uWX9xWD_n9G7yZ1CHweF000w^H,0] [APP: soa-infra] [dcid: 1cc699ed1d7ff4a3:-1e45b33a:129f87006e3:-7ffd-000000000000c092] Unable to register service.[[
    oracle.webservices.provider.ProviderException: oracle.webservices.provider.ProviderException: No service {http://oracle.com/sca/soapservice/ORTDWS/ProcessData/AVCadDataFeed}AVCadDataFeed defined in the WSDL
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(ProviderConfigImpl.java:443)
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(ProviderConfigImpl.java:282)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addService(FabricProviderConfig.java:112)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addService(FabricProviderConfig.java:201)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.load(WebServiceEntryBindingComponent.java:157)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.load(WebServiceEntryBindingComponent.java:91)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployServices(CompositeDeploymentConnection.java:162)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:93)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerImpl.initDeployment(CompositeDeploymentManagerImpl.java:144)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerImpl.load(CompositeDeploymentManagerImpl.java:62)
    at sun.reflect.GeneratedMethodAccessor5638.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.integration.platform.blocks.deploy.DeploymentEventPublisher.invoke(DeploymentEventPublisher.java:69)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy262.load(Unknown Source)
    at oracle.integration.platform.blocks.deploy.StandaloneCompositeDeploymentCoordinatorImpl.coordinateCompositeRedeploy(StandaloneCompositeDeploymentCoordinatorImpl.java:62)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.overwriteExistingComposite(BaseDeployProcessor.java:375)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deploySARs(BaseDeployProcessor.java:222)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doDeployWork(DeployProcessor.java:161)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doDeployWork(DeployProcessor.java:110)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doDeploy(DeployProcessor.java:98)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.process(DeployProcessor.java:79)
    at oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerServlet.doPost(CompositeDeployerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    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:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.webservices.provider.ProviderException: No service {http://oracle.com/sca/soapservice/ORTDWS/ProcessData/AVCadDataFeed}AVCadDataFeed defined in the WSDL
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.getServiceName(ProviderConfigImpl.java:604)
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(ProviderConfigImpl.java:339)
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(ProviderConfigImpl.java:283)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addService(FabricProviderConfig.java:112)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addService(FabricProviderConfig.java:202)
    ... 43 more
    [2010-07-26T17:11:38.265+10:00] [soa_server1] [NOTIFICATION] [SOA-21061] [oracle.integration.platform.blocks.deploy.servlet] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000IcD_uWX9xWD_n9G7yZ1CHweF000w^H,0] [APP: soa-infra] [dcid: 1cc699ed1d7ff4a3:-1e45b33a:129f87006e3:-7ffd-000000000000c092] [arg: soa_0c78781a-709d-4b7e-a8f6-ccbd9ac75916] [arg: /deployed-composites] Removing label soa_0c78781a-709d-4b7e-a8f6-ccbd9ac75916 in namespace /deployed-composites of MDS storage
    [2010-07-26T17:11:38.272+10:00] [soa_server1] [ERROR] [SOA-21037] [oracle.integration.platform.blocks.deploy.servlet] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000IcD_uWX9xWD_n9G7yZ1CHweF000w^H,0] [APP: soa-infra] [dcid: 1cc699ed1d7ff4a3:-1e45b33a:129f87006e3:-7ffd-000000000000c092] [arg: Error during deployment: Update Failed: Unable to register service..] Sending back error message: Error during deployment: Update Failed: Unable to register service...
    WSDL
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <wsdl:definitions
    name="AVCadDataFeed"
    targetNamespace="http://oracle.com/sca/soapservice/ORTDWS/ProcessData/AVCadDataFeed"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:inp1="http://au/gov/vic/mas/ortd/Cadmsg"
    xmlns:tns="http://oracle.com/sca/soapservice/ORTDWS/ProcessData/AVCadDataFeed"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <wsdl:types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" >
    <import namespace="http://au/gov/vic/mas/ortd/Cadmsg" schemaLocation="xsd/OdsCadMsg.xsd" />
    </schema>
    </wsdl:types>
    <wsdl:message name="requestMessage">
    <wsdl:part name="request" element="inp1:odsCadDataSet"/>
    </wsdl:message>
    <wsdl:portType name="livefeed_ptt">
    <wsdl:operation name="livefeed">
    <wsdl:input message="tns:requestMessage"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:message name="headerMessage">
    <wsdl:part name="header" element="inp1:customHeader"/>
    </wsdl:message>
    <wsdl:binding name="livefeed_pttSOAP11Binding" type="tns:livefeed_ptt">
    <soap:binding style="document"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="livefeed">
    <soap:operation style="document"
    soapAction="http://oracle.com/sca/soapservice/ORTDWS/ProcessData/AVCadDataFeed/livefeed"/>
    <wsdl:input>
    <soap:body use="literal" parts="request"/>
    <soap:header use="literal" part="header"
    message="tns:headerMessage"/>
    </wsdl:input>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="OrtdService">
    <wsdl:port name="Ortd_Port" binding="tns:livefeed_pttSOAP11Binding">
    <soap:address location="http://vdatdlsoa02.mas.vic.gov.au:8001/soa-infra/services/default/ProcessData/AVCadDataFeed"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Thanks
    Edited by: user5108636 on 26/07/2010 00:19

    I is till throwing error after changing <wsdl:service name="AVCadDataFeed">Because still there are problems in WSDL. Error description gives the detail -
    Deployment Failed: Unable to find a WSDL that has a definition for service {http://oracle.com/sca/soapservice/ORTDWS/ProcessData/AVCadDataFeed}AVCadDataFeed and port livefeed_pt.
    Make sure that port attribute has right value.
    Also, what should be the value of the <soap:address location attribute in the service elementFrom Web Services Description Language (WSDL) 1.1 specification (http://www.w3.org/TR/wsdl#_soap:address) -
    The SOAP address binding is used to give a port an address (a URI). A port using the SOAP binding MUST specify exactly one address. The URI scheme specified for the address must correspond to the transport specified by the soap:binding.
    <definitions .... >
    <port .... >
    <binding .... >
    <soap:address location="uri"/>
    </binding>
    </port>
    </definitions>
    Regards,
    Anuj

  • Unable to write data into excel file when it's close

    Hi,
    I'm facing this problem and it's a bit weird. I'm using the following method to insert data into excel file. But when excel file is close, it unable to write data into the excel sheet. But it was able to write the data into the excel sheet if i open the excel file when running the program.
    Can anyone please tell me what's wrong to the code?
    public int updateLog(String sheet, String no, String cpId, String CatId, String rbtCode, String rbt, String rbtName, String artistName, String price, String rbtFileName, String songId, String msg){
            int result = -1;
            try{
                SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.ENGLISH);
                String actionDate = formatter.format(new Date());
                rbtName = rbtName.replaceAll("'", "''");
                artistName = artistName.replaceAll("'", "");
                String sql = "insert into [Sheet3$] (Code, CpID, CategoryID, RBTCode, RBT, RBTName, ArtistName, Price, RBTFileName, SongID, UploadStatus, FileUploadedDateTime) ";
                sql = sql + " values ('" + no + "', '" + cpId + "', '" + CatId + "', '" + rbtCode + "', '" + rbt + "', '" + rbtName + "', '" + artistName + "', '" + price + "', '" + rbtFileName + "', '" + songId + "', '" + msg + "', '" + actionDate + "')";
                System.out.println(sql);
                log.writeLog(sql);
                result = stmnt.executeUpdate(sql);
            } catch(Exception e){
                e.printStackTrace();
                log.printStackTrace(e);
            return result;
        public int openConnection(){
            int result = -1;
            try{
                Class.forName(dbDriver);
                c = DriverManager.getConnection(conStr + excelFilePath+";ReadOnly=0;");
                stmnt = c.createStatement();
            } catch(Exception e){
                e.printStackTrace();
                log.printStackTrace(e);
                return -1;
            return 1;
        }Thanks

    HI,
    i hv a doubt regarding reading / opening of a
    password protected Excel file using jxl( java ) .
    How to read / open a password protected Excel file
    thro Java (jxl ) program .plz let me know some
    example also .
    Regards,
    Ramesh P
    845935822cross posting !! answered here
    http://forum.java.sun.com/thread.jspa?threadID=710466&messageID=9507085#9507085

  • LIBTUX_CAT:582: ERROR: Unable to register, registry table full

    When we tried to call one of our service 100 times parallely we got an error as :-
    181936.547.MLXWTAIXDEV!GWWS.3568042.1.0: LIBTUX_CAT:582: ERROR: Unable to register, registry table full
    182718.591.MLXWTAIXDEV!GWWS.10432990.1.0: LIBTUX_CAT:585: ERROR: Invalid registry table slot index passed, unable to unregister
    Can somebody help us out why this error is coming.
    The UBB configuration for same is as:-
    MAXACCESSERS 350
    MAXSERVERS 430
    MAXSERVICES 1200
    MAXGROUPS 100
    MAXNETGROUPS 20
    MAXMACHINES 256
    MAXWSCLIENTS = 100
    MAXACLCACHE = 10
    MAXPENDINGBYTES = 100000
    "TMMETADATA"
    SRVGRP = "M_JOLT_GRP"
    CLOPT = "-A -- -f /dev_app/dtux5/bin/reposfile"
    RESTART= Y
    SRVID = 1
    GRACE = 3600
    MAXGEN = 5
    "GWWS"
    SRVGRP = "M_JOLT_GRP"
    CLOPT = "-A -- -iGWWS1"
    RESTART= Y
    SRVID = 2
    The wsdf file is as
    <Definition
    xmlns="http://www.bea.com/Tuxedo/WSDF/2007"
    name="EBATEST" wsdlNamespace="urn:salt.EBATEST.wsdl">
    <WSBinding id="CURTEST_Binding">
    <SOAP>
    <AccessingPoints>
    <Endpoint
    address="http://10.16.114.145:7001/ebaapp" id="eba_HTTP_IN">
    </Endpoint>
    </AccessingPoints>
    </SOAP>
    <Servicegroup id="ebatestGrp">
    <Service name="SCD_GET_TRD_UND"></Service>
    </Servicegroup>
    </WSBinding>
    </Definition>
    And salt file used for making saltconfig is as
    <Deployment xmlns="http://www.bea.com/Tuxedo/SALTDEPLOY/2007">
    <WSDF>
    <Import location="/dev_app/dtux5/bin/example.wsdf"></Import>
    </WSDF>
    <WSGateway>
    <GWInstance id="GWWS1">
    <Inbound>
    <Binding ref="EBATEST:CURTEST_Binding">
    <Endpoint use="eba_HTTP_IN"></Endpoint>
    </Binding>
    </Inbound>
    <Properties>
    <Property name="enableSOAPValidation" value="true"/>
    </Properties>
    </GWInstance>
    </WSGateway>
    <System></System>
    </Deployment>
    The trace file as generated is as :-
    184541.717.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184541.717.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184541.717.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184541.718.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184541.722.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281396]
    184541.723.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x1: SESSION: TIMEOUT VALUE IS [9999]:
    184541.727.MLXWTAIXDEV!svr_errlog.11956518.1.0: User id :mamu2:
    184541.727.MLXWTAIXDEV!svr_errlog.11956518.1.0: Sssn id :281396:
    184541.727.MLXWTAIXDEV!svr_errlog.11956518.1.0: Business id :B21001:
    184541.727.MLXWTAIXDEV!svr_errlog.11956518.1.0: Business msg :Invalid User:The Login Id entered is not valid
    184541.727.MLXWTAIXDEV!svr_errlog.11956518.1.0: Service Name :SVC_SESSION
    184541.727.MLXWTAIXDEV!svr_session.11043070.1.0: No Data in Session table for :mamu2:, :281396:
    184541.728.MLXWTAIXDEV!GWWS.2277636.1.0: GWWS_CAT:21: WARNING: Tuxedo service returns TPFAIL.
    184541.729.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Send a http message to net, SCO index=4095
    184700.521.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184700.521.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184700.521.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184700.522.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184700.522.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184700.523.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x2: SESSION: TIMEOUT VALUE IS [9999]:
    184700.524.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x2: SESSION: SESSION [281397] IS VALID:
    184700.538.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184700.538.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.691.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.691.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.691.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.692.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.693.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x3: SESSION: TIMEOUT VALUE IS [9999]:
    184707.694.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x3: SESSION: SESSION [281397] IS VALID:
    184707.710.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.711.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.718.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.718.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.718.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.718.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.718.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.719.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x4: SESSION: TIMEOUT VALUE IS [9999]:
    184707.719.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x4: SESSION: SESSION [281397] IS VALID:
    184707.732.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.732.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.738.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.738.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.739.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.739.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.739.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.739.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x5: SESSION: TIMEOUT VALUE IS [9999]:
    184707.740.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x5: SESSION: SESSION [281397] IS VALID:
    184707.756.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.756.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.769.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.769.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.769.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.769.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.770.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.770.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x6: SESSION: TIMEOUT VALUE IS [9999]:
    184707.771.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x6: SESSION: SESSION [281397] IS VALID:
    184707.798.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.799.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.807.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.807.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.807.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.807.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.807.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.808.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x7: SESSION: TIMEOUT VALUE IS [9999]:
    184707.808.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x7: SESSION: SESSION [281397] IS VALID:
    184707.821.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.821.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.831.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.831.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.831.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.831.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.831.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.832.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x8: SESSION: TIMEOUT VALUE IS [9999]:
    184707.832.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x8: SESSION: SESSION [281397] IS VALID:
    184707.843.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.843.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.855.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.855.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.855.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.855.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.856.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.856.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x9: SESSION: TIMEOUT VALUE IS [9999]:
    184707.857.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af x9: SESSION: SESSION [281397] IS VALID:
    184707.869.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.869.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.876.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.876.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.876.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.876.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.876.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.877.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xa: SESSION: TIMEOUT VALUE IS [9999]:
    184707.877.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xa: SESSION: SESSION [281397] IS VALID:
    184707.899.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.899.MLXWTAIXDEV!GWWS.2277636.1291.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.906.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.906.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.906.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.907.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.907.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.907.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xb: SESSION: TIMEOUT VALUE IS [9999]:
    184707.908.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xb: SESSION: SESSION [281397] IS VALID:
    184707.918.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.919.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.932.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.932.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.932.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.932.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.932.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.933.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xc: SESSION: TIMEOUT VALUE IS [9999]:
    184707.933.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xc: SESSION: SESSION [281397] IS VALID:
    184707.945.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.945.MLXWTAIXDEV!GWWS.2277636.1034.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.957.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.957.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.957.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.957.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.957.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    184707.958.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xd: SESSION: TIMEOUT VALUE IS [9999]:
    184707.958.MLXWTAIXDEV!svr_session.11043070.1.0: gtrid x0 x4f1968af xd: SESSION: SESSION [281397] IS VALID:
    184707.973.MLXWTAIXDEV!GWWS.2277636.1.0: LIBTUX_CAT:585: ERROR: Invalid registry table slot index passed, unable to unregister
    184707.973.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Got a message from Tuxedo, SCO index=4095
    184707.973.MLXWTAIXDEV!GWWS.2277636.1548.0: TRACE:ms:Send a http message to net, SCO index=4095
    184707.980.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A HTTP message is received, SCO index=4095
    184707.980.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:A SOAP message is received, SCO index=4095
    184707.980.MLXWTAIXDEV!GWWS.2277636.777.0: TRACE:ms:Begin data transformation of request message, buffer type = FML32, SCO index=4095
    184707.980.MLXWTAIXDEV!GWWS.2277636.1.0: TRACE:ms:Delivering a message to Tuxedo, service name =SCD_GET_TRD_UND, SCO index=4095
    184707.980.MLXWTAIXDEV!svr_session.11043070.1.0: SESS: INPUT IS [mamu2] : [281397]
    Regards,
    Anurag

    Hi,
    From the Tuxedo documentation, LIBTUX_CAT:582 is described as follows along with a recommended action.
    >
    582
    ERROR: Unable to register, registry table full
    Description
    The BEA TUXEDO system was attempting to find a registry table slot for a process, but the registry table was full.
    Action
    Increase the MAXACCESSERS parameter in the UBBCONFIG file, rebuild the TUXCONFIG file, then reboot the application and try again.
    >
    So try increassing MAXACCESSERS and see if your problem goes away.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Unable to automatically step into the server. the remote procedure cannot be debugged.

    Hi,
    I am trying to deploy report using ssis script c# code.I am using the proxy for ReportingService2010 and following code is giving the error.
    code:
    ReportingService2010 rs = new ReportingService2010();
    rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
    rs.CreateFolder("MSI Report Demo", "/", null);
    Error:
    unable to automatically step into the server. the remote procedure cannot be debugged. This usually indicates that debugging has not been enabled on the server.
    Please share the idea on it. 
    Thanks in advance.
    -Gautam

    just make a trust between to domain and it works .

Maybe you are looking for