Webservice to EXE?

Hi Community,
I am running a homepage on our intranet from a Windows server 2008. The server restarts from time to time (I guess installs updates), but because I run my webservice directly from the Labview project, the homepage remains down until somebody recognizes that its down and drops me a mail.
I'd like to get rid of this problem and want to make sure the service restarts when the server reboots. I guess the right way is to compile the project into an exe and the somehow start the exe when the server reboots. 
I am having issues though with the exe. The compilation happens without an issue but when I run the exe, my startup VI shows up but stops with the following error message: 
NI_WebServices.lvlib:Error Converter (ErrCode or Status).vi<APPEND> <b>Complete call chain:</b> NI_WebServices.lvlib:Error Converter (ErrCode or Status).vi NI_WebServices.lvlib:Web Service.lvclass:Get Web Service Status.vi REMS_STARTUP.vi
In the build specs I have added my startup VI to the startup section, everything else to the "always included". I have checked the checkbox of the webservice I want to create on the webservices menu. I have tried to follow the steps in this document but the result is the same.
Any guess?
thanks!

Is it a LabVIEW application AND a web service or are you just using a web service?
If you have a LabVIEW application - yes, you're right that you should probably compile it into an executable - you can then put it in the startup folder on the server and it will run when the user logs on (which you can configure to happen automatically). It's also possible to configure an executable to run as a service so it will run before logon (but with some caveats like no user interface). It may also be possible using scheduled tasks to run at boot rather than have to wait until a user logs on.
If you just have a web service you can 'publish' it and then it will be installed onto the NI Application Web Server and will run as a service - I think it will be accessible all the time while the computer is running.
From what you've described, it sounds like you're trying to build an executable from your web service with the web service startup VI as the startup VI for the executable (which doesn't quite make sense with how web services work...they run in their own application instance on the NI Application Web Server - think of it like deploying VIs to a real-time target like a cRIO but to the NI Web Server). If that's correct - you don't need to build an executable at all - you just need to publish your web service.
The error that you're getting is probably because you're using web service VIs in an executable - they probably only run in the context of the NI Web Server.
Of course, checking things like the configuration of the web server (that it's running, which port it's on etc.) can't hurt either.

Similar Messages

  • Error using VC BI Kit  - Error -32010:

    Hi
    We have Installed VC V6.00.0030 on EP6 SP10 and have installed the BI Kit. We have configured an RFC system to the BW system and an SAP_BI_SAPQuery.
    When accessing the backend we can see the Queries but
    get the following error.
    Error -32010: Cannot execte query. No result returned or XML returned in the result contains an error. Service call exception; nested exception is:
    com.sap.engine.services.webservices.jaxrpc.exe
    Invalid Response Code (404) Not found..
    Any Ideas??
    Thanks
    Arun

    We had the same problem and solved it after executing the following steps:
    - In the definition of your bw system in the portal, make sure the 'WAS path' is /sap/bw/bex
    - In BI, execute transaction WSCONFIG
    - Make sure to generate the webservice 'query_view_data'
    - Configure the URL of this webservice as: /sap/bw/xml/soap/queryview
    - Click on ICF details, the /sap/bw/xml/soap/queryview should be configured as a global alias to /default_host/sap/bc/srt/rfc/sap/rrw3_Query_View_Data
    BTW: in our system, this was pointing to ...rrws_Query_View_Data, which did not exist. I presume this was a little bug in our 3.5 SP11 BW system.
    Kind regards,
    Bruno

  • Debigging Webservice calls using sniffer.exe

    I found following article about monitoring Webservice calls from CF using sniccer.exe
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19352
    When I follower directions how to initiate sniffer I got following errors:
    ERROR: transport error 202: bind failed: address already in use
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
    JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../share/back/degub/Init.c:690]
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
    I could not find any references to errors I am getting when I googled any of them.

    Hi,
    Try adding the "-Xrs" argument in the "Server Settings > Java and JVM" in your CF Administrator. After restarting your CF Server, try invoking the sniffer again.
    HTH

  • Oracle 10gR2 WebService Call-In & Call-Out via PL/SQL (Step-by-Step Guide)

    Hi Everyone,
    This guide is for those of you who tried to Call-In and Call-Out WebService via Oracle 10gR2 using PL/SQL but failed a couple of times, re-installed a couple of times and retry, got it to work but don't know what made it work scenarios.
    Hope this helps ;-)
    Thanks,
    Henry Wu
    Instructions on how to use Oracle10gR2 Webservice Call-Out feature (Oracle JAX-RPC DII - Dynamic Invocation (DII) APIs)
    PREREQUISITE
    =================================================================
    1. Download Oracle Database 10g Release 2 (10.2.0.1.0) (ZIP, ~655MB)
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201winsoft.html
    http://download.oracle.com/otn/nt/oracle10g/10201/10201_database_win32.zip
    1.1 Choose Enterprise Edition
    2. Download 10.1.3.1 Callout Utility for 10g (R1 +R2) RDBMS (ZIP, ~13MB)
    http://download.oracle.com/technology/sample_code/tech/java/jsp/dbws-callout-utility-10131.zip
    2.1 Extract to C:\oracle\product\10.2.0\db_1\dbws_callout_utility_10131
    3. Download OC4J Standalone - Oracle Containers for J2EE (OC4J) 10g Release 3 (10.1.3.3) (ZIP, ~93MB; Pure Java—runs on all certified platforms)
    http://www.oracle.com/technology/software/products/ias/index.html (Download Site)
    http://download.oracle.com/otn/java/oc4j/101330/oc4j_extended_101330.zip
    3.1 Extract to C:\oracle\product\10.2.0\db_1\oc4j_extended_101330
    STEP-BY-STEP PROCEDURES
    =================================================================
    1. Prepare the database
    1.1 Connect to SYS account (or any account that can connect as SYSDBA)
    1.2 alter system set shared_pool_size=96M scope=both
    1.3 alter system set java_pool_size=80M scope=both
    1.4 ALTER USER SCOTT ACCOUNT UNLOCK;
    1.5 ALTER USER SCOTT IDENTIFIED BY "tiger";
    1.6 ALTER USER SCOTT QUOTA UNLIMITED ON USERS;
    1.7 GRANT PUBLIC TO SCOTT;
    1.8 GRANT Create Public Synonym TO SCOTT;
    2. Load Oracle SOAP client to SCOTT (for Oracle 10g Release 2 Database)
    2.1 Commands
    2.1.1 Open command prompt (cmd.exe)
    2.1.2 loadjava -u scott/tiger -r -v -f -genmissing -s -grant public C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\webservices\lib\soap.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\lib\dms.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\jlib\javax-ssl-1_1.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\lib\servlet.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\lib\mail.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\lib\activation.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\lib\http_client.jar C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\lib\ejb.jar
    2.1.3 It will take around 3 minutes and you will see "something" like the following when it completes (count may not be exact) :
    Classes Loaded: 909
    Resources Loaded: 75
    Sources Loaded: 0
    Published Interfaces: 0
    Classes generated: 0
    Classes skipped: 0
    Synonyms Created: 984
    Errors: 0
    2.1.3 Close this command prompt
    3. Load Oracle JAX-RPC client to SYS (for Oracle 10g Release 2 Database)
    3.1 Commands
    3.1.1 Open command prompt (cmd.exe)
    3.1.2 loadjava -u sys/oracle -r -v -f -genmissing -s -grant public C:\oracle\product\10.2.0\db_1\dbws_callout_utility_10131\sqlj\lib\dbwsclientws.jar C:\oracle\product\10.2.0\db_1\dbws_callout_utility_10131\sqlj\lib\dbwsclientdb102.jar
    3.1.2.1 It will take around 15 minutes and you will see "something" like following when it completes (count may not be exact) :
    Classes Loaded: 4027
    Resources Loaded: 81
    Sources Loaded: 0
    Published Interfaces: 0
    Classes generated: 61
    Classes skipped: 0
    Synonyms Created: 4108
    Errors: 0
    3.1.3 Close this command prompt
    4. Execute UTL_DBWS packages to SYS (for Oracle 10g Release 2 Database)
    4.1 Commands
    4.1.1 Connect to SYS account only
    4.1.2 Execute the following (in TOAD you should execute them as Script, press the "thunder" button)
    4.2.1 @"C:\oracle\product\10.2.0\db_1\dbws_callout_utility_10131\sqlj\lib\utl_dbws_decl.sql"
    4.2.2 @"C:\oracle\product\10.2.0\db_1\dbws_callout_utility_10131\sqlj\lib\utl_dbws_body.sql"
    4.2.3 CREATE PUBLIC SYNONYM utl_dbws FOR sys.utl_dbws;
    5. Call-out a free Web Service using SCOTT
    5.1 Commands
    5.1.1 Connect to user SCOTT with password of TIGER
    5.1.2 Copy and Paste the following "Anonymous Block" (sample #1) and execute it :
    5.1.2.1 It sould return "PL/SQL DII client return ===> Redwood City"
    declare
    service_ utl_dbws.SERVICE;
    call_ utl_dbws.CALL;
    service_qname utl_dbws.QNAME;
    port_qname utl_dbws.QNAME;
    operation_qname utl_dbws.QNAME;
    string_type_qname utl_dbws.QNAME;
    retx ANYDATA;
    retx_string VARCHAR2(1000);
    retx_double number;
    retx_len number;
    params utl_dbws.ANYDATA_LIST;
    l_input_params utl_dbws.anydata_list;
    l_result ANYDATA;
    l_namespace VARCHAR2(1000);
    begin
    -- open internet explorer and navigate to http://webservices.imacination.com/distance/Distance.jws?wsdl
    -- search for 'targetNamespace' in the wsdl
    l_namespace := 'http://webservices.imacination.com/distance/Distance.jws';
    -- search for 'service name' in the wsdl
    service_qname := utl_dbws.to_qname(l_namespace, 'DistanceService');
    -- this is just the actual wsdl url
    service_ := utl_dbws.create_service(HTTPURITYPE('http://webservices.imacination.com/distance/Distance.jws?wsdl'), service_qname);
    -- search for 'portType name' in the wsdl
    port_qname := utl_dbws.to_qname(l_namespace, 'Distance');
    -- search for 'operation name' in the wsdl
    -- there will be a lot, we will choose 'getCity'
    operation_qname := utl_dbws.to_qname(l_namespace, 'getCity');
    -- bind things together
    call_ := utl_dbws.create_call(service_, port_qname, operation_qname);
    -- default is 'FALSE', so we make it 'TRUE'
    utl_dbws.set_property(call_, 'SOAPACTION_USE', 'TRUE');
    -- search for 'operation soapAction' under <wsdl:operation name="getCity">
    -- it is blank, so we make it ''
    utl_dbws.set_property(call_, 'SOAPACTION_URI', '');
    -- search for 'encodingstyle' under <wsdl:operation name="getCity">
    utl_dbws.set_property(call_, 'ENCODINGSTYLE_URI', 'http://schemas.xmlsoap.org/soap/encoding/');
    -- search for 'binding style'
    utl_dbws.set_property(call_, 'OPERATION_STYLE', 'rpc');
    -- search for 'xmlns:xs' to know the value of the first parameter
    -- under <wsdl:message name="getCityResponse"> you will see the line <wsdl:part name="getCityReturn" type="xsd:string" />
    -- thus the return type is 'string", removing 'xsd:'
    string_type_qname := utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'string');
    -- in the line <wsdl:operation name="getCity" parameterOrder="zip">
    -- the parameterOrder is 'zip', thus we put in 'zip'
    -- the 'ParameterMode.IN' is used to specify that we will be passing an "In Parameter" to the web service
    -- the 'ParameterMode.IN' is a constant variable in the sys.utl_dbws package
    utl_dbws.add_parameter(call_, 'zip', string_type_qname, 'ParameterMode.IN');
    utl_dbws.set_return_type(call_, string_type_qname);
    -- supply the In Parameter for the web service
    params(0) := ANYDATA.convertvarchar('94065');
    -- invoke the web service
    retx := utl_dbws.invoke(call_, params);
    -- access the returned value and output it to the screen
    retx_string := retx.accessvarchar2;
    dbms_output.put_line('PL/SQL DII client return ===> ' || retx_string);
    -- release the web service call
    utl_dbws.release_service(service_);
    end;
    5.1.3 Copy and Paste the following "Anonymous Block" (sample #2) and execute it :
    5.1.3.1 It should return "PL/SQL DII client return ===> twelve thousand three hundred and forty five"
    declare
    service_ utl_dbws.SERVICE;
    call_ utl_dbws.CALL;
    service_qname utl_dbws.QNAME;
    port_qname utl_dbws.QNAME;
    operation_qname utl_dbws.QNAME;
    string_type_qname utl_dbws.QNAME;
    retx ANYDATA;
    retx_string VARCHAR2(1000);
    retx_double number;
    retx_len number;
    params utl_dbws.ANYDATA_LIST;
    l_input_params utl_dbws.anydata_list;
    l_result ANYDATA;
    l_namespace VARCHAR2(1000);
    begin
    -- open internet explorer and navigate to http://www.dataaccess.com/webservicesserver/numberconversion.wso?WSDL
    -- search for 'targetNamespace' in the wsdl
    l_namespace := 'http://www.dataaccess.com/webservicesserver/';
    -- search for 'service name' in the wsdl
    service_qname := utl_dbws.to_qname(l_namespace, 'NumberConversion');
    -- this is just the actual wsdl url
    service_ := utl_dbws.create_service(HTTPURITYPE('http://www.dataaccess.com/webservicesserver/numberconversion.wso?WSDL'), service_qname);
    -- search for 'portType name' in the wsdl
    port_qname := utl_dbws.to_qname(l_namespace, 'NumberConversionSoap');
    -- search for 'operation name' in the wsdl
    -- there will be a lot, we will choose 'NumberToWords'
    operation_qname := utl_dbws.to_qname(l_namespace, 'NumberToWords');
    -- bind things together
    call_ := utl_dbws.create_call(service_, port_qname, operation_qname);
    -- default is 'FALSE', so we make it 'TRUE'
    utl_dbws.set_property(call_, 'SOAPACTION_USE', 'TRUE');
    -- search for 'operation soapAction' under <operation name="NumberToWords">
    -- it is blank, so we make it ''
    utl_dbws.set_property(call_, 'SOAPACTION_URI', '');
    -- search for 'encodingstyle'
    -- cannot find xml tag 'encodingstyle', so we just use the following as the generic encoding style
    utl_dbws.set_property(call_, 'ENCODINGSTYLE_URI', 'http://schemas.xmlsoap.org/soap/encoding/');
    -- search for 'binding style'
    -- although 'document' was used, it produced an error, thus we will use 'rpc'
    -- this value is generally only 'document' or 'rpc'
    utl_dbws.set_property(call_, 'OPERATION_STYLE', 'rpc');
    -- search for 'xmlns:xs' to know the value of the first parameter
    -- under <xs:element name="NumberToWords"> you will see the line <xs:element name="ubiNum" type="xs:unsignedLong" />
    -- thus the return type is 'unsignedlong', removing 'xs:'
    -- however, upon testing, using 'unsignedlong' produced an error, while 'string' did not, so we will use 'string'
    string_type_qname := utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'string');
    -- under <xs:element name="NumberToWords"> you will see the line <xs:element name="ubiNum" type="xs:unsignedLong" />
    -- the element name is 'ubiNum', thus we put in 'ubiNum'
    -- the 'ParameterMode.IN' is used to specify that we will be passing an "In Parameter" to the web service
    -- the 'ParameterMode.IN' is a constant variable in the utl_dbws package
    utl_dbws.add_parameter(call_, 'ubiNum', string_type_qname, 'ParameterMode.IN');
    utl_dbws.set_return_type(call_, string_type_qname);
    -- supply the In Parameter for the web service
    params(0) := ANYDATA.convertvarchar('12345');
    -- invoke the web service
    retx := utl_dbws.invoke(call_, params);
    -- access the returned value and output it to the screen
    retx_string := retx.accessvarchar2;
    dbms_output.put_line('PL/SQL DII client return ===> ' || retx_string);
    -- release the web service call
    utl_dbws.release_service(service_);
    end;
    NOTES AND REFERENCES
    =================================================================
    This detailed step-by-step guide was produced with the following guide http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    I could still not load Oracle JAX-RPC client to SCOTT (step 4) as it produces an error. See the following for more details :
    http://forums.oracle.com/forums/thread.jspa?threadID=633219&tstart=0
    Also, I could not consume some of the other free Web Services out there for reasons I don't know, hope someone can help clarify. See the following for more details :
    http://forums.oracle.com/forums/thread.jspa?threadID=630733&tstart=0
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Instructions on how to use Oracle10gR2 Webservice Call-In feature
    PREREQUISITE
    =================================================================
    1. Download Oracle Database 10g Release 2 (10.2.0.1.0) (ZIP, ~655MB)
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201winsoft.html
    http://download.oracle.com/otn/nt/oracle10g/10201/10201_database_win32.zip
    1.1 Choose Enterprise Edition
    2. Download OC4J Standalone - Oracle Containers for J2EE (OC4J) 10g Release 3 (10.1.3.3) (ZIP, ~93MB; Pure Java—runs on all certified platforms)
    http://www.oracle.com/technology/software/products/ias/index.html (Download Site)
    http://download.oracle.com/otn/java/oc4j/101330/oc4j_extended_101330.zip
    2.1 Extract to C:\oracle\product\10.2.0\db_1\oc4j_extended_101330
    STEP-BY-STEP PROCEDURES
    =================================================================
    1. Connect to SYS account and create user STORE
    CREATE USER store IDENTIFIED BY store;
    GRANT connect, resource TO store;
    2. Connect to Oracle using the user STORE and password STORE
    CONNECT store/store;
    3. Execute the following objects for this excercise
    CREATE SEQUENCE order_sq;
    CREATE TABLE product_types (
    product_type_id INTEGER
    CONSTRAINT product_types_pk PRIMARY KEY,
    name VARCHAR2(10) NOT NULL
    CREATE TABLE products (
    product_id INTEGER
    CONSTRAINT products_pk PRIMARY KEY,
    product_type_id INTEGER
    CONSTRAINT products_fk_product_types
    REFERENCES product_types(product_type_id),
    name VARCHAR2(30) NOT NULL,
    description VARCHAR2(50),
    price NUMBER(5, 2)
    CREATE TABLE customers (
    customer_id INTEGER
    CONSTRAINT customers_pk PRIMARY KEY,
    first_name VARCHAR2(10) NOT NULL,
    last_name VARCHAR2(10) NOT NULL,
    dob DATE,
    phone VARCHAR2(12)
    CREATE TABLE orders (
    order_id INTEGER
    CONSTRAINT orders_pk PRIMARY KEY,
    product_id INTEGER
    CONSTRAINT purchases_fk_products
    REFERENCES products(product_id),
    customer_id INTEGER
    CONSTRAINT purchases_fk_customers
    REFERENCES customers(customer_id),
    quantity INTEGER NOT NULL
    INSERT INTO customers (
    customer_id, first_name, last_name, dob, phone
    ) VALUES (
    1, 'John', 'Brown', '01-JAN-1965', '800-555-1211'
    INSERT INTO product_types (
    product_type_id, name
    ) VALUES (
    1, 'Book'
    INSERT INTO products (
    product_id, product_type_id, name, description, price
    ) VALUES (
    1, 1, 'Modern Science', 'A description of modern science', 19.95
    COMMIT;
    CREATE OR REPLACE PACKAGE dbfunc AS
    FUNCTION place_order (
    p_product_id INTEGER,
    p_customer_id INTEGER,
    p_quantity INTEGER
    RETURN VARCHAR2;
    END dbfunc;
    CREATE OR REPLACE PACKAGE BODY dbfunc AS
    FUNCTION place_order (
    p_product_id INTEGER,
    p_customer_id INTEGER,
    p_quantity INTEGER
    RETURN VARCHAR2 IS
    v_customer_count INTEGER;
    v_product_count INTEGER;
    v_order_id INTEGER;
    BEGIN
    -- count the number of products with the
    -- supplied p_product_id (should be 1 if the product exists)
    SELECT COUNT(*)
    INTO v_product_count
    FROM products
    WHERE product_id = p_product_id;
    IF v_product_count = 0 THEN
    RETURN 'No such product';
    END IF;
    -- count the number of customers with the
    -- supplied p_customer_id (should be 1)
    SELECT COUNT(*)
    INTO v_customer_count
    FROM customers
    WHERE customer_id = p_customer_id;
    IF v_customer_count = 0 THEN
    RETURN 'No such customer';
    END IF;
    -- get the next value from orders_sq
    SELECT order_sq.nextval
    INTO v_order_id
    FROM dual;
    -- place the order
    INSERT INTO orders (
    order_id, product_id, customer_id, quantity
    ) VALUES (
    v_order_id, p_product_id, p_customer_id, p_quantity
    COMMIT;
    RETURN 'Order placed with id of ' || v_order_id;
    EXCEPTION
    WHEN OTHERS THEN
    ROLLBACK;
    RETURN 'Order not placed';
    END place_order;
    END dbfunc;
    4. Install and Configure OC4J
    4.1 Change Directory
    4.1.1 Open command prompt (cmd.exe)
    4.1.2 CD C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\bin
    4.2 Configure Environment variables (type in command prompt)
    4.2.1 set JAVA_HOME=C:\oracle\product\10.2.0\db_1\jdk
    4.2.2 set ORACLE_HOME=C:\oracle\product\10.2.0\db_1\oc4j_extended_101330
    4.3 Starting OC4J for the first time
    4.3.1 oc4j -start
    4.3.2 If this is not your first time to "start" oc4j, go to step 4.3.4
    4.3.3 Set oc4jadmin password (use the password "oracle" w/o the quotation marks)
    08/03/21 17:13:54 Set OC4J administrator's password (password text will not be displayed as it is entered)
    Enter password:
    Confirm password:
    Confirm password: The password for OC4J administrator "oc4jadmin" has been set.
    08/03/21 17:14:01 The OC4J administrator "oc4jadmin" account is activated.
    4.3.4 OC4J has started if you see the message :
    08/03/21 17:14:16 Oracle Containers for J2EE 10g (10.1.3.3.0) initialized
    4.3.5 Leave this command prompt open
    4.4 Configure Data Source
    4.4.1 Open a new command prompt via the cmd.exe command
    4.4.2 type "hostname" and then press enter
    4.4.3 Keep this command prompt open for later use
    4.4.4 Open Windows Explorer and navigate to the folder C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\config
    4.4.5 Open the file data-sources.xml
    4.4.6 Modify and Save the file so that it will look something like the following :
    4.4.6.1 Note that "hpv2710us" is my hostname found in step 4.4.2
    4.4.6.2 Note that "ORCLDEV" is the name of my Oracle Instance. (Default installation uses ORCL only)
    <connection-pool name="Example Connection Pool">
    <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource"
    user="store"
    password="store"
    url="jdbc:oracle:thin:@//hpv2710us:1521/ORCLDEV">
    </connection-factory>
    </connection-pool>
    4.4.7 Close the text editor
    4.4.8 Close the Windows Explorer
    4.4.9 Close this command prompt (type exit)
    5. Publishing a PL/SQL Package as a Database Web Service
    5.1 Create the config.xml file
    5.1.1 Open Notepad.exe
    5.1.2 Copy and Paste the following :
    5.1.2.1 Note that "hpv2710us" is my hostname found in step 4.4.2
    5.1.2.2 Note that "ORCLDEV" is the name of my Oracle Instance. (Default installation uses ORCL only)
    <web-service>
    <display-name>PLSQL Web Service</display-name>
    <description>PLSQL Sample</description>
    <destination-path>./dbfunc.ear</destination-path>
    <temporary-directory>/tmp</temporary-directory>
    <context>/plsqlsample</context>
    <stateless-stored-procedure-java-service>
    <jar-generation>
    <schema>store/store</schema>
    <db-url>jdbc:oracle:thin:@hpv2710us:1521:ORCLDEV</db-url>
    <prefix>db.func.place.order</prefix>
    <db-pkg-name>dbfunc</db-pkg-name>
    </jar-generation>
    <uri>/dbfunc</uri>
    <database-JNDI-name>jdbc/OracleDS</database-JNDI-name>
    </stateless-stored-procedure-java-service>
    <wsdl-gen>
    <wsdl-dir>wsdl</wsdl-dir>
    <option name="force">true</option>
    <option name="httpServerURL">http://localhost:8888</option>
    </wsdl-gen>
    <proxy-gen>
    <proxy-dir>proxy</proxy-dir>
    <option name="include-source">true</option>
    </proxy-gen>
    </web-service>
    5.1.3 Save file as config.xml in the directory C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\config
    5.1.3.1 Note it should be config.xml and not config.txt
    5.1.4 Close the text editor
    5.2 Publish dbfunc Oracle Package as a Web Service
    5.2.1 Open a new command prompt via the cmd.exe command
    5.2.2 CD C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home
    5.2.3 mkdir ear
    5.2.4 CD ear
    5.2.5 set ORACLE_HOME=C:\oracle\product\10.2.0\db_1\oc4j_extended_101330
    5.2.6 set CLASSPATH=.;%ORACLE_HOME%\webservices\lib\wsdl.jar;%ORACLE_HOME%\lib\xmlparserv2.jar;%ORACLE_HOME%\soap\lib\soap.jar
    5.2.7 java -jar %ORACLE_HOME%\webservices\lib\WebServicesAssembler.jar -config C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\config\config.xml
    Please wait ...
    STORE.DBFUNC
    5.2.8 java -jar %ORACLE_HOME%\j2ee\home\admin_client.jar deployer:oc4j:localhost:23791 oc4jadmin oracle -deploy -file C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home\ear\dbfunc.ear -deploymentName dbfunc
    08/03/21 17:46:23 Notification ==>Application Deployer for dbfunc COMPLETES. Operation time: 296 msecs
    5.2.9 java -jar %ORACLE_HOME%\j2ee\home\admin_client.jar deployer:oc4j:localhost:23791 oc4jadmin oracle -bindWebApp -appname dbfunc -webModuleName dbfunc_web
    5.2.10 java -jar %ORACLE_HOME%\j2ee\home\admin_client.jar deployer:oc4j:localhost:23791 oc4jadmin oracle -bindAllWebApps -appname dbfunc
    5.2.11 Close this command prompt (type exit)
    6. Test dbfunc Web Service
    6.1 Restart OC4J
    6.1.1 Open the command prompt you used to start OC4J in step 4.1.1/4.3.1
    6.1.2 In the keyboard, hit Ctrl+C
    6.1.2.1 Type "Y" and then hit Enter
    08/03/21 18:02:51 Shutting down OC4J...
    Terminate batch job (Y/N)? Y
    6.1.2.2 Note that the command prompt should still be open
    6.1.2.2.1 If you accidentally closed the command prompt just do the following
    6.1.2.2.1.1 Do 4.1.1 to 4.2.2 and then proceed to 6.1.3
    6.1.3 oc4j -start
    Starting OC4J from C:\oracle\product\10.2.0\db_1\oc4j_extended_101330\j2ee\home...
    08/03/21 18:07:57 Oracle Containers for J2EE 10g (10.1.3.3.0) initialized
    6.1.4 Leave this command prompt open
    6.2 Use the Web Service to "Order an Item"
    6.2.1 Connect to Oracle using the user STORE and password STORE
    6.2.2 select * from orders
    6.2.2.1 Zero row should return
    6.2.3 Open Internet Explorer
    6.2.4 Navigate to http://localhost:8888/plsqlsample/dbfunc
    6.2.5 Input the following :
    6.2.5.1 param0 value: 1
    6.2.5.2 param1 value: 1
    6.2.5.3 param2 value: 10
    6.2.6 Click the Invoke button
    6.2.7 A pop-up window will appear having the following contents :
    <?xml version="1.0" encoding="UTF-8" ?>
    - <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <SOAP-ENV:Body>
    - <ns1:placeOrderResponse xmlns:ns1="http://db.func.place.order/dbfunc.wsdl" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <return xsi:type="xsd:string">Order placed with id of 1</return>
    </ns1:placeOrderResponse>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    6.2.8 Go back to SQLPLUS or Toad and execute "select * from orders" again
    6.2.8.1 There should be one row
    ORDER_ID, PRODUCT_ID, CUSTOMER_ID, QUANTITY
    1, 1, 1, 10
    NOTES AND REFERENCES
    =================================================================
    This detailed step-by-step guide was produced with the following article by Jason Price http://www.oracle.com/technology/pub/articles/price_10gws.html

    Success!!!
    I had to grant this permissions:
    call dbms_java.grant_permission( 'WS_TEST', 'SYS:java.lang.RuntimePermission', 'getClassLoader', '' );
    call dbms_java.grant_permission( 'WS_TEST', 'SYS:java.lang.RuntimePermission', 'accessClassInPackage.sun.util.calendar', '' );
    call dbms_java.grant_permission( 'WS_TEST', 'SYS:java.lang.RuntimePermission', 'setFactory', '' )
    call dbms_java.grant_permission( 'WS_TEST', 'SYS:java.util.PropertyPermission', 'HTTPClient.socket.idleTimeout', 'write' );
    call dbms_java.grant_permission( 'WS_TEST', 'SYS:java.net.SocketPermission', 'localhost', 'resolve' );
    call dbms_java.grant_permission( 'WS_TEST', 'SYS:java.net.SocketPermission', '127.0.0.1:8084', 'connect,resolve' );
    As I wrote earlier, WS_TEST is my user into which I load JAX-RPC client. Note that, if you load JAX-RPC client into user another than SYS, you have NOT to use -s -grant public option (wassam wrote about this too). Another thing is that I (finally) didn't load OC4J. To consume WebService I use utl_dbws.invoke(call_Handle CALL, request SYS.XMLTYPE) function.
    voytec001

  • Disp+work.EXE Dispatcher Stopped  - error

    Hi Experts,
    When I starting the SAP Solution Manager  / WINDOWS 2003 Server x64, In SAPMMC Console, disp+work.exe process shows an error, it not display a error, but simply donu00B4t start (donu00B4t show the green semaphore but instead it show the gray semaphore state). So the systems canu00B4t start with this error!
    What I have to make for correct this issue!?
    I check some posts sent by some users in SDN with seem error and almost all of them tell check the dev_disp ; dev_w0 and sapstartsrv (which I check in directory G:\usr\sap\<SID>\...\work). Sorry about the extension of this message, but is a truly copy from this three logs, which I think are the most important in this kind of error...
    Kindly help me how to solve this issue, so nest, I show you the content of that three log files.
                              dev_disp
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        SSM
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    159
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3852
    Thu Dec 04 15:04:00 2008
    kernel runs with dp version 237000(ext=110000) (@(#) DPLIB-INT-VERSION-237000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3852) [dpxxdisp.c   1254]
         shared lib "dw_xml.dll" version 159 successfully loaded
         shared lib "dw_xtc.dll" version 159 successfully loaded
         shared lib "dw_stl.dll" version 159 successfully loaded
         shared lib "dw_gui.dll" version 159 successfully loaded
         shared lib "dw_mdm.dll" version 159 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Thu Dec 04 15:04:04 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5403]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >ptresapsm_SSM_00                        <
    DpShMCreate: sizeof(wp_adm)          27472     (1616)
    DpShMCreate: sizeof(tm_adm)          5912624     (29416)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1864)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000EF60050, size: 6611392)
    DpShMCreate: allocated sys_adm at 000000000EF60050
    DpShMCreate: allocated wp_adm at 000000000EF62150
    DpShMCreate: allocated tm_adm_list at 000000000EF68CA0
    DpShMCreate: allocated tm_adm at 000000000EF68D00
    DpShMCreate: allocated wp_ca_adm at 000000000F50C530
    DpShMCreate: allocated appc_ca_adm at 000000000F5122F0
    DpShMCreate: allocated comm_adm at 000000000F514230
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000F59AEC0
    DpShMCreate: allocated gw_adm at 000000000F59AF40
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000F59AF70
    DpShMCreate: allocated wall_adm at 000000000F59AF80
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Thu Dec 04 15:04:05 2008
    rdisp/queue_size_check_value :  -> off
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 5119MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 5120MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1279 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2520
      argv[0] = G:\usr\sap\SSM\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = G:\usr\sap\SSM\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=65000
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=SSM
      argv[7] = -DSAPMYNAME=ptresapsm_SSM_00
      argv[8] = -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1656]
    ***LOG Q0K=> DpMsAttach, mscon ( ptresapsm) [dpxxdisp.c   11937]
    DpStartStopMsg: send start message (myname is >ptresapsm_SSM_00                        <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 159
    Release check o.K.
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Dec 04 15:04:09 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 256
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1408) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=2520)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Dec 04 15:04:45 2008
    my types changed after wp death/restart 0xbf --> 0xbe
    my types changed after wp death/restart 0xbe --> 0xbc
    my types changed after wp death/restart 0xbc --> 0xb8
    my types changed after wp death/restart 0xb8 --> 0xb0
    my types changed after wp death/restart 0xb0 --> 0xa0
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:04:55 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Thu Dec 04 15:04:55 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     2460 Ended         no      1   0        0                                                                         
    1 DIA     3968 Ended         no      1   0        0                                                                         
    2 DIA     1628 Ended         no      1   0        0                                                                         
    3 DIA     2840 Ended         no      1   0        0                                                                         
    4 DIA     3100 Ended         no      1   0        0                                                                         
    5 DIA     3392 Ended         no      1   0        0                                                                         
    6 DIA     3692 Ended         no      1   0        0                                                                         
    7 DIA     1612 Ended         no      1   0        0                                                                         
    8 DIA     2344 Ended         no      1   0        0                                                                         
    9 DIA     2256 Ended         no      1   0        0                                                                         
    10 UPD     3948 Ended         no      1   0        0                                                                         
    11 ENQ     1552 Ended         no      1   0        0                                                                         
    12 BTC     2984 Ended         no      1   0        0                                                                         
    13 BTC     1696 Ended         no      1   0        0                                                                         
    14 BTC     2716 Ended         no      1   0        0                                                                         
    15 SPO     2920 Ended         no      1   0        0                                                                         
    16 UP2     1692 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Thu Dec 04 15:04:55 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          12
    wake_evt_udp_now     0
    wake events           total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    since last update     total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    Dump of tm_adm structure:               Thu Dec 04 15:04:55 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Thu Dec 04 15:04:55 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:00 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >ptresapsm_SSM_00                        < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (3992) (SOFT_KILL)
    Stop icman
    killing process (604) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:3992  HANDLE:372)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:01 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:3992  HANDLE:372)
    wait for end of icman
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:02 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:03 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:04 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:05 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:06 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:07 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:08 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:09 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:10 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:11 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:604  HANDLE:384)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=405
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 04 15:05:12 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:604  HANDLE:384)
    [DpProcDied] Process died  (PID:2520  HANDLE:356)
    DpStartStopMsg: send stop message (myname is >ptresapsm_SSM_00                        <)
    NiIMyHostName: hostname = 'ptresapsm'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 3 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 3 (r)
    NiIRead: hdl 3 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    Thu Dec 04 15:05:13 2008
    NiIPeek: peek for hdl 3 timed out (r; 1000ms)
    NiIRead: read for hdl 3 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12283]
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 280 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 280 (pos=3)
    SiSelNRemove: removed sock 280
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/17
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 280
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3852) [dpxxdisp.c   10484]
    Good Bye .....
                              dev_w0
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Dec 04 15:04:05 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'G:\usr\sap\SSM\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'G:\usr\sap\SSM\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'G:\usr\sap\SSM\DVEBMGS00\exe\dbmssslib.dll' is "700.08", patchlevel (0.158)
    B  New connection 0 created
    M sysno      00
    M sid        SSM
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    159
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        2460
    M
    M  kernel runs with dp version 237000(ext=110000) (@(#) DPLIB-INT-VERSION-237000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2460) [dpxxdisp.c   1316]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          27472     (1616)
    M  DpShMCreate: sizeof(tm_adm)          5912624     (29416)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1864)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 0000000010F60050, size: 6611392)
    M  DpShMCreate: allocated sys_adm at 0000000010F60050
    M  DpShMCreate: allocated wp_adm at 0000000010F62150
    M  DpShMCreate: allocated tm_adm_list at 0000000010F68CA0
    M  DpShMCreate: allocated tm_adm at 0000000010F68D00
    M  DpShMCreate: allocated wp_ca_adm at 000000001150C530
    M  DpShMCreate: allocated appc_ca_adm at 00000000115122F0
    M  DpShMCreate: allocated comm_adm at 0000000011514230
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000001159AEC0
    M  DpShMCreate: allocated gw_adm at 000000001159AF40
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000001159AF70
    M  DpShMCreate: allocated wall_adm at 000000001159AF80
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Thu Dec 04 15:04:06 2008
    M  ThInit: running on host ptresapsm

    M Thu Dec 04 15:04:07 2008
    M  calling db_connect ...
    C  Thread ID:2168
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'G:\usr\sap\SSM\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      158
    C    patchcomment Corrections of odbc-based dbsl: dsql: optype, DSN (1135165)
    C  np:(local) connection used on PTRESAPSM
    C  CopyLocalParameters: dbuser is 'ssm'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.3042.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  ERROR: schema user ssm has administrator fixed server role (user_name() is 'dbo').
    C         This is not allowed.  Please check the Server Roles of user ssm.
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1440]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10504]

    M  Info for wp 0

    M    pid = 2460
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server ptresapsm_SSM_00 on host ptresapsm (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Dec 04 15:04:07 2008
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10724
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   724]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2460) [dpnttool.c   333]
                              sapstartsrv
    trc file: "sapstartsrv.log", trc level: 0, release: "700"
    pid        3236
    Thu Dec 04 15:00:12 2008
    SAP HA Trace: Build in SAP Microsoft Cluster library '700, patch 159, changelist 981833' initialized
    Initializing SAPControl Webservice
    SapSSLInit failed => https support disabled
    Starting WebService Named Pipe thread
    Starting WebService thread
    Webservice named pipe thread started, listening on port
    .\pipe\sapcontrol_00
    Webservice thread started, listening on port 50013
    PTRESAPSM\ssmadm is starting SAP System at 2008/12/04 15:01:40
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 212]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 907]
    PTRESAPSM\ssmadm is stopping SAP System at 2008/12/04 15:03:35
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 212]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 907]
    PTRESAPSM\ssmadm is starting SAP System at 2008/12/04 15:03:55
    Finish
    Help me please...
    If you want more log files.... or another information tell me OK??!! TKS
    Best Regards,
    Thanks in advance,
    Joao Dimas

    Hello Markus Doehr,
    Thanks for help me... Next Iu00B4m going put the log files that you recommend me to check and also the dev_jcontrol which I think is important to check... I donu00B4t really know...
    dev_jcontrol
    dev_bootstrap
    dev_server0
    std_server0.out
    Iu00B4m newest in SAP... so I still have problems to verify/check the log files... I donu00B4t have the sensibility for discover the issues in log... in error... etc
    Can you tell me if there is any problem / error in that log files...?! Thanks in advance!!
    _________ ||  _____________  ||  ______________  ||   _____________
    trc file: "G:\usr\sap\SSM\DVEBMGS00\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 3492
    system name : SSM
    system nr.  : 00
    started at  : Fri Dec 05 10:56:56 2008
    arguments       :
           arg[00] : G:\usr\sap\SSM\DVEBMGS00\exe\jcontrol.EXE
           arg[01] : pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[02] : -DSAPSTART=1
           arg[03] : -DCONNECT_PORT=64990
           arg[04] : -DSAPSYSTEM=00
           arg[05] : -DSAPSYSTEMNAME=SSM
           arg[06] : -DSAPMYNAME=ptresapsm_SSM_00
           arg[07] : -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[08] : -DFRFC_FALLBACK=ON
           arg[09] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 3508] Fri Dec 05 10:56:56 2008
    [Thr 3508] *** WARNING => INFO: Unknown property [instance.box.number=SSMDVEBMGS00ptresapsm] [jstartxx.c   841]
    [Thr 3508] *** WARNING => INFO: Unknown property [instance.en.host=ptresapsm] [jstartxx.c   841]
    [Thr 3508] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 3508] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties;G:\usr\sap\SSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : ptresapsm
    -> ms port    : 3901
    -> OS libs    : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> files [01] : G:\usr\sap\SSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : ptresapsm
    -> ms port    : 3901
    -> os libs    : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID1583200  : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID1583250  : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID1583200            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID1583250            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] sdm                  : G:\usr\sap\SSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    [Thr 3508] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 1620] JControlDPMessageProxy: Thread 1620 started as handler thread for R/3 dispatcher messages.
    [Thr 3508] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdkx64
    [Thr 3508] JStartupICheckFrameworkPackage: can't find framework package G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdkx64
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> root path          : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : G:\usr\sap\SSM\DVEBMGS00\exe\jstartup.jar;G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0015832
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = G:\usr\sap\SSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = G:\usr\sap\SSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
    -> arg[02] = -DSAPINFO=SSM_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_3492
    -> arg[06] = -nodeName=bootstrap
    -> arg[07] = -jvmOutFile=G:\usr\sap\SSM\DVEBMGS00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=G:\usr\sap\SSM\DVEBMGS00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=G:\usr\sap\SSM\DVEBMGS00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=1302
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=SSM
    -> arg[16] = -DSAPMYNAME=ptresapsm_SSM_00
    -> arg[17] = -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdkx64\jre\bin\server;C:\j2sdkx64\jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdkx64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;G:\usr\sap\SSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdkx64\bin;G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdkx64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;G:\usr\sap\SSM\SYS\exe\uc\NTAMD64
    [Thr 3508] Fri Dec 05 10:56:59 2008
    [Thr 3508] *** ERROR => invalid return code of process [bootstrap] (exitcode = 66) [jstartxx.c   1642]
    [Thr 3508] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc = 66)
    [Thr 3508] JControlCloseProgram: started (exitcode = 66)
    [Thr 3508] JControlCloseProgram: good bye... (exitcode = 66)
    trc file: "G:\usr\sap\SSM\DVEBMGS00\work\dev_bootstrap", trc level: 1, release: "700"
    node name   : bootstrap
    pid         : 4028
    system name : SSM
    system nr.  : 00
    started at  : Fri Dec 05 10:56:56 2008
    arguments       :
           arg[00] : G:\usr\sap\SSM\DVEBMGS00\exe\jlaunch.exe
           arg[01] : pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[02] : -DSAPINFO=SSM_00_bootstrap
           arg[03] : pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1302
           arg[06] : -DSAPSYSTEM=00
           arg[07] : -DSAPSYSTEMNAME=SSM
           arg[08] : -DSAPMYNAME=ptresapsm_SSM_00
           arg[09] : -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 2592] Fri Dec 05 10:56:56 2008
    [Thr 2592] *** WARNING => INFO: Unknown property [instance.box.number=SSMDVEBMGS00ptresapsm] [jstartxx.c   841]
    [Thr 2592] *** WARNING => INFO: Unknown property [instance.en.host=ptresapsm] [jstartxx.c   841]
    [Thr 2592] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 2592] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties]
    -> ms host    : ptresapsm
    -> ms port    : 3901
    -> OS libs    : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : ptresapsm
    -> ms port    : 3901
    -> os libs    : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID1583200  : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID1583250  : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID1583200            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID1583250            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    [Thr 2592] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 2592] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 3484] JLaunchRequestFunc: Thread 3484 started as listener thread for np messages.
    [Thr 4020] WaitSyncSemThread: Thread 4020 started as semaphore monitor thread.
    [Thr 2592] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 2592] CPIC (version=700.2006.09.13)
    [Thr 2592] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdkx64
    [Thr 2592] JStartupICheckFrameworkPackage: can't find framework package G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdkx64
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> root path          : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : G:\usr\sap\SSM\DVEBMGS00\exe\jstartup.jar;G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0015832
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 2580] JLaunchIStartFunc: Thread 2580 started as Java VM thread.
    [Thr 2580] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [bootstrap]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -Dsys.global.dir=G:\usr\sap\SSM\SYS\global
    -> arg[  5]: -Dapplication.home=G:\usr\sap\SSM\DVEBMGS00\exe
    -> arg[  6]: -Djava.class.path=G:\usr\sap\SSM\DVEBMGS00\exe\jstartup.jar;G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar;.\bootstrap\launcher.jar
    -> arg[  7]: -Djava.library.path=C:\j2sdkx64\jre\bin\server;C:\j2sdkx64\jre\bin;C:\j2sdkx64\bin;G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdkx64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;G:\usr\sap\SSM\SYS\exe\uc\NTAMD64
    -> arg[  8]: -Dmemory.manager=256M
    -> arg[  9]: -Xmx256M
    -> arg[ 10]: -DLoadBalanceRestricted=no
    -> arg[ 11]: -Djstartup.mode=BOOTSTRAP
    -> arg[ 12]: -Djstartup.ownProcessId=4028
    -> arg[ 13]: -Djstartup.ownHardwareId=O0010092564
    -> arg[ 14]: -Djstartup.whoami=bootstrap
    -> arg[ 15]: -Djstartup.debuggable=yes
    -> arg[ 16]: -Xss2m
    -> arg[ 17]: -DSAPINFO=SSM_00_bootstrap
    -> arg[ 18]: -DSAPSTART=1
    -> arg[ 19]: -DCONNECT_PORT=1302
    -> arg[ 20]: -DSAPSYSTEM=00
    -> arg[ 21]: -DSAPSYSTEMNAME=SSM
    -> arg[ 22]: -DSAPMYNAME=ptresapsm_SSM_00
    -> arg[ 23]: -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
    -> arg[ 24]: -DFRFC_FALLBACK=ON
    -> arg[ 25]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 26]: -DSAPSTARTUP=1
    -> arg[ 27]: -DSAPSYSTEM=00
    -> arg[ 28]: -DSAPSYSTEMNAME=SSM
    -> arg[ 29]: -DSAPMYNAME=ptresapsm_SSM_00
    -> arg[ 30]: -DSAPDBHOST=PTRESAPSM
    -> arg[ 31]: -Dj2ee.dbhost=PTRESAPSM
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 2580] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [bootstrap]
    -> arg[  0]: com.sap.engine.bootstrap.Bootstrap
    -> arg[  1]: ./bootstrap
    -> arg[  2]: ID0015832
    [Thr 2580] Fri Dec 05 10:56:57 2008
    [Thr 2580] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3872] Fri Dec 05 10:56:59 2008
    [Thr 3872] JLaunchIExitJava: exit hook is called (rc = 66)
    [Thr 3872] **********************************************************************
    *** ERROR => The Java VM terminated with a non-zero exit code.
    *** Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    *** for additional information and trouble shooting.
    [Thr 3872] JLaunchCloseProgram: good bye (exitcode = 66)
    trc file: "G:\usr\sap\SSM\DVEBMGS00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID1583250
    pid         : 4560
    system name : SSM
    system nr.  : 00
    started at  : Thu Dec 04 12:15:53 2008
    arguments       :
           arg[00] : G:\usr\sap\SSM\DVEBMGS00\exe\jlaunch.exe
           arg[01] : pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[02] : -DSAPINFO=SSM_00_server
           arg[03] : pf=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=4371
           arg[06] : -DSAPSYSTEM=00
           arg[07] : -DSAPSYSTEMNAME=SSM
           arg[08] : -DSAPMYNAME=ptresapsm_SSM_00
           arg[09] : -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4724] Thu Dec 04 12:15:53 2008
    [Thr 4724] *** WARNING => INFO: Unknown property [instance.box.number=SSMDVEBMGS00ptresapsm] [jstartxx.c   841]
    [Thr 4724] *** WARNING => INFO: Unknown property [instance.en.host=ptresapsm] [jstartxx.c   841]
    [Thr 4724] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 4724] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties]
    -> ms host    : ptresapsm
    -> ms port    : 3901
    -> OS libs    : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : ptresapsm
    -> ms port    : 3901
    -> os libs    : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID1583200  : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID1583250  : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID1583200            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID1583250            : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\instance.properties
    [Thr 4724] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4724] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 5880] JLaunchRequestFunc: Thread 5880 started as listener thread for np messages.
    [Thr 5300] WaitSyncSemThread: Thread 5300 started as semaphore monitor thread.
    [Thr 4724] Thu Dec 04 12:15:54 2008
    [Thr 4724] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 4724] CPIC (version=700.2006.09.13)
    [Thr 4724] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdkx64
    [Thr 4724] JStartupICheckFrameworkPackage: can't find framework package G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID1583250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdkx64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:+DisableExplicitGC -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : G:\usr\sap\SSM\DVEBMGS00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : G:\usr\sap\SSM\DVEBMGS00\exe\jstartup.jar;G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 4724] JLaunchISetDebugMode: set debug mode [no]
    [Thr 4428] JLaunchIStartFunc: Thread 4428 started as Java VM thread.
    [Thr 4428] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=256M
    -> arg[  5]: -XX:PermSize=256M
    -> arg[  6]: -XX:NewSize=171M
    -> arg[  7]: -XX:MaxNewSize=171M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -XX:+PrintGCDetails
    -> arg[ 11]: -XX:+PrintGCTimeStamps
    -> arg[ 12]: -Djava.awt.headless=true
    -> arg[ 13]: -Dsun.io.useCanonCaches=false
    -> arg[ 14]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 15]: -XX:SurvivorRatio=2
    -> arg[ 16]: -XX:TargetSurvivorRatio=90
    -> arg[ 17]: -Djava.security.policy=./java.policy
    -> arg[ 18]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 19]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 20]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 21]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 22]: -Dsys.global.dir=G:\usr\sap\SSM\SYS\global
    -> arg[ 23]: -Dapplication.home=G:\usr\sap\SSM\DVEBMGS00\exe
    -> arg[ 24]: -Djava.class.path=G:\usr\sap\SSM\DVEBMGS00\exe\jstartup.jar;G:\usr\sap\SSM\DVEBMGS00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 25]: -Djava.library.path=C:\j2sdkx64\jre\bin\server;C:\j2sdkx64\jre\bin;C:\j2sdkx64\bin;G:\usr\sap\SSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdkx64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;G:\usr\sap\SSM\SYS\exe\uc\NTAMD64
    -> arg[ 26]: -Dmemory.manager=1024M
    -> arg[ 27]: -Xmx1024M
    -> arg[ 28]: -Xms1024M
    -> arg[ 29]: -DLoadBalanceRestricted=no
    -> arg[ 30]: -Djstartup.mode=JCONTROL
    -> arg[ 31]: -Djstartup.ownProcessId=4560
    -> arg[ 32]: -Djstartup.ownHardwareId=O0010092564
    -> arg[ 33]: -Djstartup.whoami=server
    -> arg[ 34]: -Djstartup.debuggable=no
    -> arg[ 35]: -Xss2m
    -> arg[ 36]: -DSAPINFO=SSM_00_server
    -> arg[ 37]: -DSAPSTART=1
    -> arg[ 38]: -DCONNECT_PORT=4371
    -> arg[ 39]: -DSAPSYSTEM=00
    -> arg[ 40]: -DSAPSYSTEMNAME=SSM
    -> arg[ 41]: -DSAPMYNAME=ptresapsm_SSM_00
    -> arg[ 42]: -DSAPPROFILE=G:\usr\sap\SSM\SYS\profile\SSM_DVEBMGS00_ptresapsm
    -> arg[ 43]: -DFRFC_FALLBACK=ON
    -> arg[ 44]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 45]: -DSAPSTARTUP=1
    -> arg[ 46]: -DSAPSYSTEM=00
    -> arg[ 47]: -DSAPSYSTEMNAME=SSM
    -> arg[ 48]: -DSAPMYNAME=ptresapsm_SSM_00
    -> arg[ 49]: -DSAPDBHOST=PTRESAPSM
    -> arg[ 50]: -Dj2ee.dbhost=PTRESAPSM
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 4428] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 588] Thu Dec 04 12:15:57 2008
    [Thr 588] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 588] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 588] Thu Dec 04 12:15:58 2008
    [Thr 588] JLaunchISetClusterId: set cluster id 1583250
    [Thr 588] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 588] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Thu Dec 04 12:16:13 2008
    19.077: [GC 19.077: [DefNew: 87552K->5496K(131328K), 0.0501466 secs] 87552K->5496K(1004800K), 0.0502893 secs]
    Thu Dec 04 12:16:18 2008
    24.676: [GC 24.677: [DefNew: 93048K->11119K(131328K), 0.1023379 secs] 93048K->11119K(1004800K), 0.1025900 secs]
    Thu Dec 04 12:16:22 2008
    28.000: [GC 28.001: [DefNew: 98671K->11384K(131328K), 0.0546187 secs] 98671K->11384K(1004800K), 0.0547362 secs]
    Thu Dec 04 12:16:24 2008
    30.095: [GC 30.096: [DefNew: 98936K->13814K(131328K), 0.0476156 secs] 98936K->13814K(1004800K), 0.0477286 secs]
    Thu Dec 04 12:16:25 2008
    31.857: [GC 31.857: [DefNew: 101366K->15103K(131328K), 0.0584224 secs] 101366K->15103K(1004800K), 0.0585738 secs]
    Thu Dec 04 12:16:28 2008
    34.874: [GC 34.874: [DefNew: 102655K->17038K(131328K), 0.0604113 secs] 102655K->17038K(1004800K), 0.0605012 secs]
    Thu Dec 04 12:16:32 2008
    38.572: [GC 38.572: [DefNew: 104590K->19152K(131328K), 0.0565713 secs] 104590K->19152K(1004800K), 0.0566538 secs]
    [Thr 1688] Thu Dec 04 12:16:36 2008
    [Thr 1688] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    Thu Dec 04 12:16:37 2008
    43.012: [GC 43.012: [DefNew: 106704K->25227K(131328K), 0.0823079 secs] 106704K->25227K(1004800K), 0.0823936 secs]
    [Thr 1688] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 1688] Thu Dec 04 12:16:38 2008
    [Thr 1688] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    Thu Dec 04 12:16:43 2008
    49.556: [GC 49.556: [DefNew: 112779K->29697K(131328K), 0.0999738 secs] 112779K->29697K(1004800K), 0.1000646 secs]
    Thu Dec 04 12:16:46 2008
    52.042: [GC 52.042: [DefNew: 117249K->35264K(131328K), 0.1106408 secs] 117249K->35264K(1004800K), 0.1107553 secs]
    [Thr 5380] Thu Dec 04 12:16:47 2008
    [Thr 5380] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    Thu Dec 04 12:16:48 2008
    54.071: [GC 54.072: [DefNew: 122816K->40377K(131328K), 0.1233043 secs] 122816K->40377K(1004800K), 0.1234162 secs]
    Thu Dec 04 12:16:49 2008
    55.087: [GC 55.087: [DefNew: 127929K->37640K(131328K), 0.1115527 secs] 127929K->41526K(1004800K), 0.1116567 secs]
    [Thr 588] Thu Dec 04 12:16:50 2008
    [Thr 588] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    Thu Dec 04 12:16:51 2008
    57.389: [GC 57.389: [DefNew: 125192K->42625K(131328K), 0.1177039 secs] 129078K->46511K(1004800K), 0.1177899 secs]
    Thu Dec 04 12:16:54 2008
    60.213: [GC 60.213: [DefNew: 130177K->36624K(131328K), 0.1019909 secs] 134063K->44865K(1004800K), 0.1020999 secs]
    Thu Dec 04 12:16:56 2008
    62.474: [GC 62.474: [DefNew: 124176K->38648K(131328K), 0.1008482 secs] 132417K->46888K(1004800K), 0.1009399 secs]
    Thu Dec 04 12:17:00 2008
    66.746: [GC 66.746: [DefNew: 126200K->42040K(131328K), 0.1027034 secs] 134440K->50280K(1004800K), 0.1027940 secs]
    Thu Dec 04 12:17:13 2008
    79.914: [GC 79.914: [DefNew
    Thu Dec 04 12:17:14 2008
    : 129592K->41760K(131328K), 0.1082566 secs] 137832K->53026K(1004800K), 0.1083554 secs]
    Thu Dec 04 12:17:17 2008
    83.501: [GC 83.501: [DefNew: 129312K->41403K(131328K), 0.1066359 secs] 140578K->55610K(1004800K), 0.1067443 secs]
    Thu Dec 04 12:17:18 2008
    84.609: [GC 84.609: [DefNew: 128952K->43776K(131328K), 0.1170661 secs] 143159K->61207K(1004800K), 0.1171621 secs]
    Thu Dec 04 12:17:19 2008
    85.804: [GC 85.804: [DefNew: 131328K->36934K(131328K), 0.1093640 secs] 148759K->59382K(1004800K), 0.1094988 secs]
    Thu Dec 04 12:17:27 2008
    93.252: [GC 93.253: [DefNew: 124461K->42704K(131328K), 0.1173445 secs] 146909K->65152K(1004800K), 0.1174320 secs]
    Thu Dec 04 12:17:30 2008
    96.217: [GC 96.217: [DefNew: 130256K->40910K(131328K), 0.1076070 secs] 152704K->66929K(1004800K), 0.1077113 secs]
    Thu Dec 04 12:17:31 2008
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Thu Dec 04 12:17:33 2008
    99.226: [GC 99.226: [DefNew: 128462K->35273K(131328K), 0.1083766 secs] 154481K->68349K(1004800K), 0.1084756 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readElement
    Thu Dec 04 12:17:36 2008
    102.480: [GC 102.480: [DefNew: 122825K->35659K(131328K), 0.0899413 secs] 155901K->68735K(1004800K), 0.0900270 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.GeneratedComplexType::_loadInto
    Thu Dec 04 12:17:37 2008
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readSequence
    Thu Dec 04 12:17:38 2008
    104.392: [GC 104.392: [DefNew: 123211K->37812K(131328K), 0.0939406 secs] 156287K->70888K(1004800K), 0.0940273 secs]
    Thu Dec 04 12:17:40 2008
    106.588: [GC 106.588: [DefNew: 125364K->40347K(131328K), 0.0999732 secs] 158440K->73423K(1004800K), 0.1000776 secs]
    Thu Dec 04 12:17:43 2008
    109.430: [GC 109.430: [DefNew: 127899K->37058K(131328K), 0.1094132 secs] 160975K->75618K(1004800K), 0.1094978 secs]
    Thu Dec 04 12:17:46 2008
    111.972: [GC 111.973: [DefNew: 124610K->39109K(131328K), 0.1022987 secs] 163170K->77670K(1004800K), 0.1024141 secs]
    Thu Dec 04 12:17:48 2008
    114.920: [GC 114.920: [DefNew
    Thu Dec 04 12:17:49 2008
    : 126661K->41995K(131328K), 0.1145837 secs] 165222K->80555K(1004800K), 0.1147194 secs]
    Thu Dec 04 12:17:51 2008
    117.861: [GC 117.861: [DefNew
    Thu Dec 04 12:17:52 2008
    : 129547K->39474K(131328K), 0.1112544 secs] 168107K->82009K(1004800K), 0.1113396 secs]
    Thu Dec 04 12:17:54 2008
    120.826: [GC 120.826: [DefNew: 127026K->40925K(131328K), 0.1045812 secs] 169561K->84055K(1004800K), 0.1046915 secs]
    Thu Dec 04 12:17:56 2008
    122.740: [GC 122.740: [DefNew: 128477K->42193K(131328K), 0.1803097 secs] 171607K->88132K(1004800K), 0.1804721 secs]
    Thu Dec 04 12:18:00 2008
    125.939: [GC 125.939: [DefNew: 129745K->38462K(131328K), 0.1148672 secs] 175684K->90542K(1004800K), 0.1149527 secs]
    Thu Dec 04 12:18:03 2008
    128.973: [GC 128.973: [DefNew: 126014K->40200K(131328K), 0.1029183 secs] 178094K->92280K(1004800K), 0.1030087 secs]
    Thu Dec 04 12:18:05 2008
    131.325: [GC 131.325: [DefNew: 127752K->39192K(131328K), 0.1282047 secs] 179832K->93785K(1004800K), 0.1283172 secs]
    Thu Dec 04 12:18:08 2008
    133.987: [GC 133.987: [DefNew: 126744K->41235K(131328K), 0.1047548 secs] 181337K->95828K(1004800K), 0.1048436 secs]
    Thu Dec 04 12:18:10 2008
    136.610: [GC 136.610: [DefNew: 128787K->40864K(131328K), 0.1071581 secs] 183380K->97485K(1004800K), 0.1072430 secs]
    Thu Dec 04 12:18:13 2008
    139.412: [GC 139.412: [DefNew: 128416K->36293K(131328K), 0.1119034 secs] 185037K->99433K(1004800K), 0.1120108 secs]
    Thu Dec 04 12:18:15 2008
    141.693: [GC 141.693: [DefNew: 123845K->37761K(131328K), 0.0960635 secs] 186985K->100902K(1004800K), 0.0961513 secs]
    [Thr 3164] Thu Dec 04 12:18:18 2008
    [Thr 3164] JLaunchISetState: change state from [Starting applications (10)] to [Running (3)]
    Thu Dec 04 12:18:57 2008
    182.994: [GC 182.994: [DefNew: 125313K->39240K(131328K), 0.0968107 secs] 188454K->102380K(1004800K), 0.0969356 secs]
    Thu Dec 04 12:21:49 2008
    355.304: [GC 355.304: [DefNew: 126792K->42607K(131328K), 0.1088315 secs] 189932K->105748K(1004800K), 0.1089311 secs]
    Thu Dec 04 12:21:50 2008
    356.838: [GC 356.838: [DefNew
    Thu Dec 04 12:21:51 2008
    : 130159K->43776K(131328K), 0.1229288 secs] 193300K->110857K(1004800K), 0.1230164 secs]
    Thu Dec 04 12:21:58 2008
    364.250: [GC 364.251: [DefNew: 131328K->43775K(131328K), 0.1563593 secs] 198409K->117956K(1004800K), 0.1564564 secs]
    Thu Dec 04 13:11:57 2008
    3363.074: [GC 3363.074: [DefNew: 131327K->40304K(131328K), 0.1502807 secs] 205508K->120156K(1004800K), 0.1504182 secs]
    Thu Dec 04 14:01:58 2008
    6363.012: [GC 6363.012: [DefNew: 127856K->40163K(131328K), 0.0958166 secs] 207708K->121393K(1004800K), 0.0959492 secs]
    [Thr 5880] Thu Dec 04 14:30:08 2008
    [Thr 5880] JLaunchRequestFunc: receive command:17, argument:0 from pid:3568
    [Thr 5880] JLaunchIShutdownInvoke: set shutdown interval (stop:1228401008/end:1228401128/TO:120)
    [Thr 5880] JLaunchProcessCommand: Invoke VM Shutdown
    [Thr 5880] JHVM_FrameworkShutdownDirect: invoke direct shutdown
    [Thr 4916] JLaunchISetState: change state from [Running (3)] to [Waiting for stop (4)]
    [Thr 4916] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    [Thr 6052] Thu Dec 04 14:30:12 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 7 / sock 5616
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:12 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     1
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    8057.269: [GC 8057.270: [DefNew
    Thu Dec 04 14:30:13 2008
    : 127715K->39141K(131328K), 0.0977667 secs] 208945K->122135K(1004800K), 0.0978771 secs]
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 5 / sock 6548
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:13 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     2
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:14 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 5 / sock 6548
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:14 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     3
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:15 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 6 / sock 5620
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:15 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     4
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:16 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 6 / sock 5620
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:16 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     5
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:19 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 4 / sock 6000
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:19 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     6
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:22 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 4 / sock 2992
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:22 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     7
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:25 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 4 / sock 2992
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:25 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     8
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 6052] Thu Dec 04 14:30:32 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 4 / sock 2988
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:32 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     9
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    Thu Dec 04 14:30:34 2008
    8078.843: [GC 8078.843: [DefNew: 126693K->35646K(131328K), 0.0929205 secs] 209687K->118640K(1004800K), 0.0931376 secs]
    [Thr 280] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.sadm.ShmCache
    [Thr 6052] Thu Dec 04 14:30:35 2008
    [Thr 6052] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6052] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 4 / sock 8804
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    2823]
    [Thr 6052] *** ERROR => GwIConnect: GwConnect to localhost / sapgw00 failed (rc=NIECONN_REFUSED) [gwxx.c       296]
    [Thr 6052] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       297]
    [Thr 6052] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       299]
    [Thr 6052] ***LOG S0S=> GwIConnect, GwConnect (sapgw00) [gwxx.c       301]
    [Thr 6052] ***LOG S90=> SAP_CMREGTP3, GwIConnect ( 236) [r3cpic.c     9624]
    [Thr 6052]
    [Thr 6052] *  ERROR       partner '127.0.0.1:sapgw00' not reached
    [Thr 6052] *
    *  TIME        Thu Dec 04 14:30:35 2008
    [Thr 6052] *  RELEASE     700
    [Thr 6052] *  COMPONENT   NI (network interface)
    [Thr 6052] *  VERSION     38
    [Thr 6052] *  RC          -10
    [Thr 6052] *  MODULE      nixxi.cpp
    [Thr 6052] *  LINE        2823
    [Thr 6052] *  DETAIL      NiPConnect2
    [Thr 6052] *  SYSTEM CALL connect
    [Thr 6052] *  ERRNO       10061
    [Thr 6052] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6052] *  COUNTER     10
    [Thr 6052] *
    [Thr 6052] *****************************************************************************
    [Thr 4916] Thu Dec 04 14:30:36 2008
    [Thr 4916] JLaunchISetState: change state from [Stopping (5)] to [Stopped (6)]
    [Thr 1188] Thu Dec 04 14:30:37 2008
    [Thr 1188] JLaunchIExitJava: exit hook is called (rc = 0)
    [Thr 1188] JLaunchCloseProgram: good bye (exitcode = 0)
    stdout/stderr redirect
    node name   : server0
    pid         : 3568
    system name : SSM
    system nr.  : 00
    started at  : Thu Dec 04 12:15:53 2008
    [Thr 4724] MtxInit: -2 0 0
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    SAP J2EE Engine Version 7.00   PatchLevel 109886.44 is starting...
    Loading: LogManager ... 1235 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 188 ms.
    Loading: ThreadManager ... 47 ms.
    Loading: IpVerificationManager ... 15 ms.
    Loading: ClassLoaderManager ... 32 ms.
    Loading: ClusterManager ... 437 ms.
    Loading: LockingManager ... 109 ms.
    Loading: ConfigurationManager ... 3750 ms.
    Loading: LicensingManager ... 63 ms.
    Loading: CacheManager ... 281 ms.
    Loading: ServiceManager ...
    19.077: [GC 19.077: [DefNew: 87552K->5496K(131328K), 0.0501466 secs] 87552K->5496K(1004800K), 0.0502893 secs]
    Loading services.:
      Service cross started. (94 ms).
      Service file started. (109 ms).
      Service memory started. (47 ms).
      Service timeout started. (125 ms).
      Service runtimeinfo started. (141 ms).
      Service trex.service started. (62 ms).
      Service p4 started. (516 ms).
      Service classpath_resolver started. (47 ms).
      Service userstore started. (63 ms).
      Service jmx_notification started. (63 ms).
    24.676: [GC 24.677: [DefNew: 93048K->11119K(131328K), 0.1023379 secs] 93048K->11119K(1004800K), 0.1025900 secs]
    28.000: [GC 28.001: [DefNew: 98671K->11384K(131328K), 0.0546187 secs] 98671K->11384K(1004800K), 0.0547362 secs]
    30.095: [GC 30.096: [DefNew: 98936K->13814K(131328K), 0.0476156 secs] 98936K->13814K(1004800K), 0.0477286 secs]
    31.857: [GC 31.857: [DefNew: 101366K->15103K(131328K), 0.0584224 secs] 101366K->15103K(1004800K), 0.0585738 secs]
      Service log_configurator started. (9922 ms).
      Service locking started. (16 ms).
      Service naming started. (547 ms).
      Service ts started. (110 ms).
      Service licensing started. (63 ms).
      Service failover started. (156 ms).
      Service javamail started. (250 ms).
      Service http started. (672 ms).
      Service appclient started. (187 ms).
      Service jmsconnector started. (266 ms).
      Service connector started. (313 ms).
      Service iiop started. (375 ms).
      Service webservices started. (1063 ms).
    34.874: [GC 34.874: [DefNew: 102655K->17038K(131328K), 0.0604113 secs] 102655K->17038K(1004800K), 0.0605012 secs]
    38.572: [GC 38.572: [DefNew: 104590K->19152K(131328K), 0.0565713 secs] 104590K->19152K(1004800K), 0.0566538 secs]
      Service deploy started. (16954 ms).
      Service configuration started. (63 ms).
      Service MigrationService started. (47 ms).
      Service bi~mmr~deployer started. (15 ms).
      Service dbpool started. (1641 ms).
      Service UT started. (16 ms).
    43.012: [GC 43.012: [DefNew: 106704K->25227K(131328K), 0.0823079 secs] 106704K->25227K(1004800K), 0.0823936 secs]
      Service com.sap.security.core.ume.service started. (5985 ms).
      Service security started. (1313 ms).
    49.556: [GC 49.556: [DefNew: 112779K->29697K(131328K), 0.0999738 secs] 112779K->29697K(1004800K), 0.1000646 secs]
      Service classload started. (187 ms).
      Service applocking started. (203 ms).
      Service shell started. (250 ms).
      Service tc~eCATTPing~service started. (62 ms).
      Service telnet started. (62 ms).
      Service ejb started. (547 ms).
      Service dsr started. (281 ms).
      Service servlet_jsp started. (969 ms).
      Service webdynpro started. (672 ms).
      Service tc~di~sdic~srv started. (2359 ms).
      Service keystore started. (1094 ms).
      Service ssl started. (31 ms).
      Service tc~sec~securestorage~service started. (219 ms).
      Service tc~sec~certrevoc~service started. (187 ms).
      Service caf~um~metadata~imp started. (1344 ms).
      Service jmx started. (1031 ms).
      Service caf~runtime~connectivity~impl started. (26938 ms).
    52.042: [GC 52.042: [DefNew: 117249K->35264K(131328K), 0.1106408 secs] 117249K->35264K(1004800K), 0.1107553 secs]
      Service tc~lm~ctc~confs~service_sda started. (891 ms).
      Service CUL started. (1125 ms).
      Service tc~sec~destinations~service started. (1266 ms).
      Service tc~sec~wssec~service started. (1250 ms).
      Service caf~um~relgroups~imp started. (1312 ms).
      Service sld started. (1625 ms).
      Service rfcengine started. (328 ms).
      Service com.adobe~DocumentServicesBinaries2 started. (1313 ms).
      Service com.adobe~DocumentServicesLicenseSupportService started. (828 ms).
      Service com.adobe~DataManagerService started. (1219 ms).
      Service com.adobe~DocumentServicesDestProtoService started. (390 ms).
      Service com.adobe~XMLFormService started. (953 ms).
      Service tc~sec~vsi~service started. (734 ms).
      Service basicadmin started. (2157 ms).
      Service apptracing started. (735 ms).
      Service com.adobe~LicenseService started. (171 ms).
      Service pmi started. (109 ms).
    54.071: [GC 54.072: [DefNew: 122816K->40377K(131328K), 0.1233043 secs] 122816K->40377K(1004800K), 0.1234162 secs]
      Service adminadapter started. (750 ms).
      Service com.adobe~PDFManipulation started. (2078 ms).
      Service tc~smd~server~service started. (1485 ms).
      Service com.adobe~DocumentServicesConfiguration started. (1031 ms).
      Service com.adobe~TrustManagerService started. (109 ms).
      Service monitor started. (829 ms).
    55.087: [GC 55.087: [DefNew: 127929K->37640K(131328K), 0.1115527 secs] 127929K->41526K(1004800K), 0.1116567 secs]
      Service jms_provider started. (4219 ms).
      Service tc.monitoring.logviewer started. (4000 ms).
      Service com.adobe~FontManagerService started. (4593 ms).
    ServiceManager started for 47938 ms.
    Framework started for 54563 ms.
    SAP J2EE Engine Version 7.00   PatchLevel 109886.44 is running!
    PatchLevel 109886.44 November 17, 2007 10:27 GMT
    >
    Login :57.389: [GC 57.389: [DefNew: 125192K->42625K(131328K), 0.1177039 secs] 129078K->46511K(1004800K), 0.1177899 secs]
    60.213: [GC 60.213: [DefNew: 130177K->36624K(131328K), 0.1019909 secs] 134063K->44865K(1004800K), 0.1020999 secs]
    62.474: [GC 62.474: [DefNew: 124176K->38648K(131328K), 0.1008482 secs] 132417K->46888K(1004800K), 0.1009399 secs]
    66.746: [GC 66.746: [DefNew: 126200K->42040K(131328K), 0.1027034 secs] 134440K->50280K(1004800K), 0.1027940 secs]
    79.914: [GC 79.914: [DefNew: 129592K->41760K(131328K), 0.1082566 secs] 137832K->53026K(1004800K), 0.1083554 secs]
    83.501: [GC 83.501: [DefNew: 129312K->41403K(131328K), 0.1066359 secs] 140578K->55610K(1004800K), 0.1067443 secs]
    84.609: [GC 84.609: [DefNew: 128952K->43776K(131328K), 0.1170661 secs] 143159K->61207K(1004800K), 0.1171621 secs]
    85.804: [GC 85.804: [DefNew: 131328K->36934K(131328K), 0.1093640 secs] 148759K->59382K(1004800K), 0.1094988 secs]
    93.252: [GC 93.253: [DefNew: 124461K->42704K(131328K), 0.1173445 secs] 146909K->65152K(1004800K), 0.1174320 secs]
    96.217: [GC 96.217: [DefNew: 130256K->40910K(131328K), 0.1076070 secs] 152704K->66929K(1004800K), 0.1077113 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    99.226: [GC 99.226: [DefNew: 128462K->35273K(131328K), 0.1083766 secs] 154481K->68349K(1004800K), 0.1084756 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readElement
    102.480: [GC 102.480: [DefNew: 122825K->35659K(131328K), 0.0899413 secs] 155901K->68735K(1004800K), 0.0900270 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.GeneratedComplexType::_loadInto
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readSequence
    104.392: [GC 104.392: [DefNew: 123211K->37812K(131328K), 0.0939406 secs] 156287K->70888K(1004800K), 0.0940273 secs]
    106.588: [GC 106.588: [DefNew: 125364K->40347K(131328K), 0.0999732 secs] 158440K->73423K(1004800K), 0.1000776 secs]
    109.430: [GC 109.430: [DefNew: 127899K->37058K(131328K), 0.1094132 secs] 160975K->75618K(1004800K), 0.1094978 secs]
    111.972: [GC 111.973: [DefNew: 124610K->39109K(131328K), 0.1022987 secs] 163170K->77670K(1004800K), 0.1024141 secs]
    114.920: [GC 114.920: [DefNew: 126661K-&

  • Can't able to deploy webservice to IAS 10.1.2.0(window) by using Jdevloper

    Hi,
    I have got the successful msg in time of connect iAS 10.1.2.0 from Jdev 10.1.3 .
    But when I tried to deploy a simple webservice to ias then I got following deployment message :
    ---- Deployment started. ---- Aug 18, 2009 10:38:47 AM
    Target platform is Oracle Application Server 10g 10.1.2 (Windows) (OracleApplicationServer_Abir).
    Wrote WAR file to C:\Webservice\Project1\deploy\WebServices.war
    Wrote EAR file to C:\Webservice\Project1\deploy\Webservice-Project1-WS.ear
    Invoking DCM servlet client...
    C:\jdeveloper1032\jdevstudio10132\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\jdeveloper1032\jdevstudio10132\jdev\lib\oc4j_remote_deploy.jar http://157.227.124.85:18100/Oc4jDcmServletAPI/ ias_admin **** redeploy C:\OraHome_2 C:\Webservice\Project1\deploy\Webservice-Project1-WS.ear Webservice-Project1-WS OAS
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy C:\OraHome_2 C:\Webservice\Project1\deploy\Webservice-Project1-WS.ear Webservice-Project1-WS OAS
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = 9de37c5546b4f6f0200f5eb44dc8a2c0b7a90d89b533
    Please, wait for command to finish...
    Checking command status...
    Angshuman
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=9de37c5546b4f6f0200f5eb44dc8a2c0b7a90d89b533
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-8)
    #### HTTP return code was -8
    Exit status of DCM servlet client: -8
    Elapsed time for deployment: 16 seconds
    #### Deployment incomplete. #### Aug 18, 2009 10:39:03 AM
    Please help in this regards..

    Run the following in your terminal where you have a sh shell.
    export ORACLE_HOME= <give here the location of Oracle Infrastructure Home>
    cd $ORACLE_HOME
    sqlplus / as sysdba
    ## if you continue to get problems, then see the following file;
    cat $ORACLE_HOME/network/ADMIN/sqlnet.ora
    Check if you have a line with the following attribute:
    SQLNET.AUTHENTICATION_SERVICES
    make sure it is not missing, nor reporting a none value. If it does, change it to the following:
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    Save the file. Now restart infrastructure:
    cd $ORACLE_HOME
    opmn/bin/opmnctl stopall
    opmn/bin/opmnctl startall
    ## now try getting into the database again.
    sqlplus / as sysdba
    hope that helps!

  • Problem in Creating WebService Client using 9.0.3 JD...

    Hi All,
    Thru JDev 9.0.3 webservice,
    1. I try to create proxy class and a sample client to access ASP.NET webservice also i get the following error.
    <HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server
    Error</H1><PRE>Servlet
    Then i created a Java Webservice and hosted in the embedded oc4j server. Then i created a sample client. Then also i get same error as
    follows.
    I user, w2k server, 9i JD 9.0.3, j2sdk 1.4.1.
    Whats the probs. 9.0.3 dont support 1.4.1.
    2. Also one more thing. When i tried to create proxy for asp.net webservice, (Its a webservice to send email which has 6 methods overloaded),
    i get the Proxy Class for ONLY THE LAST METHOD. Rest of the 1st 5 methods are not found. Im able to access this webservice thru axis and thru
    .net also. Only when i created proxy thru 9.0.3, i get like this. So, no probs in my webservice. Some probs in 9.0.3 version. It seems that
    it does't properly create proxy if Method Overloading is done in the webservice.
    3. Also, why the proxy class created in 9.0.3 pass params and returns params as Integer eventhough i used only int in the asp.net webservice
    and in my java webservice created thru JDev 9.0.3
    Yours,
    Sankar.B
    India
    Errror:
    D:\j2sdk140\bin\javaw.exe -client -classpath
    C:\9iJDeveloper903-J2SDK-141\jdev\mywork\XMethodsWebService\CurrencyExchange\classes;C:\9iJDeveloper903-J2SDK-141\jdev\lib\jdev-rt.jar;C:\9iJ
    Developer903-J2SDK-141\jdev\lib\jdev-rt.jar;C:\9iJDeveloper903-J2SDK-141\soap\lib\soap.jar;C:\9iJDeveloper903-J2SDK-141\lib\xmlparserv2.jar;C
    :\9iJDeveloper903-J2SDK-141\jlib\javax-ssl-1_2.jar;C:\9iJDeveloper903-J2SDK-141\jlib\jssl-1_2.jar;C:\9iJDeveloper903-J2SDK-141\j2ee\home\lib\
    activation.jar;C:\9iJDeveloper903-J2SDK-141\j2ee\home\lib\mail.jar;C:\9iJDeveloper903-J2SDK-141\j2ee\home\lib\http_client.jar;C:\9iJDeveloper
    903-J2SDK-141\lib\xmlparserv2.jar;C:\9iJDeveloper903-J2SDK-141\lib\xmlcomp.jar -Dhttp.proxyHost=172.17.56.1 -Dhttp.proxyPort=80
    -Dhttp.nonProxyHosts= id.ws.EmbeddedMathWSStub
    [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type "text/html", must be: "text/xml".
    Response was:
    <HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server
    Error</H1><PRE>Servlet error: Cannot generate Class:
    C:\9iJDeveloper903-J2SDK-141\jdev\system9.0.3.1035\oc4j-config\application-deployments\current-workspace-app\XMethodsWebService-CurrencyExcha
    nge-webapp\temp\__java_statefull_rpc\id\ws\__MathWSStatefullWrapper.java:10: cannot access java.lang.Objectbad class file:
    D:\j2sdk140\jre\lib\rt.jar(java/lang/Object.class)class file has wrong version 48.0, should be 47.0Please remove or make sure it appears in
    the correct subdirectory of the classpath.import java.lang.Object;                 ^1 error</PRE></BODY></HTML>]     at
    org.apache.soap.rpc.Call.getEnvelopeString(Call.java:209)     at org.apache.soap.rpc.Call.invoke(Call.java:268)     at
    id.ws.EmbeddedMathWSStub.Add(EmbeddedMathWSStub.java:66)     at id.ws.EmbeddedMathWSStub.main(EmbeddedMathWSStub.java:34)Process exited
    with exit code 0.

    You are correct, there is a bug logged with JDeveloper 9.0.3 that with JDK 1.4, Web services are not working. See:
    http://otn.oracle.com/products/jdev/htdocs/readme_903.html#ws0
    (while not exactly your situation, I suspect it is related). We are close to releasing JDeveloper 9.0.4 preview which will support JDK 1.4 and should resolve your problem.
    In terms of your second problem, there is a similar bug logged but could I ask you to try again with JDK 1.3.1 to see if a similar issue occurs?
    As for your third question, this is the default behaviour for Oracle9iAS Web Services - int gets mapped as Integer. See:
    http://otn.oracle.com/docs/products/ias/doc_library/903doc_otn/generic.903/b10004/javaservices.htm#1033406
    Hope this helps.
    Mike.

  • Error  in PL/SQL Webservice Creation

    Error in PL/SQL WebService Creation
    We are using Jdeveloper Oracle IDE 9.0.3.9.93.
    I am trying to convert a simple function inside a package whose specification is as follows:
    package opera_util as
    Function get_codes_in_string
    (in_select_statement in varchar2,
    in_separator in varchar2 default ',' ) return varchar2;
    end opera_util;
    This gives me following error
    java.lang.NullPointerException
    void oracle.jdevimpl.webservices.generator.WrapperClassGenerator.wrapTimestamps(oracle.jdeveloper.model.JProject, java.lang.String, java.util.List)
    WrapperClassGenerator.java:417
    java.util.List oracle.jdevimpl.webservices.generator.WrapperClassGenerator.generate(oracle.jdeveloper.model.JProject, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.List, oracle.ide.dialogs.ProgressBar)
    WrapperClassGenerator.java:340
    void oracle.jdevimpl.webservices.generator.SPWebServiceGenerator.generateImpl(oracle.jdevimpl.webservices.wizard.publish.SPPublishModel, oracle.jdevimpl.webservices.util.JavaXSDTypeMap)
    SPWebServiceGenerator.java:234
    void oracle.jdevimpl.webservices.generator.SPWebServiceGenerator.access$1000071(oracle.jdevimpl.webservices.generator.SPWebServiceGenerator, oracle.jdevimpl.webservices.wizard.publish.SPPublishModel, oracle.jdevimpl.webservices.util.JavaXSDTypeMap)
    SPWebServiceGenerator.java:68
    void oracle.jdevimpl.webservices.generator.SPWebServiceGenerator$1.run()
    SPWebServiceGenerator.java:155
    void oracle.ide.dialogs.ProgressBar.run()
    ProgressBar.java:522
    void java.lang.Thread.run()
    Thread.java:484
    Any Ideas?

    Hi,
    Could you re-try publication, running jdevw.exe instead of jdev.exe, please? This will send some extra information to a console.
    I have a feeling something may be going wrong when JPublisher and SQLJ is invoked by the generator, and they both print out errors and warnings to the console. Post the information from the console here and we'll be able to figure out what's going wrong.
    Thanks,
    Alan.

  • RWD error during Configuration of RWD Server: Object Required webservice.js

    We are in the process of Configuring the Server - after installing the Autonomy IDOL/DISH and the RWD Server. We get to the point of entering Company Name - and Product Key, as soon as we click on SAVE we get the error message
    Object Required                          Line 43 - Character 13
    webservice,js
    ==========
    Need help Thank you!
    Guillermo Gomez

    Since we are using 64 bit application the ASP.Net file needs to be forced to use 32 bit because RWD sometimes does not recognize the file during the installation process.
    1. Ensure the uPerform Website points to use port 80 and the Collaboration Server to use port 8080. This can be verified or change by executing the AuthenticationWizard.exe file located in: <InstallPath>\Collaboration\WWW\uPerformWS\ms
    -Click on Start u2013 verify or change the information as needed and ensure the Server DNS Hostname does not have 8080 at the end.
    2. Set the permissions to full rights for all users for the file RWD.uPerform.ServerConfiguration.DLL u2013 located in: <InstallPath>\Collaboration\WWW\uPerformWS\
    3. Delete the VCBS folders in
    <InstallPath>\Collaboration\webapps\
    Re-Start IIS
    Once is back up:
    -     Make sure Web Service Extensions is using ASP.NET v2.05727 (32-bit). Remove or prohibit any other ASP.NET.
    -     Make sure Jakarta Connector is set to allowed if not create a new connector to point to file <InstallPath>\Collaboration\JKConnect\bin\isapi_redirect-1.2.14.dll
    -     Make sure WebDAV is set to allowed
    Inside the websites (iis) right click on uPerform Collaboration and click on properties. Display the tab ISAPI Filters and make sure Jakarta is there and in black font. Any other color (RED) indicates is not connected and you need to delete it from the web services extensions and then add it back in this section u2026 same file location.
    Re-Start IIS
    Once is back up:
    Re-register ASP.NET by executing this file from the command line:
    C:\windows\microsoft.net\framework\aspnet_regiis.exe u2013iru
    Once this is doneu2026 then do:
    C:\windows\microsoft.net\framework\aspnet_regiis.exe u2013ir
    Re-Start IIS
    Ensure the website is back up u2026 and continue with the configuration of the RWD uPerform Server.

  • Broken webservice behavior in CF 7.0.2?

    I've managed to consume a webservice that uses a complex data
    type as one of its input parameters on my
    DEVELOPMENT machine
    (WinXP, CF Dev 7,0,0,91690). I get the following error when I move
    the code up to our
    STAGING server (Win2003,
    CF Standard 7,0,2,142559):
    Error converting CFML arguments to Java classes for web service
    invocation.
    Unable to create web service argument class
    [Ljava.lang.String;. Error: java.lang.InstantiationException:
    [Ljava.lang.String;. Often this is because the web service defines
    an abstract complexType as an input to an operation. You must
    create an actual instance of this type in Java.
    It looks like my development server is creating the propper
    stub objects for the complex types (i.e. class files in the
    C:\CfusionMX7\stubs\ directory) , but the staging server is not.
    I'm hiting the same WSDL from both servers and the complex type is
    clearly defined in the wsdl, so I don't know why one server would
    interpret it correctly and the other can not. Is this a bug in CF
    webservice implementation?
    Can anyone tell me:
    1) How I can get my staging server (Win2003, CF Standard
    7,0,2,142559) to generate the propper stubs
    or
    2) A work around? I know I CAN use wsdl2java.exe to generate
    the stubs manually, I'm just having a hard time with the HOW:
    - I've executed wsdl2java.exe [url-of-wsdl] to create the
    java files
    - From what I've read on the forums, I think I should be able
    to use the code below to compile the java objects into stubs, but
    it doesn't seem to work:
    I can generate the class file for the specific missing stub,
    then move it to the correct directory in cfusionmx7/stubs, but I
    still get the same error[/li]
    If i try to generate stubs for all the java files, I get
    errors.[/li]
    The code I use to compile the java files is listed below:
    javac -source 1.4 -deprecation -classpath
    C:/CFusionMX7/lib/axis.jar;C:/CFusionMX7/lib/xml-apis.jar;C:/CFusionMX7/lib/saaj.jar;C:/C FusionMX7/lib/jaxrpc.jar;.
    C:/CFusionMX7/runtime/bin/com/mycompany/mypackage/util/*.java
    Anyone have any ideas? Of course, to make matters worse, the
    reference I normally use to deal with complex data types in CF has
    gone all 404:
    http://hcc.musc.edu/research/shared_resources/xml_complex_types_to_cf_structure_notes.cfm.
    If anyone knows of a good reference for this material, I'd love to
    see it.
    Thanks all,

    Well, after about a day and a half of troubleshooting, I
    finally figured out how to get it to work. It seemed as if my last
    error had to do with the fact that I had class files for the
    webservice objects scattered around my computer and CF has having
    problems (name collisions, maybe?) creating the stub files it
    needed for the web service invocation.
    This, however, worked:
    1) Update my machine to CF 7.0.2. so I don't have to keep
    uploading to the staging server to test
    2) After doing some more research in the following articles,
    it seemed as if my initial approach (recreating complex object in
    CF structure/array) should have worked:
    http://phillhowson.com/blog/index.cfm/2006/9/1/ColdFusion-and-Web-Services
    http://cfdj.sys-con.com/read/86131.htm
    http://livedocs.adobe.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/web services6.htm
    3) After playing around with syntax, I FINALLY found a
    solution that worked. It wound up being as simple as:
    stArgs.ihatethisfield= arrCodes;
    (see my code above)
    Now why the previous code worked in 7.0.0 and this syntax
    works in 7.0.2, I have no idea.
    But it works now, and that's all that matters.

  • Import WebService in CE 7.2

    Hi All,
    I have created a Simple CAF application in which I have created a custom method which accepts the input and returns the value entered by the user.
    After the operation was completed, the application service was exposed as a WebService. I have tested the WS from the WSNavigator and its working as expected.
    Later, in my WDJ project I tried to import the service as a WS model. I select the option Remote Location/ File System and proceed further. When I entered the URL "http://<domain>:<port>/<path of the WS>". I got a message Inaccessible URL or invalid network settings.
    Then i replaced the <domain> by the IP after which I was able to import the model successfully. I created the necessary bindings, Build and Deployed the application
    But when i run the application, on click of the button where I have called the "execute" method, I get the following message HTTP client, does not have an end point URL
    Please let me know how to correct this problem?
    Regards,
    Poojith MV

    Hi,<BR><BR>it is not posible to import .aru file to new Analyzer, because new Analyzer does not support such a file type.<BR><BR>You need to copy .exe files from new Analyzer computer directory \hyperion\analyzer\utils\migration to old Analyzer computer directory where the .exe files are. Then migrate using this utilities.<BR><BR>Few months ago I had the same problem and I asked on this forum. Someone out there helped me with detailed instructions (sent me the MS-Word file). So I can share the file with you if you need it. But I have tried to attach the file on this forum and I got error: "Page has been moved..." so attachment is not working. I will contact the admin of this forum to repair download/upload attachment. Let me know if you need this word file or not.<BR><BR>Thanks,<BR>Grofaty

  • Calling an .exe  from a webserice

    Hi,
    I have the following requirement.
    Develop a webservice that makes a call to an .exe program running on a server. The exe program when called would return with some output based on the input request made.
    Just wanted to check if this is possible and if yes, how will that be done
    Thanks in advance
    Shekar

    should be possible, if the webservice is running on a webserver with really shitty security settings that allows servlets to run any code on the system.
    Would like to see you stop someone calling "format c:" though, or similarly destructive commands...

  • FIM WebService Connector

    Hi
    I'm struggling with the FIM Web service connector in different areas that i need some help with.
    For starters i just want to let you know that i've worked a great deal with the connector, and learned how to cope with most of the shortcomings and quirks. My work has mostly been for on-premise tasks, i.e. connecting to other on-premise systems.
    Now I am trying to connect to a Web service over the Internet, hence the security setup is significantly different from what I am used to in conjunction with the Web Service Connector.
    I this case the web services is https based and also requires a client certificate for authentication.
    The client certificate part is actually not a problem as the connector supports authenticating using client certificates natively and it works like a charm.
    My problems seems to be around using a https based web service, also that the web service presents itself as supporting both soap and soap12 requests. When I add the web service to the Web Service Configuration Tool, I receive a warning telling that one
    of my endpoints has a unsupported (custom) binding, that is not a basic http binding. I actually discover two endpoints that seem alike but the failing one is based on soap12. I am not able to remove the failing endpoint within the Web Service Configuration
    Tool and successive attempts to configure a Management Agent in FIM Sync Manager using this Web Service Project fails as unsupported bindings are used.
    According to the hotfix update 1.0.419.911 for the FIM WebService Connector - this update should address certain limitations towards custom bindings, so I tried to implement this update.
    But this gave another headache - after updating the Web Service Connector (actually uninstalling the old one, and installing the new one - as there seems to be some versioning mishaps) I am not able to start the Web Service Configuration Console as i am
    presented with the following error:
    Error occurred while running the tool
    Could not load flie or assemply 'Microsoft.MetaDirectorySericesEx,Version=4.1.2.0...etc...
    The error is: Strong name validation failed.
    I've tried several things to address the issue, i.e.:
     - Copying the Microsoft.MetaDirectorySericesEx.dll file from other folder to the UIShell\Web Service Configuration folder as the versions was not alike - resultet in manifest problems.
     - Turning off Strong Name Checking for the library in question - the Web Config tools has able to start but crashed when used.
     - Upgraded to newest build of FIM Sync (4.1.3559) - still not working.
    So - my actual questions are:
     - Does the FIM Web Service Connector support accessing web services that are https based in either the old (5.3.407.0) version or the new one (hotfix update 1.0.419.911) ?
     - What about soap12?
     - Did anyone succeed in implementing the new Web Service Connector update?
     - Any hints on solving the problem I encountered with the Web Service Connector ?
    Any input highly appreciated.
    Best regards
    Søren

    Got the Config Tool running today - yay!
    The problem was a missing entry in the config file of the Config tool (WSConfigTool.exe.Config).
    The Config tool assumed that the version of the Microsoft.MetadirectoryServicesEx.dll library registered was an older version as the current registered. The current version is depending on the build level of FIM.
    To fix the problem open the .config file of the FIM Sync Service (C:\Program Files\Microsoft Forefront Identity Manager\2010\Synchronization Service\Bin\miiserver.exe.config) and copy the section shown below, please note that the newVersion parameter varies
    depending on your FIM build level.
    <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
    <assemblyIdentity name="Microsoft.MetadirectoryServicesEx" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="3.3.0.0-4.1.3.0" newVersion="4.1.4.0" />
    </dependentAssembly>
    <probing privatePath="Assemblies" />
    </assemblyBinding>
    </runtime>
    Open the .config file of the WS Config Tool (C:\Program Files\Microsoft Forefront Identity Manager\2010\Synchronization Service\UIShell\Web Service Configuration\WSConfigTool.exe.Config) and paste the section into the file just before the closing of the
    Configuration section </configuration>.
    This will redirect the WS Config Tool to use the version of the library that is currently registered in the assembly cache.
    Towards the problem with multiple bindings in a single web service - this seems to to a problem still :-(.
    Rgds
    Søren

  • External SOAP client Accessing Webservice using built in Java Data type

    We have built a webservice and deployed it on WLS. We accessed this from a swing
    client it works fine.The webservice methods uses non-built in JAVA data types
    as parameters.These are Value Objects and the JAVA Serializer and Deserializer
    classes are generated using Ant task itself.The client coding uses Value objects
    given by the Client_jar (generated using <Clientgen> ant task) to pass to the
    webservice. We dont want to go by this way.Is there anyway were in we can pass
    parameters to the method which expects non-built in java datatypes?
    Why i am asking this is, i want to know how an external client (.Net client )
    will be able to exceute my webservice (i.e., passing the required Object which
    the method is expecting)?

    Hi Anish,
    Well first off, your web service doesn't send or receive "objects". It only sends
    and recieves XML, which is in turn converted to/from Java objects at invocation
    time. Second, a .NET (or Perl, or Python, or C++) client will be able to call
    your web service, because the wsdl.exe tool (for .NET) will generate "programming
    language specific" objects from the <types><schema> elements, in the WSDL of your
    web service :-) The wsdl.exe tool will create C# objects from the WSDL, that will
    convert XML to/from C# when your web service is called. That's the beauty of XML
    schema - it's a "universal typing system", so it's not tied to a particular programming
    language. The only issue is whether or not the web services platform vendor's
    XML Schema/WSDL processor, can successfully process the WSDL. Some vendors have
    more complete implementations of the WSDL and XML Schema specs than others, so
    expect varying success here. The one in WLS 7.0 is pretty good, so you shouldn't
    have too many problems consuming WSDL generated by .NET tools (or any other tool
    for that matter).
    Regards,
    Mike Wooten
    "Anish" <[email protected]> wrote:
    >
    We have built a webservice and deployed it on WLS. We accessed this from
    a swing
    client it works fine.The webservice methods uses non-built in JAVA data
    types
    as parameters.These are Value Objects and the JAVA Serializer and Deserializer
    classes are generated using Ant task itself.The client coding uses Value
    objects
    given by the Client_jar (generated using <Clientgen> ant task) to pass
    to the
    webservice. We dont want to go by this way.Is there anyway were in we
    can pass
    parameters to the method which expects non-built in java datatypes?
    Why i am asking this is, i want to know how an external client (.Net
    client )
    will be able to exceute my webservice (i.e., passing the required Object
    which
    the method is expecting)?

  • Call Webservice published by Biztalk web service wizard failed.

    Dears
    I have met an werid issue when call a webservice publish be biztalk.
    in fact I have publish three web services totally.  the problem is two of them are working, and third is not.
    this is the iis log captured. I found 500 error, has any one met this issue and know about the root cause?
    #Date: 2013-12-12 07:37:45
    #Fields: date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status time-taken
    2013-12-12 07:37:45 ::1 GET /EOrdering_Order_Proxy/ - 80 - ::1 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/6.0;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+.NET4.0C;+.NET4.0E)
    200 0 0 1885
    2013-12-12 07:37:53 ::1 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx - 80 - ::1 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/6.0;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+.NET4.0C;+.NET4.0E)
    200 0 0 1763
    2013-12-12 07:38:01 ::1 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx op=SubmitOrderOrConfirmation 80 - ::1 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/6.0;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+.NET4.0C;+.NET4.0E)
    200 0 64 5241
    2013-12-12 07:38:01 ::1 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx op=SubmitOrderOrConfirmation 80 - ::1 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/6.0;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+.NET4.0C;+.NET4.0E)
    200 0 0 680
    2013-12-12 07:38:03 ::1 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx op=SubmitOrderOrConfirmation 80 - ::1 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/6.0;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+.NET4.0C;+.NET4.0E)
    200 0 0 98
    2013-12-12 07:39:10 10.44.23.216 OPTIONS /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx - 80 - 10.44.23.216 - 200 0 0 0
    2013-12-12 07:39:10 10.44.23.216 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx/_vti_bin/ListData.svc/$metadata - 80 - 10.44.23.216 - 500 0 0 8
    2013-12-12 07:39:10 10.44.23.216 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx/$metadata - 80 - 10.44.23.216 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.18052) 500 0 0 6
    2013-12-12 07:39:10 10.44.23.216 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx - 80 - 10.44.23.216 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.18052) 200 0 0 5
    2013-12-12 07:39:10 10.44.23.216 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx disco 80 - 10.44.23.216 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.18052) 200 0 0 22
    2013-12-12 07:39:10 10.44.23.216 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx/_vti_bin/ListData.svc/$metadata - 80 - 10.44.23.216 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.18052)
    500 0 0 70
    2013-12-12 07:39:10 10.44.23.216 GET /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx wsdl 80 - 10.44.23.216 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.18052) 200 0 0 435
    2013-12-12 07:39:10 10.44.23.216 POST /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx - 80 - 10.44.23.216 - 500 0 0 338
    2013-12-12 07:39:11 10.44.23.216 POST /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx/mex - 80 - 10.44.23.216 - 500 0 0 679
    this issue is samiliar with
    http://social.msdn.microsoft.com/Forums/en-US/8984be48-3221-4ca7-9e60-00cc51e9d46a/request-format-is-unrecognized-for-url-unexpectedly-ending-in-metadata?forum=biztalkgeneral
    I also saw the event log metioned in that artilce. but I don't understand the root casue and solution. can anyone kindly help?

    This is the Event log detail, has any on met this issue before?
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 12/12/2013 4:21:56 PM
    Event time (UTC): 12/12/2013 8:21:56 AM
    Event ID: 7f0cb6e13bc8411e8f9ab5fa4d3c1a50
    Event sequence: 4
    Event occurrence: 1
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/1/ROOT/EOrdering_Order_Proxy-1-130313101166971105
        Trust level: Full
        Application Virtual Path: /EOrdering_Order_Proxy
        Application Path: C:\inetpub\wwwroot\EOrdering_Order_Proxy\
        Machine name: CNSHABPMQADB01
    Process information:
        Process ID: 3660
        Process name: w3wp.exe
        Account name: SNCORP\sgbpm01
    Exception information:
        Exception type: InvalidOperationException
        Exception message: Request format is unrecognized for URL unexpectedly ending in '/_vti_bin/ListData.svc/$metadata'.
       at System.Web.Services.Protocols.WebServiceHandlerFactory.CoreGetHandler(Type type, HttpContext context, HttpRequest request, HttpResponse response)
       at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
       at System.Web.Script.Services.ScriptHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String pathTranslated)
       at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Request information:
        Request URL: .......................
        Request path: /EOrdering_Order_Proxy/WebService_EOrdering_Order.asmx/_vti_bin/ListData.svc/$metadata
        User host address: ::1
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: SNCORP\sgbpm01
    Thread information:
        Thread ID: 6
        Thread account name: SNCORP\sgbpm01
        Is impersonating: False
        Stack trace:    at System.Web.Services.Protocols.WebServiceHandlerFactory.CoreGetHandler(Type type, HttpContext context, HttpRequest request, HttpResponse response)
       at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
       at System.Web.Script.Services.ScriptHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String pathTranslated)
       at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Custom event details:

Maybe you are looking for

  • How do you change pending event path post mig to new server?

    We upgraded from NSM 2.5 to 3 which necessitated a change of server. I migrated my polices (50+) so as not to have to recreate them as well as my pending events. The new users point to a new vault and I copied the old vaulted users there also. My iss

  • What is the maximum number of globals allowed in one global file?

    I remember there was a limit discussed in a LabVIEW class, but I can't remember it. But I know I exceeded the number on one project and VERY WEIRD things happened. Does anybody know this number? Thanks Much

  • The installer has encountere​d an unexpected error installing this package F-Secure Client Security

    Hello there :  whe just buy a T61 after windows xp finish install i try to install  F-Secure Client Security and the install fails i log the following : i try almost everything , can some one help? MSI (c) (D4:10) [14:19:03:929]: Enabling baseline ca

  • Transports in Portal

    Hi I am new to portal(Junior),With the help of all experts and help doc's i managed to create Roles pages worksets tabs and Dashboards in VC I created the above objects in Portal to Publish BW reports into Portal and also Customised the Them to inclu

  • Offers not to leave BT

    I am looking to leave BT when my current broadband contract ends in Mar 2011. Although my special offer broadband package cost of £15.45pm is reasonable - I can still get a simiilar package cheaper elsewhere - and more importantly - the current landl