Error in remote debugging pl/sql with JDeveloper 10.1.3

I'm doing remote debugging of some of my pl/sql packages with JDeveloper and I get the following error:
DECLARE
ERROR at line 1:
ORA-00600: internal error code, arguments: [15419], [severe error during PL/SQL
execution], [], [], [], [], [], []
ORA-06544: PL/SQL: internal error, arguments: [2603], [], [], [], [], [], [],
ORA-06553: PLS-707: unsupported construct or internal error [2603]
When I run this code without the debugger, everything works fine.
Any idea how to solve this problem?
Thanks and kind regards
Uwe

Hi Lee,
thanks for your reply.
My java_pool_size is 32M, and I found out that this seems to be sufficient (means, the pl/sql internal error does not show up) as long as some of my pl/sql packages are not compiled in DEBUG mode.
The pl/sql package I'm debugging are owned by user A and it calls procedures of a pl/sql package that is owned by a different user B. Calling B's procedures from within A causes the error, if the packages of B are compiled in DEBUG mode. If they are compiled ordinary, debugging A's packages works fine, even with the small java_pool_size.
During the checks I repeately increased java_pool_size up to 256M, but the problem was persisting, as long as B's packages were compiled DEBUG.
As I get the whole picture only if A's and B's packages are debugged together, I like to ask for further help.
Thanks and Kind Regards
Uwe

Similar Messages

  • Error while generating wrapper pl/sql with JDeveloper 10.1.3 (production)

    Hello,
    I'm generating a webservice from pl/sql package which returns a collection.
    JDeveloper generates wrapper pl/sql which gives errors when executed in the database because it consists of code like:
    PROCEDURE "NAME"$PROC_NAME_A
    The " creates database errors. When i remove these " the packages compiles.
    But when i insert the service based upon this procedure, I get an "PLS-00103: Encountered the symbol "$" when expecting something else" error.This looks like the same code is inserted again.
    Anyon an idea to get rid of these problems?
    Regards,
    Ruben Spekle

    I'm having the same problem. Did anyone ever help you, or have you resolved this yet?

  • How do I connect the debugger for remotely debugging PL/SQL?

    Hi everyone,
    Remotely debugging PL/SQL from JDeveloper and SQL Developer is something I have tried unsuccessfully to do.
    The steps I took were to right-click my connection, select Remote Debug... and specify "4000" for the Port and "n.n.n.n" for the Local address which seems to correctly start the listener. (I used ipconfig to double-check the address.) Then, I run the anonymous block you see below.
    begin
    dbms_debug_jdwp.connect_tcp( 'n.n.n.n', 4000 );
    end;
    But, I always get the following error:
    Error starting at line 18 in command:
    begin
    dbms_debug_jdwp.connect_tcp( 'n.n.n.n', 4000 );
    end;
    Error report:
    ORA-30683: failure establishing connection to debugger
    ORA-12535: TNS:operation timed out
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 2
    30683. 00000 -  "failure establishing connection to debugger"
    *Cause:    An error was indicated when trying to establish a connection
               to a debugger. Usually a TNS error will display along with
               this message to further explain the problem, although this
               TNS error will likely be hidden if you choose to trap the error.
    *Action:   Correct the indicated parameter value and try again.
    Additionally, my firewall in Windows 7 is disabled, and I work remotely from home via VPN.
    The instructions are thatI followed: Sue's Blog... again...: Remote Debugging with SQL Developer.
    Any help would be greatly appreciated. Thanks!
    James

    I found the answer.
    Object classes are missing.
    The right insert code is down but I have a new question.
    -How can I assign Resource acces to user in PL/SQL?
    Right insert code:
    declare
    vn_retval pls_integer;
    emp_session dbms_ldap.session;
    emp_dn varchar2(256);
    emp_array dbms_ldap.mod_array;
    emp_vals dbms_ldap.string_collection ;
    vv_ldap_host varchar2(256);
    vv_ldap_port varchar2(256);
    vv_ldap_user varchar2(256);
    vv_ldap_passwd varchar2(256);
    vv_ldap_base varchar2(256);
    begin
    vn_retval := -1;
    vv_ldap_host := 'XXXXXXX';
    vv_ldap_port := '389');
    vv_ldap_user := 'LDAP_USER';
    vv_ldap_passwd:= 'LDAP_PASSWD';
    vv_ldap_base := 'LDAP_BASE';
    dbms_ldap.use_exception := true;
    -- Initialize ldap library and get session handle.
    emp_session := dbms_ldap.init(vv_ldap_host, vv_ldap_port);
    -- Bind to the directory
    vn_retval := dbms_ldap.simple_bind_s(emp_session, vv_ldap_user, vv_ldap_passwd);
    -- Process New Entry in the database
    -- Create and setup attribute array for the New entry
    emp_array := dbms_ldap.create_mod_array(4);
    emp_vals(1) := 'NAME';
    dbms_ldap.populate_mod_array(emp_array, dbms_ldap.mod_add, 'cn', emp_vals);
    emp_vals(1) := 'NAME';
    dbms_ldap.populate_mod_array(emp_array, dbms_ldap.mod_add, 'sn', emp_vals);
    emp_vals(1) := 'top';
    emp_vals(2) := 'person';
    emp_vals(3) := 'organizationalPerson';
    emp_vals(4) := 'orcluserv2';
    emp_vals(5) := 'orcluser';
    emp_vals(6) := 'inetOrgPerson';
    dbms_ldap.populate_mod_array(emp_array, dbms_ldap.mod_add, 'objectclass', emp_vals);
    emp_vals.delete;
    emp_vals(1) := 'NAME' || '1';
    dbms_ldap.populate_mod_array(emp_array, dbms_ldap.mod_add, 'userpassword', emp_vals);
    -- DN for Entry to be Added under 'ldap_base'
    emp_dn := 'cn=' || 'NAME' || ', ' || vv_ldap_base ;
    -- Add new Entry to ldap directory
    vn_retval := dbms_ldap.add_s(emp_session, emp_dn, emp_array);
    -- Free attribute array (emp_array)
    dbms_ldap.free_mod_array(emp_array);
    -- Unbind from ldap directory
    vn_retval := dbms_ldap.unbind_s(emp_session);
    end;

  • Trying to debug Worklist app with JDeveloper

    We managed to get the worklistapp compiling under JDeveloper. Now, I'd like to debug it.
    In order to debug (by running in the OC4J container within JDeveloper), it looks like I have to run the worklistapp as a remote client (specifying REMOTE_CLIENT or SOAP_CLIENT in the BaseServlet's init function). I used REMOTE_CLIENT. I also updated wf_client_config.xml and included the ORACLE_HOME/bpel/system/services/config directory in the classpath.
    When I try to run the worklist app from JDeveloper, I get a null ptr exception (the line 'wfSvcClient.getAuthorizationService(idCtx);' is returning a null value for the authorization service):
    Source breakpoint occurred at line 660 of TaskList.java.
    07/01/30 16:57:37 java.lang.NullPointerException
    07/01/30 16:57:37      at worklistapp.servlets.TaskList.checkTabsToDisplay(TaskList.java:669)
    07/01/30 16:57:37      at worklistapp.servlets.TaskList.handleRequest(TaskList.java:122)
    07/01/30 16:57:37      at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:144)
    07/01/30 16:57:37      at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    07/01/30 16:57:37      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    07/01/30 16:57:37      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    07/01/30 16:57:37      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    07/01/30 16:57:37      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    07/01/30 16:57:37      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    07/01/30 16:57:37      at java.lang.Thread.run(Thread.java:595)
    I also tried to use the soap client (SOAP_CLIENT in BaseServlet's init()), and I get this exception even before logging into the worklistapp:
    <2007-01-30 17:05:18,001> <ERROR> <oracle.bpel.services.workflow> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
         at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:555)
         at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:185)
         at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:142)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    <::> ORABPEL-30721
    <::>
    <::> Error in invoking user metadata service operation.
    <::> An client side error occured in invoking the user metadata service operation getPublicPreferences.
    <::> Please check the exception error stack to identify the error. Contact oracle support if error is not fixable.
    <::>
    I did start up the user metadata services and runtime config services(I can see all the soap endpoints for the workflow services from a browser). But the worklist app doesn't seem to connect to the remote server. I did update my wf_client_config.xml to point to the remote server on which BPEL is located. And the wf_client_config.xml file is in the classpath.
    If I deploy the worklist app on the server with bpel (specifying the parent as 'orabpel', it all works fine). I just can't get it working as a remote client.
    So, any suggestions? I've been looking at threads on this forum to get to this point, but now I'm stuck.
    Thanks,
    Sachin

    I thought I'd ping this thread to see if anyone has been able to debug the Worklist application with JDeveloper. We are trying to customize the worklist application, and being able to use JDeveloper to debug would greatly help out.
    However, I have still been unable to get the worklist application to be able to connect to the workflow services remotely via the SOAP_CLIENT:
    wfSvcClient = WorkflowServiceClientFactory.getWorkflowServiceClient(
    WorkflowServiceClientFactory.SOAP_CLIENT);
    I've played around with the classpath to make sure I have all the jars (based on other similar threads in this forum), but have not had any luck yet.
    From a web browser, I can specify the SOAP endpoint to the Workflow services, and am able to call the service in the browser.
    I updated my wf_client_config.xml file to point to the endpoints. e.g:
    <taskQueryService>
    <soapEndPoint>http://myserver:8888/integration/services/TaskQueryService/TaskQueryService</soapEndPoint>
    </taskQueryService>
    Thanks for any help,
    Sachin
    The debug output:
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\config>
    C:\jdev\jdk\bin\javaw.exe -client -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=1690 -classpath C:\jdev\j2ee\home\oc4j.jar;C:\jdev\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -XX:MaxPermSize=256m -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Listening for transport dt_socket at address: 1690
    Debugger connected to local process.
    Jun 1, 2007 5:22:29 PM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Jun 1, 2007 5:22:29 PM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 21594 ms.
    Target URL -- http://192.168.89.52:8988/BPEL%20Samples-WorkListApplication-context-root/login.jsp
    07/06/01 17:22:40 Oracle Containers for J2EE 10g (10.1.3.1.1) initialized
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\jazncore.jar (from <classpath> in C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\public_html) has the same filename but is not identical to /C:/jdev/j2ee/home/jazncore.jar (from <code-source> in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\diagnostics\lib\ojdl.jar (from manifest of /C:/work/ProjectLaguna/ThirdParty/Oracle/SOA/10.1.3.1/j2ee/home/jazncore.jar) has the same filename but is not identical to /C:/jdev/diagnostics/lib/ojdl.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\lib\dms.jar (from manifest of /C:/work/ProjectLaguna/ThirdParty/Oracle/SOA/10.1.3.1/j2ee/home/jazncore.jar) has the same filename but is not identical to /C:/jdev/lib/dms.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\webservices\lib\orasaaj.jar (from <classpath> in C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\public_html) has the same filename but is not identical to /C:/jdev/webservices/lib/orasaaj.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\lib\pcl.jar (from manifest of /C:/work/ProjectLaguna/ThirdParty/Oracle/SOA/10.1.3.1/j2ee/home/oc4j.jar) has the same filename but is not identical to /C:/jdev/j2ee/home/lib/pcl.jar (from system property java.class.path). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    07/06/01 17:22:42 Classpath: C:\jdev\jdk\jre\lib\rt.jar;C:\jdev\jdk\jre\lib\jsse.jar;C:\jdev\jdk\jre\lib\jce.jar;C:\jdev\jdk\jre\lib\charsets.jar;C:\jdev\jdk\jre\lib\ext\dnsns.jar;C:\jdev\jdk\jre\lib\ext\localedata.jar;C:\jdev\jdk\jre\lib\ext\sunjce_provider.jar;C:\jdev\jdk\jre\lib\ext\sunpkcs11.jar;C:\jdev\j2ee\home\oc4j-api.jar;C:\jdev\j2ee\home\lib\oc4j-unsupported-api.jar;C:\jdev\j2ee\home\lib\activation.jar;C:\jdev\j2ee\home\lib\mail.jar;C:\jdev\j2ee\home\lib\persistence.jar;C:\jdev\j2ee\home\lib\ejb30.jar;C:\jdev\j2ee\home\lib\ejb.jar;C:\jdev\j2ee\home\lib\javax77.jar;C:\jdev\j2ee\home\lib\javax88.jar;C:\jdev\j2ee\home\lib\servlet.jar;C:\jdev\j2ee\home\lib\jms.jar;C:\jdev\j2ee\home\lib\jta.jar;C:\jdev\j2ee\home\lib\jacc-api.jar;C:\jdev\j2ee\home\lib\connector.jar;C:\jdev\j2ee\home\lib\jmx_remote_api.jar;C:\jdev\j2ee\home\lib\jax-qname-namespace.jar;C:\jdev\webservices\lib\jaxr-api.jar;C:\jdev\webservices\lib\jaxrpc-api.jar;C:\jdev\webservices\lib\saaj-api.jar;C:\jdev\webservices\lib\jws-api.jar;C:\jdev\j2ee\home\lib\oc4j-internal.jar;C:\jdev\j2ee\home\lib\oems-jms-oc4j.jar;C:\jdev\j2ee\home\lib\oems-jms-client.jar;C:\jdev\j2ee\home\lib\oems-jms-server.jar;C:\jdev\j2ee\home\lib\oc4j-schemas.jar;C:\jdev\j2ee\home\lib\ojsp.jar;C:\jdev\j2ee\home\lib\oc4j_orb.jar;C:\jdev\j2ee\home\lib\iiop_support.jar;C:\jdev\j2ee\home\lib\orbbase.jar;C:\jdev\j2ee\home\iiop_gen_bin.jar;C:\jdev\j2ee\home\lib\jmxcluster.jar;C:\jdev\j2ee\home\jaccprovider.jar;C:\jdev\javavm\lib\jasper.zip;C:\jdev\j2ee\home\lib\adminclient.jar;C:\jdev\opmn\lib\optic.jar;C:\jdev\j2ee\home\jacc-spi.jar;C:\jdev\j2ee\home\jazncore.jar;C:\jdev\j2ee\home\jazn.jar;C:\jdev\jlib\ospnego.jar;C:\jdev\jlib\ldapjclnt10.jar;C:\jdev\webservices\lib\wsserver.jar;C:\jdev\webservices\lib\wsif.jar;C:\jdev\webservices\lib\orawsmetadata.jar;C:\jdev\webservices\lib\orajaxr.jar;C:\jdev\jlib\jssl-1_1.jar;C:\jdev\jlib\ojmisc.jar;C:\jdev\toplink\jlib\toplink-oc4j.jar;C:\jdev\diagnostics\lib\ojdl2.jar;C:\jdev\xqs\lib\xqs-api.jar;C:\jdev\xqs\lib\xds.jar;C:\jdev\jdev\lib\jdev-oc4j-embedded.jar;C:\jdev\j2ee\home\lib\pcl.jar;C:\jdev\j2ee\home\lib\ext;C:\jdev\j2ee\home\lib\ext\adfperfhandler.jar;C:\jdev\lib\dmsapp.jar;C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\applications\admin_ejb.jar;C:\jdev\j2ee\home\lib\scheduler.jar;C:\jdev\jdev\lib\jdev-rt.jar;C:\jdev\jdev\lib\ojc.jar;C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\connectors\datasources\datasources\datasources.jar;C:\jdev\BC4J\lib;C:\jdev\BC4J\lib\adfbinding.jar;C:\jdev\BC4J\lib\adfcm.jar;C:\jdev\BC4J\lib\adfm.jar;C:\jdev\BC4J\lib\adfmweb.jar;C:\jdev\BC4J\lib\adfs-jazn.jar;C:\jdev\BC4J\lib\adfs.jar;C:\jdev\BC4J\lib\adfshare.jar;C:\jdev\BC4J\lib\bc4jct.jar;C:\jdev\BC4J\lib\bc4jctejb.jar;C:\jdev\BC4J\lib\bc4jdomorcl.jar;C:\jdev\BC4J\lib\bc4jimdomains.jar;C:\jdev\BC4J\lib\bc4jmt.jar;C:\jdev\BC4J\lib\bc4jmtejb.jar;C:\jdev\BC4J\lib\bc4jsyscat.jar;C:\jdev\BC4J\lib\collections.jar;C:\jdev\jlib\commons-cli-1.0.jar;C:\jdev\mds\lib\concurrent.jar;C:\jdev\mds\lib\mdsrt.jar;C:\jdev\jlib\share.jar;C:\jdev\jlib\regexp.jar;C:\jdev\jlib\xmlef.jar;C:\jdev\BC4J\jlib\adfmtl.jar;C:\jdev\BC4J\jlib\adfui.jar;C:\jdev\BC4J\jlib\adf-connections.jar;C:\jdev\BC4J\jlib\dc-adapters.jar;C:\jdev\ord\jlib\ordim.jar;C:\jdev\ord\jlib\ordhttp.jar;C:\jdev\jlib\ojmisc.jar;C:\jdev\jlib\jdev-cm.jar;C:\jdev\lib\xsqlserializers.jar;C:\jdev\diagnostics\lib\ojdl.jar;C:\jdev\lib\dms.jar;C:\jdev\jdbc\lib\ojdbc14dms.jar;C:\jdev\opmn\lib\ons.jar;C:\jdev\jdbc\lib\ocrs12.jar;C:\jdev\rdbms\jlib\aqapi.jar;C:\jdev\j2ee\home\lib\ojms-provider.jar;C:\jdev\jdbc\lib\orai18n.jar;C:\jdev\lib\xmlparserv2.jar;C:\jdev\lib\xml.jar;C:\jdev\lib\xmlmesg.jar;C:\jdev\lib\xsu12.jar;C:\jdev\lib\xquery.jar;C:\jdev\jlib\osdt_core.jar;C:\jdev\jlib\osdt_cert.jar;C:\jdev\jlib\osdt_xmlsec.jar;C:\jdev\jlib\osdt_wss.jar;C:\jdev\jlib\osdt_saml.jar;C:\jdev\jlib\ojpse.jar;C:\jdev\jlib\oraclepki.jar;C:\jdev\toplink\jlib\toplink.jar;C:\jdev\toplink\jlib\antlr.jar;C:\jdev\toplink\jlib\toplink-essentials.jar;C:\jdev\webservices\lib\wsclient.jar;C:\jdev\webservices\lib\orasaaj.jar;C:\jdev\webservices\lib\xsdlib.jar;C:\jdev\webservices\lib\mdds.jar;C:\jdev\webservices\lib\relaxngDatatype.jar;C:\jdev\javacache\lib\cache.jar;C:\jdev\lib\xschema.jar;C:\jdev\webservices\lib\soap.jar;C:\jdev\sqlj\lib\runtime12.jar;C:\jdev\sqlj\lib\translator.jar;C:\jdev\webservices\lib\orawsdl.jar;C:\jdev\j2ee\home\applib;C:\jdev\j2ee\home\jsp\lib\taglib;C:\jdev\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\jdev\lib\dsv2.jar;C:\jdev\j2ee\home\lib\http_client.jar;C:\jdev\j2ee\home\lib\jgroups-core.jar;C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\public_html;C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\classes;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\bpm-infra.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\orabpel-common.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\orabpel-thirdparty.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\orabpel.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\jazncore.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\diagnostics\lib\ojdl.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\lib\dms.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\oc4jclient.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\bicmn.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\bipres.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\uix2.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\webservices\lib\orasaaj.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\oc4j.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\lib\pcl.jar;C:\product\10.1.3.1\OracleAS_1\bpel\system\services\config;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\system\services\lib\bpm-services.jar;C:\product\10.1.3.1\OracleAS_1\bpel\system\services\schema;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\webservices\client_lib\wsclient_extended.jar
    07/06/01 17:22:48 log4j:WARN No appenders could be found for logger (collaxa.cube.services).
    07/06/01 17:22:48 log4j:WARN Please initialize the log4j system properly.
    <2007-06-01 17:22:48,504> <ERROR> <oracle.bpel.services.workflow> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
         at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:556)
         at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:183)
         at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:140)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    <::> ORABPEL-30721
    <::>
    <::> Error in invoking user metadata service operation.
    <::> An client side error occured in invoking the user metadata service operation getPublicPreferences.
    <::> Please check the exception error stack to identify the error. Contact oracle support if error is not fixable.
    <::>
    <::>      at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:630)
    <::>      at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:556)
    <::>      at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:183)
    <::>      at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:140)
    <::>      at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    <::>      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    <::>      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
    <::>      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
    <::>      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
    <::>      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
    <::>      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
    <::>      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    <::>      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    <::>      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    <::>      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    <::>      at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    <::>      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    <::>      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    <::>      at java.lang.Thread.run(Thread.java:595)
    <::> Caused by: java.lang.NullPointerException
    <::>      at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
    <::>      at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
    <::>      at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
    <::>      at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
    <::>      ... 18 more
    <2007-06-01 17:22:48,536> <ERROR> <oracle.bpel.services.workflow> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
         at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:556)
         at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:183)
         at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:140)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)

  • Remote debugging in OC4J using JDeveloper

    I need to remote debug into a stand-alone OC4J using JDeveloper 10.1.3.1.0. The documentation says the following:
    In the <jdev_install>/jdev/lib directory, copy ojc.jar and jdev-remote.jar to <OC4J_HOME>/home/lib.
    I can't find directory "<OC4J_HOME>/home/lib" in the stand-alone OC4J? That is, a "home" directory does not exist in the above location. To where should I copy ojc.jar and jdev-remote.jar ?
    Thanks,
    Travis

    Shay,
    JDeveloper gives an error when deploying my EJB after starting an OC4J for debugging. In contrast, JDeveloper does successfully deploy my EJB if I start OC4J using "D:\jdev10131\jdev\bin\start_oc4j.bat".
    Note that I'm able to start my standalone OC4J successfully after setting the following in a command window:
    1. Start a Microsoft Windows command window.
    2. set JAVA_HOME=D:\jdev10131\jdk
    3. java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=4000 -jar oc4j.jar
    Below is the the deployment error that JDeveloper gives when deploying my EJB to the debug OC4J. At the bottom it mentions something about "javac.exe not found". Do you know how to fix this?
    ---- Deployment started. ---- Feb 1, 2007 2:55:04 PM
    Target platform is Standalone OC4J 10g 10.1.3 (Standalone_AppServerConnection).
    Wrote EJB JAR file to D:\jdev10131\jdev\mywork\fusion_sync\deploy\EngineEjb.jar
    Wrote EAR file to D:\jdev10131\jdev\mywork\fusion_sync\deploy\EngineEjb.ear
    Uploading file EngineEjb.ear ...
    Application Deployer for EngineEjb STARTS.
    Copy the archive to D:\jdev10131\j2ee\home\applications\EngineEjb.ear
    Initialize D:\jdev10131\j2ee\home\applications\EngineEjb.ear begins...
    Unpacking EngineEjb.ear
    Done unpacking EngineEjb.ear
    Initialize D:\jdev10131\j2ee\home\applications\EngineEjb.ear ends...
    Starting application : EngineEjb
    Initializing ClassLoader(s)
    Initializing EJB container
    Loading connector(s)
    Starting up resource adapters
    Processing EJB module: EngineEjb.jar
    application : EngineEjb is in failed state
    Operation failed with error:
    javac.exe not found under C:\Program Files\Java\jre1.5.0_10, please use a valid jdk or specify the location of your java compiler in server.xml using the <java-compiler .../> tag
    Deployment failed
    Elapsed time for deployment: 14 seconds
    #### Deployment incomplete. #### Feb 1, 2007 2:55:18 PM
    Thanks,
    Travis

  • Step Over not working with Remote Debugging of Servlets with JRUN

    Platform: JRun 4, JDK 1.4.1, JDev 9.0.3
    using JPDA and copied jpda.jar to JDEV_HOME/java1.2/jre/lib/ext and set path to jar in app server path.
    using debug args: java.args=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
    ok, I'm able to attach JDeveloper to JRun and remotely debug by jumping from breakpoint to breakpoint but stepover causes JDeveloper to continue execution to completion or to next breakpoint. Any idea why step over does not work? The only way to halt execution during remote debugging is by using breakpoints.
    Thanks in advance for any insight to this issue.

    Hi Bob,
    I think OTN ate the other thread. It says there are 4 replies, but it won't display them. Here's my latest reply.
    I just noticed something interesting from your original message. You say you are using JDK 1.4.1 for the app server (that's good) and you are using JDev 903. But you say you have copied jpda.jar to JDEV_HOME\java1.2. That doesn't make sense because JDev 903 didn't have a java1.2 directory; I think JDev 903 has a jdk directory which contains JDK 1.3 (actually 1.3.1_03 or something like that).
    Also, jpda.jar is really old and the directions for using jpda.jar and for putting jpda\bin on the app server path is really old. Those directions were needed for JDK 1.2 because JPDA was released AFTER the JDK 1.2 was released. Starting with JDK 1.3, jpda is built in and you don't need the jdpa.jar or the jpda\bin, etc.
    All this reminds me that in JDK 1.2, HotSpot had bugs where stepping didn't work!!! I'm almost positive that this is what you are experiencing. Here is my advice:
    1. Make absolutely sure that you are using JDK 1.4.1 (or at least JDK 1.3 or later) for running your app server. Make sure that you are not using JDK 1.2 - you may have modified your app server so that it uses JDEV_HOME\java1.2\bin\java.exe[i]Long postings are being truncated to ~1 kB at this time.

  • Remote debug - PL/SQL web forms

    I’m working with a third-party product (Banner from Ellucian, formerly Sunguard Higher Education) which involves several large packages working together. Buried deep within all of these package functions/procedures are calls to the standard Oracle HTP and HTP packages, in order to generate HTML dynamically. There are also web cookies and CGI environment variables involved in several package procedures’ logic, so I can’t “fake” the web environment in SQL Developer and have the procedures complete successfully. I have to run the web environment that calls these procedures that generate HTML. The general idea behind what the end result of the code is that a web page is dynamically produced from PL/SQL. The web url would look something like http://.../[packagename].[packageprocedurename] (for example http://localhost/wccregchk.p_check).
    I've been able to trigger remote debugging once using SqlPlus as the external session, but the packages are so tied to the web environment that procedures/functions won’t fully work if I run them from a non-web environment. I’ve come to the conclusion that I need to be able to debug the code when run from the web browser, but I haven’t been able to figure out where to put the block or how to run the block necessary to setup the external debugging session in my package procedures.
    This post pretty much nails what I’m trying to accomplish using SQL Developer, as I’m working with the same Banner product:
    http://www.orafaq.com/forum/t/127160/0/
    I'd like to be able to remote debug these package procedures/functions in SQL Developer. I've asked the same question to the TOAD people and it's not a supported feature with them. Does anyone have any idea how to do it?
    Thanks in advance,
    Mike

    All my Web PL/SQL generator stuff is in 10g R2. I did have to make sure that I ran the Web PL/SQL installer to make sure I had the latest versions of the WSGL package and its companions.
    Why? Are you having a problem?

  • Debugging PL/SQL using JDeveloper

    Hi all,
    I'm running JDeveloper 10.1.3.2.0 on Windows XP (32-bit) SP2 connecting to a Oracle 10g 10.2.1.0 (64-bit) on UNIX.
    I have compiled the packages and procedure using JDeveloper and can run the procedure using SQL*Plus but I when I try to run the procedure in JDeveloper
    the "Run PL/SQL" dialogue appears, the Messages window shows: "Connecting to the database oradb01". I click OK and nothing seems to happen.
    I have been told by my DBA that I have all the prerequisites to debug PL/SQL so I wonder if I am missing something. Can anyone help?
    Thanks all,
    LG

    Brilliant. Thanks Shay,
    The only thing I wasn't sure about was that I tried to use the IP address of my workstation (from ipconfig) in the DBMS_DEBUG_JDWP.CONNECT_TCP procedure and for some reason it wouldn't work, so I used the Windows full computer name instead and it worked fine.
    Leo

  • Remote debugging an executable with dynamically loaded subpanel VIs

    All,
    A colleague of mine is attempting to perform remote debugging of an executable he has inherited. It includes subpanels that show dynamically loaded VIs. When connecting with the remote debugger, the main executable shows fine, but the dynamically loaded VIs are not showing their front panels. They appear ok on the remote PC where the executable is running, but they don't appear on his laptop from where he is running the debugger.
    I don't have access to LabVIEW currently, and he cannot get this to work, so I thought I'd ask the community this generic question:
    "Is it possible to remotely debug a LabVIEW executable with subpanels that show dynamically loaded subVIs?"
    Technically he can see and probe the block diagram of the main executable, but the subpanels are blank where the dynamcally loaded subVI front panel should show, making it impossible to interact with the program.
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

    Thanks Josh. Does this issue have a CAR number I can tag?
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • Remote debugging plsql procedures in jdeveloper using J2EE container

    I have a J2EE application which is connected to an oracle database .For debugging purposes ,can i remotely debug my plsql stored procedures when an action comes from the J2EE server . That is, can i control a call from the server by using breakpoints in my plsql stored procedures so that i can see the run time parameters to the plsql procedures and so

    Yes you can. See : http://blogs.oracle.com/shay/2005/12/20#a58

  • Error at debug PL/SQL with object types

    Hi, can someone help me.
    My context is:
    Database: Oracle 9.2.0.5.
    O.S. Solaris 9
    SQL Developer: 1.2.1 build 3213
    I am trying to debug a package and I am getting this error:
    Connecting to the database ADMINEW_SERVICIOS.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: ALTER SESSION SET PLSQL_COMPILER_FLAGS=INTERPRETED
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '10.70.10.69', '3673' )
    Debugger accepted connection from database on port 3673.
    Processing 56 classes that have already been prepared...
    Finished processing prepared classes.
    ORA-00600: internal error code, arguments: [15419], [severe error during PL/SQL execution], [], [], [], [], [], []
    ORA-06544: PL/SQL: internal error, arguments: [2603], [], [], [], [], [], [], []
    ORA-06553: PLS-707: unsupported construct or internal error [2603]
    Process exited.
    Disconnecting from the database ADMINEW_SERVICIOS.
    Debugger disconnected from database.
    When I call the debugger the parameters were:
    DECLARE
    P_SERIE VARCHAR2(200);
    P_SUSI NUMBER;
    P_EMPSUSI NUMBER;
    P_TX NUMBER;
    P_TIPO VARCHAR2(200);
    P_GRUPO NUMBER;
    P_CARGA SERVICIOS.TP_CONT;
    P_SERVICIOS SERVICIOS.TP_SERVICIOS;
    P_NUM NUMBER;
    v_Return VARCHAR2(200);
    BEGIN
    P_SERIE := 'M7';
    P_SUSI := 305;
    P_EMPSUSI := 1;
    P_TX := 153;
    P_TIPO := 'UNIFICADO';
    P_GRUPO := 48;
    -- Modify the code to initialize the variable
    P_CARGA := TP_CONT('M7', '4049', 'LLENO', '20', '15', '1500');
    -- Modify the code to initialize the variable
    P_SERVICIOS := TP_SERVICIOS(
    TP_SERVICIO('PAQUETE', 'SUSI', 'CREDITO', 'NACIONAL', NULL, '13423', '1', '89', '48', 'SI')
    P_NUM := 1;
    v_Return := PKG_TOOLS_SERVICIO_WEB.FN_ACTUALIZA_SUSI(
    P_SERIE => P_SERIE,
    P_SUSI => P_SUSI,
    P_EMPSUSI => P_EMPSUSI,
    P_TX => P_TX,
    P_TIPO => P_TIPO,
    P_GRUPO => P_GRUPO,
    P_CARGA => P_CARGA,
    P_SERVICIOS => P_SERVICIOS,
    P_NUM => P_NUM
    DBMS_OUTPUT.PUT_LINE('v_Return = ' || v_Return);
    END;
    The type definition is:
    create or replace TYPE TP_SERVICIOS AS
    VARRAY(20) OF TP_SERVICIO;
    create or replace
    TYPE TP_SERVICIO AS OBJECT(
    /* TODO enter attribute and method declarations here */
    TIPOSERV VARCHAR2(20),
    TIPOFACT VARCHAR2(15),
    FORMAPAGO VARCHAR2(10),
    MONEDA VARCHAR2(10),
    REFERENCIA VARCHAR2(15),
    CLIENTE VARCHAR2(6),
    EMPRESA VARCHAR2(2),
    ZSECLAVE VARCHAR2(5),
    GSRCLAVE VARCHAR2(3),
    CODIFICA VARCHAR2(2),
    MEMBER FUNCTION GET_TIPOSERV RETURN VARCHAR2,
    MEMBER FUNCTION GET_TIPOFACT RETURN VARCHAR2,
    MEMBER FUNCTION GET_FORMAPAGO RETURN VARCHAR2,
    MEMBER FUNCTION GET_MONEDA RETURN VARCHAR2,
    MEMBER FUNCTION GET_REFERENCIA RETURN VARCHAR2,
    MEMBER FUNCTION GET_CLIENTE RETURN VARCHAR2,
    MEMBER FUNCTION GET_EMPRESA RETURN VARCHAR2,
    MEMBER FUNCTION GET_ZSECLAVE RETURN VARCHAR2,
    MEMBER FUNCTION GET_GSRCLAVE RETURN VARCHAR2,
    MEMBER FUNCTION GET_CODIFICA RETURN VARCHAR2
    create or replace TYPE TP_CONT AS
    OBJECT(
    /* TODO enter attribute and method declarations here */
    SERIE VARCHAR2(2),
    CLAVE VARCHAR2(10),
    ESTADO VARCHAR2(5),
    DIM VARCHAR2(2),
    CANT VARCHAR2(8),
    PESO VARCHAR2(12)
    );

    This doesnt look good. You've got an ora600 in your trace which means your database has become unstable somehow. You really need to talk with the db support folks to figure out what the problem is.
    Barry

  • Web Pl/Sql with Jdeveloper(903)

    hi all
    i am using jdeveloper to develop some pages build with web pl/sql but when i try to run it from jdeveloper it fails (the database is 9.0.1)and gives the error
    Executing PL/SQL: CALL SCOTT."JDEV_TMP_PROC_1"()
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.OWA_UTIL", line 323
    ORA-06512: at "SYS.HTP", line 860
    ORA-06512: at "SYS.HTP", line 975
    ORA-06512: at "SYS.HTP", line 993
    ORA-06512: at "SYS.HTP", line 40
    ORA-06512: at "SCOTT.MARINA_DATE", line 6
    ORA-06512: at "SCOTT.JDEV_TMP_PROC_1", line 3
    Process exited.
    Disconnecting from the database oracle9
    my question is how i can run and deploy web/plsql procedure from jdeveloper9i

    This is because when you run your SCOTT.MARINA_DATE procedure from JDeveloper like this, it is not exactly the same as when the MOD_PLSQL invokes it.
    The key difference lies in the invocation of the OWA.INIT_CGI_ENV() procedure.
    The MOD_PLSQL gateway is doing this prior to invoking your SCOTT.MARINA_DATE routine, and here when you're invoking it from JDeveloper, likely you're not initializing the OWA package with this call.
    Assuming your PLSQL code is not depending on any of the CGI environment variables that the normal MOD_PLSQL module passes to the PLSQL environment via this call, you can simulate the initialization of the web CGI environment with no arguments using code like this:
    declare
      args owa.vc_arr; -- An empty table of records
    begin
      owa.init_cgi_env(args);
    end;

  • Debugging PL/SQL with [User] Types

    I am using SQL Developer 1.2.0 against Oracle 10.2.0.3.0 running on Linux. I run SQL Developer on the database server through Xterm 32 on my windows PC (too many firewalls, closed ports and a locked up db server).
    I have several Types that I use in my stored procedures. I have compiled all the Types for debug, but I still get "Opaque" for some of them in the Data tab when debugging.
    variables of this Type:
    create or replace TYPE "NUM_LIST" as table of number;
    with variable defined as:
    LineList NUM_LIST := NUM_LIST();
    I can expand the nested table variable and see each [element] and its key and value
    variables of this Type:
    create or replace type SUB_LIST as table of SUB_REC;
    with:
    create or replace type SUB_REC as object(
    STATION varchar2(5),
    FIND varchar2(10),
    REPLACE varchar2(10));
    and variable defined as:
    AllSubList SUB_LIST := SUB_LIST(NewSubRec);
    where:
    NewSubRec SUB_REC := SUB_REC('', '', '');
    I can expand the nested table variable and see each [element] and its key, but the value is OPAQUE.
    I've tried compiling for debug the objects before the tables and the tables before the objects.
    The workaround of looping through the table (array) and putting the values in a varchar to see the data is annoying at best.
    Any ideas??
    Thanks

    Oops. Am I ever embarrassed. - I just thought I had compiled all the Types but I hadn't because of the dependencies the RECs had with the LISTs.
    Sorry...
    Jean

  • Debugging PL/SQL with parameters

    Hi,
    I can successfully debug a PL/SQL procedure that takes no parameters. However when I choose a procedure that takes parameters and choose "Debug", as soon as the dialog that builds the PL/SQL block that calls my procedure opens, it displays "An error was encountered performing the requested action"
    Any ideas as to what I'm doing wrong

    Check
    http://www.oracle.com/technology/obe/obe9051jdev/plsqlobe/obeplsql.htm#t2
    Frank

  • Using Hypersonic SQL with JDeveloper

    I'm trying to use the two together. I can make a connection and see the database contents without any trouble. However, when I try to use the embedded OC4J, I start to have problems. OC4J doesn't seem to see the connection...my read of the documents is that the OC4J configuration should be updated with whatever connections I have in my list, but that doesn't seem to be happening...there must be some missing step. Or, may you just can't use the embedded OC4J with anything else.
    Any clues from those who might have succeeded with this already?
    RJ

    There is a thriving JDeveloper forum. ( It is visited by members of the Oracle Java tools teams like Steve Muench and Chris Schalk, and so doesn't depend so much upon self-styled experts like me :P ). You'll find it JDeveloper and ADF.
    Business logic are rules regulating the use of the entity. This includes not just integrity constraints but also things like default values, check constraints, etc. In a sense this duplicates stuff that can be defined in the database, but (a) some java heads don't like squirming around in the primordial ooze of SQL and (b) because it's Java we can write stuff programmatically, which gives more flexibility than the CHECK CONSTRAINT syntax permits.
    Cheers, APC

Maybe you are looking for

  • Setting the webservice url at run time for a execute button in adobe form

    Hi, I am using Data connection from the wsdl file to interact with the backend, the button generated from the data connection is of type execute which has the url of the webservice in the object property "Webservice URL" and name of the FM in the int

  • Garageband wont import song from iTunes

    Hi,  I've imported songs from iTunes to Garageband many times by just selecting and dragging the song from iTunes into the GarageBand application window.  Not sure why... but now that does not work--GarageBand is not accepting the song when I drag it

  • InfoSource 0MM_PUR_VE_01 : 0 data records selected

    Hi All I have to evaluate scores for vendors bases on infocube 0PUR_C05 (infosource 0MM_PUR_VE_01). All steps required for vendor evaluation are done (on the basis of BW BP B69: Vendor Evaluation). I make some new evaluations on ECC 5.0 side but the

  • Set default gateway on headless server (via ssh)

    I'm trying to configure one of the two ethernet interfaces on a headless Xserve. I managed to give it an address and subnet mask with ifconfig, but I can't figure out how to give it a default gateway or dns server. I tried using this: sudo route add

  • Conflicting in magento

    Hi. I am trying to add an animation to a magento site. I have narrowed the issue down to a conflict with a file called prototype.js but this is an essential file for the site. In chrome in the console I am getting the messages: Uncaught TypeError: Ob