Trying to create Managed Server service in Win 2003 does not work

Hello ... I've created an AdminServer service with no problems:
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set USERDOMAIN_HOME=D:\Apps\Middleware\user_projects\domains\ClassicDomain
set SERVER_NAME=AdminServer
set PRODUCTION_MODE=true
set MEM_ARGS=-Xms256m -Xmx512m
call "D:\Apps\Middleware\user_projects\domains\ClassicDomain\bin\setDomainEnv.cmd"
call "D:\Apps\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
ENDLOCAL
I can get the AdminServer to start and get into the Admin Console.
I'm trying to create a service for the WLS_Forms Managed Server and can create the service, which does start ... but it does not start my WLS_Forms Managed Server:
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set USERDOMAIN_HOME=D:\Apps\Middleware\user_projects\domains\ClassicDomain
set SERVER_NAME=WLS_Forms
set PRODUCTION_MODE=true
set
JAVA_OPTIONS=-Dweblogic.Stdout="D:\Apps\Middleware\user_projects\domains\ClassicDomain\stdout.txt" -Dweblogic.Stderr="D:\Apps\Middleware\user_projects\domains\ClassicDomain\stderr.txt"
set ADMIN_URL=http://localhost:7001
set MEM_ARGS=-Xms1024m -Xmx1024m
call "D:\Apps\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
ENDLOCAL
Both services/servers reside on the same box.
Can someone lend a hand and indicate what is failing?
Thanks

That is not typically the case since you could normally also use a start script like:
<DOMAIN_HOME>/bin/startManagedServer(.sh/.cmd) managedServerName
One thing to note is that Node Manager is the mechanism by which the Admin Console is able to start the managed servers. The Admin Server has not mechanism to do this directly, it is indirectly done via Node Manager.
You should ask in the Forms / Reports forum for how that product is typically started with WebLogic in 11g.
Forms

Similar Messages

  • When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the o

    When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the original in my work folder. I need to know how to stop this from happeing and get it back to the way it has been working he last 6 months since i purchased this program.

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • I am trying to create a new Apple password but Apple does not recognize my one and only email so stuck on a merry-go-round. Any suggestions?

    I am trying to create a new Apple password but Apple doe not recognize my one and only email address, so I'm stuck on this merry-go-round. Any suggestions?

    inabird
    you haven't told us what "Park" the "merry-go-round" is in
    tell us what actions you take to get Apple not to recognize your email address...
    Are you formatting it correctly? - username @ someDomain .com <- NO Spaces (I did it so the system wouldn't make an email link out of it)
    Tell us what happens when you realize  that Apple is "not recognizing" your email. What message do you get, exactly? Take screenshot of the entire screen for context
    ÇÇÇ

  • How do I remove or delete files within a document folder? I have tried dragging the files to the trash and it does not work

    How do I remove or delete files and image files within a document foler?  I have tried dragging the files to the trash, but that is not working. 

    Right-click (or ctrl-click) on a file. If the "move to Trash" option is greyed out, select "get info" and read the permissions at the bottom of the info window.
    Wat are they?
    Do the same for the enclosing folder - what permissions does that have?

  • I am trying to create a idvd project but the it does not while encoding the films, Why ?

    I am trying to create an iDVD project. I create to sub menus and put small films in each sub menu. When it starts to create the project, while encoding the films, at one point to time it just stops abruptly. Why. I fail to understand. I I tried twice, and it happened the same. I have created the projects in the past, but it has worked just fine. This time it is behaving rather weird.
    I went on to see the report and I feels it stops with a 32 bit film. I may be wrong, but could you please help ?

    See  Bengt Wärleby's post in this topic for questions relating to encoding problems: Stage 4 Multiplexing - Media error in...: Apple Support Communities. He's the most knowledgeable if that area.
    OT

  • Consuming Web Services in 11.2 does not work ??

    Hello,
    Did anyone manage to call a Web Service from Oracle 11.2 database?
    We wanted to call a web service from Oracle, so for example if I execute:
    SELECT add_numbers(1, 5) FROM dual;
    from my database, I get the result 6.
    Cool thing is that the add_numbers function is not in my database, but in a database somewhere in the cloud, and I access the function as a web service.
    Oracle provides step-by-step documentation how to do it, but we couldn't make it working by following the docs. It was done on a clean Oracle 11.2 database install.
    We followed the instructions from: http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    The main part of the job is to:
    1) Load the java classes into the Oracle database by issuing the following command: % loadjava -u sys\<password> -r -v -f -genmissing dbwsclientws.jar dbwsclientdb11.jar
    2) Install the UTL_DBWS package into the database (it is not installed by default in 11g):
    SQL> @?/sqlj/lib/utl_dbws_decl.sql
    SQL> @?/sqlj/lib/utl_dbws_body.sql
    We loaded the classes into the SYS user and installed the UTL_DBWS package into the SYS user as well.
    3) Create a function that uses UTL_DBWS package to call a web service: http://www.oracle-base.com/articles/10g/utl_dbws10g.php
    However, when we tried to run the add_numbers function, it returned an error from the UTL_DBWS package, from the create_service function (line 190), the function returned that the java class that it calls does not exist:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
    ORA-06512: at "SYS.UTL_DBWS", line 193
    ORA-06512: at "SYS.UTL_DBWS", line 190
    ORA-06512: at "SYS.ADD_NUMBERS", line 25
    Line 193 in UTL_DBWS package goes like this:
    function create_service_proxy(wsdl_Document_Location VARCHAR2, service_Name VARCHAR2) return SERVICE
    as language java
    name 'oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String,java.lang.String) return long';
    However, this makes no sense because the class is loaded:
    select dbms_java.longname(object_name), status, object_type from all_objects where
    object_name like '%DbwsProxy%'
    and object_type = 'JAVA CLASS'
    Output:
    oracle/jpub/runtime/dbws/DbwsProxy$1;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy$CallProxy;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy$ServiceProxy;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy;VALID;JAVA CLASS
    Anyone knows the cause of the exception?
    Edited by: user8938058 on Feb 1, 2011 2:08 AM

    I had the same problem. For me below code works:
    CREATE OR REPLACE FUNCTION SYS.add_numbers (p_int_1 IN NUMBER,
    p_int_2 IN NUMBER)
    RETURN NUMBER
    AS
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname UTL_DBWS.qname;
    l_port_qname UTL_DBWS.qname;
    l_operation_qname UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    BEGIN
    l_wsdl_url := 'http://www.oracle-base.com/webservices/server.php?wsdl';
    l_namespace := 'http://www.oracle-base.com/webservices/';
    l_service_qname := UTL_DBWS.to_qname(l_namespace, 'Calculator');
    l_port_qname := UTL_DBWS.to_qname(l_namespace, 'CalculatorPort');
    l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ws_add');
    l_service := UTL_DBWS.create_service (
    service_name => l_service_qname);
    l_call := UTL_DBWS.create_call (
    service_handle => l_service);
    utl_dbws.set_target_endpoint_address(l_call, 'http://www.oracle-base.com/webservices/server.php');
    utl_dbws.set_property( l_call, 'OPERATION_STYLE', 'rpc');
    l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    <ws_add xmlns="' || l_namespace || '">
    <int1>' || p_int_1 || '</int1>
    <int2>' || p_int_2 || '</int2>
    </ws_add>');
    l_xmltype_out := UTL_DBWS.invoke(call_Handle => l_call,
    request => l_xmltype_in);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN l_return;
    END;
    It seems that the problem is with class oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String,java.lang.String) return long
    I rewrite your example that it uses oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String) return long
    In the database log I get this stacktrace:
    *** 2011-06-03 11:22:37.390
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3b689a27
    WSDL: http://www.oracle-base.com/webservices/server.php?wsdl
    ERROR: java.lang.ExceptionInInitializerError
    java.lang.ExceptionInInitializerError
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readDocument(WSDLReaderImpl.java:309)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:275)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:462)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:440)
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:161)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:167)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:196)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:181)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:114)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Caused by: java.util.MissingResourceException: Can't find oracle.j2ee.ws.wsdl.ORAWSDLMessageBundle bundle
         at java.util.logging.Logger.setupResourceInfo(Logger.java:1285)
         at java.util.logging.Logger.<init>(Logger.java:203)
         at java.util.logging.Logger.getLogger(Logger.java:271)
         at oracle.j2ee.ws.wsdl.ORAWSDLMessages.<clinit>(ORAWSDLMessages.java:14)
         ... 14 more
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3b689a27
    WSDL: http://www.oracle-base.com/webservices/server.php?wsdl
    ERROR: java.lang.NoClassDefFoundError
    java.lang.NoClassDefFoundError
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readDocument(WSDLReaderImpl.java:309)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:275)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:462)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:440)
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:161)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:167)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:196)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:181)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:114)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Maybe somebody explain why if I use function create_service(wsdl_Document_Location URITYPE, service_Name QNAME)
    RETURN SERVICE it throws ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
    and when I use function create_service(service_Name QNAME) RETURN SERVICE it works ?
    Please help
    Edited by: user10200937 on 2011-06-03 03:14

  • Connect is not working on Hyper-V Manager on Windows 8.1 ( vmconnect does not work )

    Hi all,
    I have been running Windows 8.1 and in Hyper-V Manager, i can see 2 VM ( 1 Linux-Ubuntu , 1 Win 7 ) for couple of months.
    Few days ago as usual i wanted to connect one of them while they were running but it did not work. I tried actions below already:
    - Checked the event logs and they were saying vmconnect is crashing
    Faulting application name: VmConnect.exe, version: 6.3.9600.16384, time stamp: 0x5215cae5
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.17415, time stamp: 0x54505737
    Exception code: 0xe0434352
    Fault offset: 0x0000000000008b9c
    Faulting process id: 0x6c0
    Faulting application start time: 0x01d02e59f75297d7
    Faulting application path: C:\WINDOWS\system32\VmConnect.exe
    Faulting module path: C:\WINDOWS\system32\KERNELBASE.dll
    Report Id: 351cf3fd-9a4d-11e4-beaf-7446a0bad879
    Faulting package full name:
    Faulting package-relative application ID:
    =================================
    Application: VmConnect.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.ArgumentException
    Stack:
       at Microsoft.Virtualization.Client.Interop.IMsRdpClientNonScriptable3.set_NegotiateSecurityLayer(Boolean)
       at Microsoft.Virtualization.Client.InteractiveSession.RdpViewerControl.SetSecureModeOn()
       at Microsoft.Virtualization.Client.InteractiveSession.RdpViewerControl.CreateRdpClient(Boolean)
       at Microsoft.Virtualization.Client.InteractiveSession.RdpViewerControl..ctor(Microsoft.Virtualization.Client.InteractiveSession.RdpConnectionInfo)
       at Microsoft.Virtualization.Client.InteractiveSession.InteractiveSessionForm..ctor(Microsoft.Virtualization.Client.InteractiveSession.RdpConnectionInfo)
       at Microsoft.Virtualization.Client.InteractiveSession.VmisApplicationContext.TryParseCommandLine(System.String[])
       at Microsoft.Virtualization.Client.InteractiveSession.Program.Main(System.String[])
    =================================
    - Stop antivirus Avira, remove Hyper-V, restart add Hyper-V again, restart
    - reboot, shutdown computer
    - add new VM, delete existing one
    -add/delete/modify virtual swtich and add/delete/modify virtual switch accordingly the connected VM
    - restart Hyper-V Management services from services.msc
    I dont know what is going on... When i open Hyper-V Manager i can start/stop VMs and i can see from preview that they are running.

    Hi all,
    A
    After few months, problem occurred again and i could not install the windows from the scratch over and over again.
    I started searching problem online and eventually i found the FIX.
    Looks like Registry Entries are getting screwed up somehow.
    My "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProvider" was looking exactly as below:
    ", schannel.dll"
    And i made it as below:
    "msapsspc.dll,
    schannel.dll, digest.dll, msnsspc.dll, credssp.dll"
    The solution for the other person in the link ( cannot share link since site does not allow me to ) as a source was only missing "credssp.dll" whereas i was missing everything except "schannel.dll". Strange...
    ============================
    Adding credssp.dll to the list of SecurityProviders in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders
    fixed it for me. 
    My full registry entry now reads "msapsspc.dll,
    schannel.dll, digest.dll, msnsspc.dll, credssp.dll"
    ============================

  • RFC works but web service for that RFC does not work..weird??

    hi all,
    I created an RFC enabled function module to create a Sales Order in SAP CRM for both for Varinat Configurable and Normal Materials.
    The RFC Works well...if i test it..it creates an order and if i go and check the sales order in CRM GUI. i find that sales order is perfect with the configuration data for the configurable items..
    Now i created a Web service for this RFC by calling the Web service creation wizard.
    Now i am testing the Web service in SOAMANGER T-code and the sales order is created and weird thing the configuration data is missing for Varinat configurable item..
    But i dont encounter this problem if i am testing the RFC directly
    What could be wrong...why is my web service behaving weird?
    I am dying to find this out..did any body enocunter this situation befor ..please help

    Sure Oliver..
    I put a break point using external debugger and when i was testing the Web service in SOAMANAGER..
    i could then land into ABAP debugger.
    There in my RFC i put a logic such that i diffenetiate between VC and Non-VC items and fill the Charateristic Values only if it is aVC item.
    I saw that the IF condition was not executing as they suddenly changed the material structure in ECC and it reflected in CRM.
    SO i am inputting 18 digits of material no like '000000000000000001' for '1'...but the if condition was checking against 1 =1 so that loop never executed and chara values are not getting filled.
    But if i test RFC in se37 ..it works as i am inputting 1...
    Since Web service works with XML (WSDL) need to be very careful with the format in which data is inputted and the format in which the logic we wrote in RFC works.
    Once again ..thanks to all people who helped me with the answers...
    Regards,
    Jessica Sam

  • I am trying to create a website online. The sitebuilder does not have it's navigation bar. It does with Internet Explorer

    I am using 2 website builders online -Leagueapps and Teamthing - to build a sports league management site. Both have wysiwyg pagebuilders. Both are missing the navigation/menu bar.
    I tried Internet Explorer and the navigation/menu bar is there. However I get lots of pop up advertisements even though pop up blocker is enabled.
    I prefer Firefox as a browser and would welcome any advice as to how to rectify this glitch.

    Firefox needs 32-bit plugins, so you'll need to install 32-bit Java for Firefox.
    No, you can't change Firefox from 32-bt to 64-bit. There is a Nightly 64-bit version (alpha) of Firefox, but it is used only to test for regressions until development is resumed.

  • TS3276 My mail will not let me send mail and I seem to have lost my "Send" button  I have to look under messages to find Send. I spent two hours with my service provider last evening trying to fix this issue and now today it does not work again, what did

    I suddenly cannot send mail, I get the message I am not connected to my provider  I seem to remember I had a send button of a paper airplane on my mail page and now I have to look under messages to find the send

    Please describe in detail what happened when you took all the applicable steps in the support article that led you here. That's the starting point for any further efforts to solve the problem.

  • Web Service Test in SE80 does not work with internal Table

    Hello,
    I have created a web server based on a function module. It works fine when the server is invoked from outside (.Net or SOAPUI).
    However, when I test it in SE80, (open the Server and then F8), it shows error message:
         Access to the table ref. node 'Y02VSI_CAE_CONDITIONITEM' outside a loop
    (Germany Zugriff auf den Tabellen-Ref-Node 'Y02VSI_CAE_CONDITIONITEM' außerhalb einer Schleife )
    The test xml is generated from SAP, I just fill the data as following:
    This XML is absolute correct. Why item ('Y02VSI_CAE_CONDITIONITEM) is outside a loop?
    Is it a bug from SAP?
    Thanks in advance!
    Regards
    Dianlong

    Hi Dianlong,
    Please check if SAP note 1132501 is relevant for your ECC release. If you apply the note, you may have to re-generate the web service from the function module.
    Regards, Trevor

  • Consuming Web Services in 11.2 does not work (UTL_DBWS)

    Hello
    i read some documents for consuming web services on the internet , but i get an error when i call add_numbers function as follows:
    i connected on WSUSER , then
    SQL> select add_numbers(1,3) from dual;
    The Error message is:
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
    ORA-06512: at "WSUSER.UTL_DBWS", line 193
    ORA-06512: at "WSUSER.UTL_DBWS", line 190
    ORA-06512: at "WSUSER.ADD_NUMBERS", line 25"
    I use the following steps to setup the UTL_DBWS :
    1-     Create new user 'WSUSER'
    2-     Run the UTL_DBWS scripts ( utl_dbws_decl.sql , utl_dbws_body.sql) on WSUSER.
    3-     Execute this command
    loadjava -u scott/tiger -r -v -f -genmissing dbwsclientws.jar dbwsclientdb11.jar
    4-     Log in as sys and grant these privileges to our new user:
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxySet','write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxyHost', 'write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxyPort', 'write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission', 'accessClassInPackage.sun.util.calendar','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission','getClassLoader','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.net.SocketPermission','*','connect,resolve');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','*','read,write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission','setFactory','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission', 'createClassLoader', '' )
    5-     Create add_numbers function on wsuser to test utl_dbws:
    CREATE OR REPLACE FUNCTION add_numbers (p_int_1 IN NUMBER,
    p_int_2 IN NUMBER)
    RETURN NUMBER
    AS
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname UTL_DBWS.qname;
    l_port_qname UTL_DBWS.qname;
    l_operation_qname UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    BEGIN
    l_wsdl_url := 'http://www.oracle-base.com/webservices/server.php?wsdl';
    l_namespace := 'http://www.oracle-base.com/webservices/';
    l_service_qname := UTL_DBWS.to_qname(l_namespace, 'Calculator');
    l_port_qname := UTL_DBWS.to_qname(l_namespace, 'CalculatorPort');
    l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ws_add');
    l_service := UTL_DBWS.create_service (
    wsdl_document_location => URIFACTORY.getURI(l_wsdl_url),
    service_name => l_service_qname);
    l_call := UTL_DBWS.create_call (
    service_handle => l_service,
    port_name => l_port_qname,
    operation_name => l_operation_qname);
    l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    <ws_add xmlns="' || l_namespace || '">
    <int1>' || p_int_1 || '</int1>
    <int2>' || p_int_2 || '</int2>
    </ws_add>');
    l_xmltype_out := UTL_DBWS.invoke(call_Handle => l_call,
    request => l_xmltype_in);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN l_return;
    END;
    6-     Test the function
    Select add_numbers(1,2) from dual
    on the test i get the error message :
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
    ORA-06512: at "WSUSER.UTL_DBWS", line 193
    ORA-06512: at "WSUSER.UTL_DBWS", line 190
    ORA-06512: at "WSUSER.ADD_NUMBERS", line 25
    anyone have an idea to resolve this error .
    thanks alot

    Hi.
    Looking at the code, it seems it is my article you are asking about.
    http://www.oracle-base.com/articles/10g/utl_dbws10g.php
    I've just run through it on an 11.2 instance and it works fine for me.
    Make sure your server has access to the Internet and make sure the java classes are loaded successfully.
    Cheers
    Tim...

  • Managing table titles in FrameMaker 12 does not work

    I have a mysterious problem in FrameMaker 12. When creating a table I am not able to move the table title. When changing the setting to below or above or whatever and pressing Apply nothing happens. The feature works allright in FrameMaker 11. I have tried with both existing and new documents and the it doesn't matter. I can not do anything with the title position of tables.
    Are anybody else expiriencing the same problem ?
    regards
    Bjørn

    I don't think it ever was officially documented as the Help for reformatting tables since FM8 states:
    To redefine a table format:
    1. Click in a table whose format you want to redefine, and choose Table > Table Designer. If the table you click in has format overrides, these overrides--not the catalog format's definition--appear in the Table Designer.
    It does seem odd though that in FM12 with the table selected via the anchor, the Designer does show any overrides applied, yet one cannot apply the override this way. Something has changed and it may be an unintended side-effect of something else. What the overall implication for this is unknown, but the programming team should be made aware of this.

  • How can I download adobe flash for my 2006 imac OS 10.4.11? Lost it recently and repeated attempts manage to download but it then does not work.

    How can I download adobe flash for an imac intel using 10.4.11? This disappeared recently and although I go to adobe and download successfully, when I try to access video on web it says I need to download adobe. Very frustrating. Can anyone help?

    Looking at Adobe's site there is version 10.3 for Intel Macs running OSX 10.4 or 10.5.  There is version 11 for Macs running OSX 10.6 or newer.  Most web sites don't really need the newest FlashPlayer, but if you are trying to view one that really does intensive video then maybe it does require Flash 11.  You aren't very specific as to which exact error message you are seeing.
    If a site does require FlashPlayer 11 then you will have to upgrade your operating system.

  • Records Management Center 'Submit a Record' webpart does not work

    So I built a records management center for our HR documents and it has been working great until this morning.
    Suddenly the 'Submit a Record' webpart that came default with the page no longer works, it just refreshes the page when used.  Any help in fixing the webpart would be appreciated, and failing that if I could get a link or instructions on how to make
    a new one that would help too.

    Hi MSGX, I'm guessing something may have been changed on the administration end. Check the following link for what to look for and possible fixes (ignore the error messages, I think your problem is similar and you're just not seeing them):
    http://sharepoint-mattharmon.blogspot.com/2013/02/issues-submitting-to-records-centre.html
    cameron rautmann

Maybe you are looking for

  • Oracle Identity Manager 9.1.0.2 and Oracle Weblogic server 11g R1 b(10.3.1)

    Hi, can we Install Oracle Identity Manager 9.1.0.2 version on Oracle Weblogic server 11h R1 b(10.3.1)? Is it OIM 9.1.0.2 compatible to install on Oracle Weblogic server 11h R1 b(10.3.1). Early response is appreciated

  • SAP PI 7.3 - initial setup Configuration wizard

    Hi Experts, While running the initial setup Configuration wizard.,facing the following issue. Thanks in advance Exception Class: com.sap.tc.lm.ctc.metamodel.exception.ActionExecuteException Exception Message: Not able to load Function PRGN_J2EE_CREAT

  • OCI calls with hardcoded literals

    Hi All, I am on Oracle v11.2.0.2 on RedHat. Oracle client 11.2.0.3 used by OCI client. We have a third party software running on our database. The component I want to discuss here is, batch processes written using OCI running on another Linux node. T

  • Unix command output to a TextArea

    Hi, I would like to use the contents of the variable >>line<< to be displayed in a JTextArea in another class within the same package. Code: public class HostAction implements ActionListener { static String line; public void actionPerformed(ActionEve

  • Configuring ODI to use Fusion Middleware OBIA 11.1.1.7.1 Installation

    Hi, I am trying to install OBIA 11.1.1.7.1 in Windows 2008. All went well , upgraded weblogic to 10.3.6 When I run the following command create the wallet files, The command used : c:\Middleware\Oracle_BI1\common\bin\wlst.cmd c:\Middleware\Oracle_BI1