Connecting Weblogic 8.1 to Oracle 10g

Hi,
I have created connection in weblogic 8.1 of a type4 driver. And associated that connection with a JNDI name and DataSource. And I'm looking up that jndi and getting the connection. It is connecting but when executing the statement it is throwing exception. Please adivce. Thanks.
Both code and exception are below:
Here is the Program:
public class JDBCConnectionPool {
     Connection connection = null;
     InitialContext initialContext = null;
     Context context = null;
     DataSource datasource = null;
     Properties properties = null;
     public Connection getConnection() {
          properties = new Properties();
          properties.put(Context.INITIAL_CONTEXT_FACTORY,
                    "weblogic.jndi.T3InitialContextFactory");
          properties.put(Context.PROVIDER_URL, "t3://CBR-SRV-HPORA:7001/");
          try {
               initialContext = new InitialContext(properties);
               datasource = (DataSource) initialContext.lookup("sample_jndi");
               try {
                    connection = datasource.getConnection();
               } catch (SQLException e) {
                    e.printStackTrace();
          } catch (NamingException e) {
               e.printStackTrace();
          return connection;
     public static void main(String args[]) throws SQLException {
          JDBCConnectionPool conpool = new JDBCConnectionPool();
          Connection con = conpool.getConnection();
          if (con != null) {
               System.out.println("Connected.........");
               Statement stmt = con.createStatement();
               ResultSet rs = stmt.executeQuery("SELECT ENAME FROM EMP");
               while (rs.next()){
               System.out.println(rs.getString("ENAME"));
Here is the EXCEPTION:
Connected.........
<Jun 15, 2010 4:42:20 PM IST> <Info> <JDBC> <BEA-001155> <The following exception has occurred:
java.rmi.UnmarshalException: Could not unmarshal method ID; nested exception is:
     java.rmi.UnmarshalException: Method not found: 'createArrayOf(Ljava.lang.String;[Ljava.lang.Object;)'
     at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
     at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:164)
     at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_weblogic_jdbc_oracle_OracleConnection_816_WLStub.createStatement(Unknown Source)
     at weblogic.jdbc.rmi.SerialConnection.createStatement(SerialConnection.java:157)
     at com.code.sample.connectionDB.JDBCConnectionPool.main(JDBCConnectionPool.java:54)
Caused by: java.rmi.UnmarshalException: Method not found: 'createArrayOf(Ljava.lang.String;[Ljava.lang.Object;)'
     at weblogic.rmi.internal.MethodDescriptor.init(MethodDescriptor.java:156)
     at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:272)
     at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:1114)
     at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:1032)
     at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:225)
     at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:809)
     at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:782)
     at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:105)
     at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
--------------- nested within: ------------------
weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
[java.rmi.UnmarshalException: Could not unmarshal method ID; nested exception is:
     java.rmi.UnmarshalException: Method not found: 'createArrayOf(Ljava.lang.String;[Ljava.lang.Object;)']
     at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_weblogic_jdbc_oracle_OracleConnection_816_WLStub.createStatement(Unknown Source)
     at weblogic.jdbc.rmi.SerialConnection.createStatement(SerialConnection.java:157)
     at com.code.sample.connectionDB.JDBCConnectionPool.main(JDBCConnectionPool.java:54)
>

Hi,
Please try to use the ojdbc14.jar Oracle Jdbc Driver ...which comes with WebLogic8.1 SP6 Installation and Placed inside the following Location:
C:\bea816\weblogic816\server\lib\ojdbc14.jar
Please remove any additional ojdbc14.jar from the Server Classpath if u are using any new version of this Jar. Looks like ur Servers Classpath has some very Latest Oracle Jdbc Driver which is causing the issue.
<b><font color=maroon>
One more thing ..As i dont see any Oracle Jdbc Driver class in the Stack trace ....so i m not 100% sure that it is a Driver issue...
But Please check if u have applied any Wrong Patch in the Server Classpath... Because the Stack trace clearly says that ...somewhere WLS APIs are causing this issue.
</font></b>
<b><font color=red>
Or better if u can post your thread in Jdbc Experts Forum: http://forums.oracle.com/forums/forum.jspa?forumID=579 there u may get the Best and Accurate Pointers very soon.
</font></b>
Thanks
Jay SenSharma
http://weblogic-wonders.com (WebLogic Wonders Are Here)

Similar Messages

  • ERROR while connecting to Netezza Database from oracle 10g via dblink.

    Gurus,
    We are trying to connect to Netezza DB from oracle 10g DB.. We successfully establised ODBC connection but unable to retrieve data over the dblink connected from oracle to Netezza. We get this error.. Please HELP ASAP!!!!!!!!
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    Server and/or port attributes are empty {HY000,NativeErr = 33}

    Manik wrote:
    We are trying to connect to Netezza DB from oracle 10g DB.. We successfully establised ODBC connection but unable to retrieve data over the dblink connected from oracle to Netezza. We get this error.. Please HELP ASAP!!!!!!!!
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    Server and/or port attributes are empty {HY000,NativeErr = 33}Always test ODBC client connectivity on the Oracle server to the remote and foreign database, first. Use the isql ODBC client command line interface (as the oracle or grid o/s user).
    If this does not work, then Oracle HSO will also not work.
    Once you have confirmed that this is working, then configure the HSO service for Oracle.
    If that fails, enables ODBC client tracing for that HSO service (in the init file for that service) to see exactly what ODBC calls Oracle is making and which of these are failing.

  • Can we establish connection between developer 6i with oracle 10g

    hi all
    can some body guide me that how we establish connection between developer 6i with oracle 10g. i have install developer and oracle 10g on different machine
    please guide me

    Look at following thread
    Re: Patch 18 available for Windows Client/Server Forms 6i
    I had installed Patch 18 against 10G DB and Forms work well.
    Anyway you can see patches in
    http://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=4948577&release=3060000&plat_lang=912P
    Hope this helps
    Regards
    Rosario

  • Connect from Windows Client to Oracle 10g for Windows 64-bit

    Have an environment currently running Oracle 10g 32-bit on Windows 2000 Standard, and need to migrate to Oracle 10g 64-bit for Windows. Users connect to the 10g 32-bit database using the Oracle Client for Windows 10g loaded on remote PC's. If we migrate to the Oracle 10g 64-bit on Windows 2003 Server Enteprise Edition 64-bit, what type of client do I have to install on the PC's to access the Oracle 10g 64-bit database?
    Any ehlp/insight will be greatly appreciated.
    Eduardo in Michigan

    In addition to install 32-bit Oracle client to 32-bit Windows OS, you need to know whether your application is compiled to run in 32-bit or 64-bit.
    This is critical because 32-bit application can not see 64-bit Oracle ODBC and OLE DB provider.
    For example, MS SQL Server 2005 uses 32-bit DTS, and SSIS, which needs 32-bit Oracle client
    If you don't know, get a copy of both 32-bit and 64-bit Oracle client, and try one-by-one to know for sure. Please be aware that if regsvr32.exe in the Windows has been overwritten by older software installation, it won't register some DLL properly, and Oracle ODBC, or OLE DB won't show up as well

  • No suitable driver when connect MS SQL server from Oracle 10g using JTDS

    Hi,
    I have developed a java servlet application connection to MS SQL using jtds-1.2.jar. I have try to deploy this application to Oracle 9ias and it works fine.
    However, when I deploy the same application to Oracle 10g (10.1.2.0.2), I encounter this error - java.sql.SQLException: No suitable driver.
    I have copy the jtds-1.2.jar to Ora10g/jdbc/lib, Ora10g/j2ee/home/lib and also the Ora10g/j233/OC$J_GENERAL/applications/sampleApp/sampleApp/WEB-INF/lib folder, and also setup the data source via the EM interface. The data-source.xml entry is as follows:
    <data-source location="jdbc/ess" class="com.evermind.sql.DriverManagerDataSource" xa-location="jdbc/xa/essS" ejb-location="jdbc/ess" connection-driver="net.sourceforge.jtds.jdbc.Driver" username="scott" url="jdbc:jtds:sqlserver://202.xx.xx.xx:1433/sampleDB" inactivity-timeout="30" name="ess"/>
    </data-sources>
    Is there any configuration that I've forgotten to set?

    >
    I have developed a java servlet application
    connection to MS SQL using jtds-1.2.jar. I have try
    to deploy this application to Oracle 9ias and it
    works fine.
    However, when I deploy the same application to Oracle
    10g (10.1.2.0.2), I encounter this error -
    java.sql.SQLException: No suitable driver.
    I have copy the jtds-1.2.jar to Ora10g/jdbc/lib,
    Ora10g/j2ee/home/lib and also the
    Ora10g/j233/OC$J_GENERAL/applications/sampleApp/sample
    App/WEB-INF/lib folder, and also setup the data
    source via the EM interface.
    Is there any configuration that I've forgotten to set?The JAR file needs to be in a place the container can locate it correctly. This is the applib directory for your OC4J instance.
    Which I believe from what you have entered is:
    Ora10g/j2ee/OC4J_GENERAL/applib
    There's a general JDBC 3rd party driver set of documentation here:
    http://download.oracle.com/docs/cd/B14099_11/web.1012/b14012/datasrc.htm#sthref592
    This is not using jtds-1.2.jar but it shows how another set of 3rd party jdbc libs are used with the server.
    -steve-

  • Instant Client Connection Problem - Excel 2007 to Oracle 10g

    Dear users,
    I would some help to connect Excel to Oracle.
    I am using Excel 2007 (32-bit) on Windows Vista Enterprise 64-bit. I want to connect to an Oracle 10g database through our local network using ODBC. I need to fetch some data once into an excel sheet.
    There are no firewall issues or connection issues between my current machine , as I can connect from my machine, using SQL developer as a local client to the Oracle Database which is on another machine on the network.
    I tried to make an ODBC connection but Oracle is not listed as a driver.
    I beleive ODBC is the best way to do this, but please correct me if I am wrong.
    It is an Oracle 10G database.
    I downloaded instantclient-basiclite-windows.x64-11.2.0.2.0.zip a
    I also downloaded the extra ODBC components: *Instant Client Package - ODBC: Additional libraries for enabling ODBC applications.
    I unzipped both in a folder called C:\instantclient_11_2
    The system path included that. I checked after rebooting.
    I placed my tnsnames.ora (which I copied from the server) in that folder.
    I got ti from the server : D:\Oracle\Ora10gR2DB\network\admin\tnsnames.ora
    I ran the exe "odbc_install" and It told me the ODBC was intalled successfully.
    When I went the control panel, administrative tools, ODBC
    In the user dsn tab
    I added a new entry. I chose the Oracle driver (previously it was not in the list)
    Used the following values
    Data Source name: OracleL
    Description 123
    TNS Service NAme: I chose fro ma drop down menu our prod environment. (There are two entries with the production name, one in caps and the other in lowercase)
    Userid: my username
    I tried Test the connection and got this:
    Unable to Connect
    SQlState=S1000
    [Oracle][ODBC][Ora]ORA-12545: Connect failed because target host or object does not exist
    Any suggestions please.
    Thnaks in advance.
    A.
    Thanks for all your help, in advance.
    Akajohn.
    Edited by: user12282521 on May 19, 2011 1:47 PM

    user12282521 wrote:
    I would some help to connect Excel to Oracle.
    I am using Excel 2007 (32-bit)
    I downloaded instantclient-basiclite-windows.x64-11.2.0.2.0.zip aIf Excel is 32-bit (2007 is) and Oracle client libraries are 64-bit, it won't work. 32-bit needs 32-bit.
    You probably should remove current ic packages and get the 32-bit ones instead.
    Start over.
    When I went the control panel, administrative tools, ODBCOn Windows x64, to manage 32-bit ODBC DSNs/drivers one needs to run the tool from Windows\SysWoW64\odbcad32.exe.

  • Connect Forms 6i application to Oracle 10g Lite database on notebook

    We are currently looking at mobilising one of our legacy systems. This application uses forms 6i. I have build the Olite Mobile Server and installed the olite database on a notebook. We have sucessfully synchonised from a 9i database to the Olite database on the notebook and have been able to validate the snapshot using msql
    when we try to connect to the olite database on the notebook using developer we get the following
    POL-5150 Access violation - Program attempted to access a database system table
    has anyone sucessfully connected forms 6i to an olite 10g database or know of someone who has.
    Thanks
    Sean

    I believe Oracle Lite is a non-SQLNET database and Forms can only connect via SQL*Net. If I am wrong and Oracle Lite can use SQL*Net I suggest you call Oracle Support and ask them to analyze your situation.

  • Problem in connecting Visual Studio '12 to oracle 10g database.

    Stack Trace:
    [OracleException: ORA-6413: Connection not open.] Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure)
    +1383 Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, Object src)
    +51 Oracle.DataAccess.Client.OracleConnection.Open()
    +6936 index.Page_Load(Object sender, EventArgs e) in c:\WebSites\WebSite2\index.aspx.cs:29 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
    +51 System.Web.UI.Control.OnLoad(EventArgs e)
    +92 System.Web.UI.Control.LoadRecursive() +54 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    +772
    This is the stack trace that i get when i open the connection from code behind. The exception generated is "6413:Connection not open". I can connect to the database from sever explorer but OracleConnection con=new Oracleconnection(connstr);  is leading to an exception
    Also I'm really new to this so I read about this problem in this forum but couldn't understand what  "Oracle Client" means on https://forums.oracle.com/message/11222748   . I have downloaded and installed this : http://download.oracle.com/otn/other/ole-oo4o/ODTwithODAC121010.zip?AuthParam=1381761455_87ee18a27de3af5e1b5cc13d6934260
    Should I resinstall Visual Studio in Some other location too?  i.e. not inside Program Files(x86)?
    I have added Oracle.dataAccess.dll as a reference too.
    Further I have the copied the dll in "C:\app\hp\product\12.1.0\client_1\bin" from this  "C:\oraclexe\app\oracle\product\10.2.0\server\BIN". I dont understand why i have two paths like those.
    I also have sql developer for oracle databse installed.
    Please help..!

    Hello
    Thank You again. I followed your instructions and these are the results:
    These are the outputs:
    C:\Windows\system32>lsnrctl stop
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 21-OCT-2013 16:07
    :48
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    The command completed successfully
    C:\Windows\system32>cd C:\oraclexe\app\oracle\product\10.2.0\server\network\admi
    n\
    C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN>rename listener.ora l
    istener.ora.sav
    C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 21-OCT-2013 16:09
    :40
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production
    Log messages written to C:\oraclexe\app\oracle\product\10.2.0\server\network\log
    \listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=hp-PC)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date                21-OCT-2013 16:09:46
    Uptime                    0 days 0 hr. 0 min. 5 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         C:\oraclexe\app\oracle\product\10.2.0\server\network\l
    og\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=hp-PC)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    C:\Windows\system32>lsnrctl service
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 21-OCT-2013 17:45
    :03
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    The listener supports no services
    The command completed successfully
    And now Visual Studio cant connect to the database via server explorer. It says no listener!
    The listener.ora file has :
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
          (PROGRAM = extproc)
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
          (PROGRAM = extproc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
          (ADDRESS = (PROTOCOL = TCP)(HOST = hp-PC)(PORT = 1433))
    DEFAULT_SERVICE_LISTENER = (XE)
    I cant connect to the database neither through server explorer nor through the sql developer now.

  • Help:connecting php 5.2 to oracle 10g

    gud day!
    i'm new in php and oracle. I am running a PHP5.2, oracle10g database server, Apache 2.2 and OS windows 2000. This what i got from the log file when connecting.
    PHP Warning: PHP Startup: Unable to load dynamic library 'c:\\PHP\\ext\\php_oci8.dll' - %1 is not a valid Win32 application.\r\n in Unknown on line 0
    [Mon Feb 11 11:42:48 2008] [notice] Child 1728: Child process is running
    [Mon Feb 11 11:42:48 2008] [notice] Child 1728: Acquired the start mutex.
    [Mon Feb 11 11:42:48 2008] [notice] Child 1728: Starting 250 worker threads.
    [Mon Feb 11 11:42:48 2008] [notice] Child 1728: Starting thread to listen on port 80.
    What are other components needed to have a connection?

    i think you have successfully configured apache with php5.2.
    just run this script through browser.
    <?php
    phpinfo();
    ?>
    if you can see the php information means your php is configured with apache.
    now enable below lines in php.ini
    if not available then add these line.
    [PHP_OCI8]
    extension=php_oci8.dll
    and restart the server then run the above script again. in the out put you should be able to see this information. If you can then your php is enabled with oracle database.
    oci8
    OCI8 Support      enabled
    Version      1.2.4
    Revision      $Revision: 1.269.2.16.2.38 $
    Active Persistent Connections      0
    Active Connections      0
    Temporary Lob support      enabled
    Collections support      enabled
    Directive     Local Value     Master Value
    oci8.default_prefetch     10     10
    oci8.max_persistent     -1     -1
    oci8.old_oci_close_semantics     0     0
    oci8.persistent_timeout     -1     -1
    oci8.ping_interval     60     60
    oci8.privileged_connect     Off     Off
    oci8.statement_cache_size     20     20
    Message was edited by:
    Santhosh Kumar T

  • CONNECT -TIME FAILOVER ERROR IN ORACLE 10G ENTERPRISE MANAGER

    Hi All,
    Please can anyone explain why I am getting this error and how to fix it?
    I was trying this exercise to create a backup LISTENER to support a connect-time failover in Enterprise manager.The steps were .1)I clicked the Listener's link on Database control page.2)Next I clicked the Net Services Administration link.3)I selected listeners from the Administer drop-down list and clicked Go.
    I received the ERROR message that "Listener administration cannot be performed, as this Oracle Home
    "/opt/oracle/DB10g" is not a server installation.
    Is this normal?
    What can I do to fix it?Please help!
    Thanks

    you are trying to start the listener on the machine that has enterprise manager installed.
    Listener executable is available with oracle database software install( enterprise or otherwise).
    You will have to pick the listener on a database software install box to configure it

  • Weblogic 81sp5 Oracle 10G server crash windows xp

    I was using weblogic 81sp5 hibernate 3 and Oracle 9i and everythign was fine. I upgraded to Oracle 10G, and now with the execution of the second SQL statement my server is crashing with the following error. Any help would be appreciated.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x61D4894C
    Function=xaolog+0x6294
    Library=c:\ora10g\bin\OraClient10.Dll
    Current Java thread:
         at oracle.jdbc.driver.T2CStatement.t2cParseExecuteDescribe(Native Method)
         at oracle.jdbc.driver.T2CPreparedStatement.executeForDescribe(T2CPreparedStatement.java:518)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1037)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1132)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3316)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3361)
         - locked <0x101ae1d8> (a oracle.jdbc.driver.T2CPreparedStatement)
         - locked <0x113fe928> (a oracle.jdbc.driver.T2CConnection)
         at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:124)
         at org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:139)
         at org.hibernate.loader.Loader.getResultSet(Loader.java:1669)
         at org.hibernate.loader.Loader.doQuery(Loader.java:662)
         at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
         at org.hibernate.loader.Loader.loadEntity(Loader.java:1785)
         at org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:93)
         at org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:81)
         at org.hibernate.persister.entity.AbstractEntityPersister.load(AbstractEntityPersister.java:2730)
         at org.hibernate.event.def.DefaultLoadEventListener.loadFromDatasource(DefaultLoadEventListener.java:365)
         at org.hibernate.event.def.DefaultLoadEventListener.doLoad(DefaultLoadEventListener.java:346)
         at org.hibernate.event.def.DefaultLoadEventListener.load(DefaultLoadEventListener.java:123)
         at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:82)
         at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:891)
         at org.hibernate.impl.SessionImpl.immediateLoad(SessionImpl.java:849)
         at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:62)
         at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:98)
         at org.hibernate.proxy.CGLIBLazyInitializer.intercept(CGLIBLazyInitializer.java:158)
         at com.erac.vaa.vincent.domain.poc.Manufacturer$$EnhancerByCGLIB$$bbc19d25.toString(<generated>)
         at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:461)
         at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:399)
         at com.erac.vaa.vincent.services.poc.ManufacturerServiceImpl.toManufacturerDto(ManufacturerServiceImpl.java:75)
         at com.erac.vaa.vincent.services.poc.ManufacturerServiceImpl.load(ManufacturerServiceImpl.java:35)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:287)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:181)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:148)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
         at $Proxy9.load(Unknown Source)
         at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.displayOne(ManufacturerController.java:107)
         at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.handleGet(ManufacturerController.java:144)
         at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.execute(ManufacturerController.java:63)
         at com.erac.riskmgmt.arch.struts.action.AbstractBindingAction.processInvoke(AbstractBindingAction.java:861)
         at com.erac.riskmgmt.arch.struts.action.AbstractBindingAction.execute(AbstractBindingAction.java:484)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1194)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.erac.vaa.vincent.view.filters.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:104)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.erac.vaa.vincent.view.filters.AuthenticationFilter.doFilterInternal(AuthenticationFilter.java:92)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    Dynamic libraries:
    0x00400000 - 0x0040B000      C:\bea81sp5\jdk142_08\bin\javaw.exe
    0x7C900000 - 0x7C9B0000      C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000      C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E6B000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000      C:\WINDOWS\system32\RPCRT4.dll
    0x7E410000 - 0x7E4A0000      C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F57000      C:\WINDOWS\system32\GDI32.dll
    0x77C10000 - 0x77C68000      C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08138000      C:\bea81sp5\jdk142_08\jre\bin\client\jvm.dll
    0x76B40000 - 0x76B6D000      C:\WINDOWS\system32\WINMM.dll
    0x10000000 - 0x10007000      C:\bea81sp5\jdk142_08\jre\bin\hpi.dll
    0x00830000 - 0x0083E000      C:\bea81sp5\jdk142_08\jre\bin\verify.dll
    0x00840000 - 0x00859000      C:\bea81sp5\jdk142_08\jre\bin\java.dll
    0x00860000 - 0x0086E000      C:\bea81sp5\jdk142_08\jre\bin\zip.dll
    0x02B60000 - 0x02B7C000      C:\bea81sp5\jdk142_08\jre\bin\jdwp.dll
    0x00940000 - 0x00945000      C:\bea81sp5\jdk142_08\jre\bin\dt_socket.dll
    0x71AB0000 - 0x71AC7000      C:\WINDOWS\system32\ws2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\system32\WS2HELP.dll
    0x55600000 - 0x55631000      C:\Program Files\Microsoft Firewall Client 2004\FwcWsp.dll
    0x77120000 - 0x771AC000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774E0000 - 0x7761D000      C:\WINDOWS\system32\ole32.dll
    0x71A50000 - 0x71A8F000      C:\WINDOWS\System32\mswsock.dll
    0x76F20000 - 0x76F47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000      C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
    0x662B0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71A90000 - 0x71A98000      C:\WINDOWS\System32\wshtcpip.dll
    0x77F60000 - 0x77FD6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773D0000 - 0x774D3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5D090000 - 0x5D12A000      C:\WINDOWS\system32\comctl32.dll
    0x76FC0000 - 0x76FC6000      C:\WINDOWS\system32\rasadhlp.dll
    0x071A0000 - 0x071AF000      C:\bea81sp5\jdk142_08\jre\bin\net.dll
    0x07540000 - 0x07548000      C:\bea81sp5\jdk142_08\jre\bin\nio.dll
    0x07550000 - 0x07556000      C:\bea81sp5\jdk142_08\jre\bin\ioser12.dll
    0x62F00000 - 0x62F13000      C:\ora10g\BIN\ocijdbc10.dll
    0x07D30000 - 0x07D88000      c:\ora10g\bin\OCI.dll
    0x7C340000 - 0x7C396000      C:\WINDOWS\system32\MSVCR71.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\system32\PSAPI.DLL
    0x61C20000 - 0x61E76000      c:\ora10g\bin\OraClient10.Dll
    0x60870000 - 0x60957000      c:\ora10g\bin\oracore10.dll
    0x60A80000 - 0x60B46000      c:\ora10g\bin\oranls10.dll
    0x63690000 - 0x636A8000      c:\ora10g\bin\oraunls10.dll
    0x60EB0000 - 0x60EB7000      c:\ora10g\bin\orauts.dll
    0x636B0000 - 0x636B6000      c:\ora10g\bin\oravsn10.dll
    0x60FA0000 - 0x61092000      c:\ora10g\bin\oracommon10.dll
    0x08940000 - 0x08FA2000      c:\ora10g\bin\orageneric10.dll
    0x63430000 - 0x63457000      c:\ora10g\bin\orasnls10.dll
    0x63750000 - 0x638BF000      c:\ora10g\bin\oraxml10.dll
    0x07DA0000 - 0x07DB1000      C:\WINDOWS\system32\MSVCIRT.dll
    0x60960000 - 0x60A7E000      c:\ora10g\bin\oran10.dll
    0x62740000 - 0x6277D000      c:\ora10g\bin\oranl10.dll
    0x62790000 - 0x627A6000      c:\ora10g\bin\oranldap10.dll
    0x627F0000 - 0x628FC000      c:\ora10g\bin\orannzsbb10.dll
    0x62530000 - 0x625A3000      c:\ora10g\bin\oraldapclnt10.dll
    0x62670000 - 0x6268B000      c:\ora10g\bin\orancrypt10.dll
    0x71AD0000 - 0x71AD9000      C:\WINDOWS\system32\WSOCK32.dll
    0x76D60000 - 0x76D79000      C:\WINDOWS\system32\iphlpapi.dll
    0x62920000 - 0x6296D000      c:\ora10g\bin\oranro10.dll
    0x626B0000 - 0x626B7000      c:\ora10g\bin\oranhost10.dll
    0x62660000 - 0x62666000      c:\ora10g\bin\orancds10.dll
    0x629C0000 - 0x629C8000      c:\ora10g\bin\orantns10.dll
    0x60B50000 - 0x60EA8000      c:\ora10g\bin\orapls10.dll
    0x07DC0000 - 0x07DC9000      c:\ora10g\bin\oraslax10.dll
    0x63080000 - 0x63284000      c:\ora10g\bin\oraplp10.dll
    0x61ED0000 - 0x61F67000      c:\ora10g\bin\orahasgen10.dll
    0x62AB0000 - 0x62B1E000      c:\ora10g\bin\oraocr10.dll
    0x62B20000 - 0x62B63000      c:\ora10g\bin\oraocrb10.dll
    0x5B860000 - 0x5B8B4000      C:\WINDOWS\system32\NETAPI32.dll
    0x62980000 - 0x62990000      c:\ora10g\bin\orantcp10.dll
    0x63520000 - 0x635BA000      c:\ora10g\bin\orasql10.dll
    0x77FE0000 - 0x77FF1000      C:\WINDOWS\system32\Secur32.dll
    0x5AD70000 - 0x5ADA8000      C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476B000      C:\WINDOWS\system32\MSCTF.dll
    0x09300000 - 0x09305000      C:\bea81sp5\weblogic81\server\bin\stackdump.dll
    0x09310000 - 0x09315000      C:\bea81sp5\weblogic81\server\bin\wlntio.dll
    0x76C90000 - 0x76CB8000      C:\WINDOWS\system32\imagehlp.dll
    0x59A60000 - 0x59B01000      C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C08000      C:\WINDOWS\system32\VERSION.dll
    Heap at VM Abort:
    Heap
    def new generation total 2496K, used 1836K [0x10010000, 0x102c0000, 0x104f0000)
    eden space 2240K, 74% used [0x10010000, 0x101b1d48, 0x10240000)
    from space 256K, 64% used [0x10240000, 0x10269300, 0x10280000)
    to space 256K, 0% used [0x10280000, 0x10280000, 0x102c0000)
    tenured generation total 32188K, used 18578K [0x104f0000, 0x1245f000, 0x14010000)
    the space 32188K, 57% used [0x104f0000, 0x11714890, 0x11714a00, 0x1245f000)
    compacting perm gen total 31744K, used 31580K [0x14010000, 0x15f10000, 0x18010000)
    the space 31744K, 99% used [0x14010000, 0x15ee7008, 0x15ee7200, 0x15f10000)
    Local Time = Fri Apr 20 12:43:16 2007
    Elapsed Time = 941
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid3592.log.
    # Please refer to the file for further information.

    What happends if you try to issue your query from a SQL prompt? Does it work? Now, what is it written at the alert.log at the time this error arises? Is this version certified against 10g?
    There are some issues when connecting the jdbc driver with Oracle 10g (http://edocs.bea.com/wls/docs81/notes/issues.html#129571) some patches may need to be applied.

  • Connect form builder to oracle 10g express ?

    Hi ,
    How can i connect form builder 10 to oracle 10g express ?

    error -> ORA -12154That normally means there is some problem with tnsnames.ora :
    $ oerr ora 12154
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.
    $Does
    C:\>tnsping xework ?
    You could also try using "<host name or IP address>/xe" as connection string (database).

  • How to connect mysql and oracle 10g by UTL_HTTP?

    how to connect mysql 5.0 and oracle 10g r2 by UTL_HTTP?what to do for this url connection exactly?

    cant i change anything to stup a link?
    SQL> desc utl_http
    PROCEDURE ADD_COOKIES
    Argument Name               Type               In/Out Default?
    COOKIES               TABLE OF RECORD      IN
    FUNCTION BEGIN_REQUEST RETURNS RECORD
    Argument Name               Type               In/Out Default?
       URL                    VARCHAR2(32767)      OUT
       METHOD               VARCHAR2(64)          OUT
       HTTP_VERSION           VARCHAR2(64)          OUT
       PRIVATE_HNDL           BINARY_INTEGER          OUT
    URL                    VARCHAR2          IN
    METHOD                VARCHAR2          IN     DEFAULT
    HTTP_VERSION               VARCHAR2          IN     DEFAULT
    PROCEDURE CLEAR_COOKIES
    PROCEDURE CLOSE_PERSISTENT_CONN
    Argument Name               Type               In/Out Default?
    CONN                    RECORD               IN
       HOST                VARCHAR2(256)          IN
       PORT                BINARY_INTEGER          IN
       PROXY_HOST               VARCHAR2(256)          IN
       PROXY_PORT               BINARY_INTEGER          IN
       SSL                    BOOLEAN           IN
    PROCEDURE CLOSE_PERSISTENT_CONNS
    Argument Name               Type               In/Out Default?
    HOST                    VARCHAR2          IN     DEFAULT
    PORT                    BINARY_INTEGER          IN     DEFAULT
    PROXY_HOST               VARCHAR2          IN     DEFAULT
    PROXY_PORT               BINARY_INTEGER          IN     DEFAULT
    SSL                    BOOLEAN           IN     DEFAULT
    PROCEDURE END_REQUEST
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    PROCEDURE END_RESPONSE
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    PROCEDURE GET_AUTHENTICATION
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    SCHEME                VARCHAR2          OUT
    REALM                    VARCHAR2          OUT
    FOR_PROXY               BOOLEAN           IN     DEFAULT
    PROCEDURE GET_BODY_CHARSET
    Argument Name               Type               In/Out Default?
    CHARSET               VARCHAR2          OUT
    FUNCTION GET_BODY_CHARSET RETURNS VARCHAR2
    PROCEDURE GET_COOKIES
    Argument Name               Type               In/Out Default?
    COOKIES               TABLE OF RECORD      IN/OUT
    FUNCTION GET_COOKIE_COUNT RETURNS BINARY_INTEGER
    PROCEDURE GET_COOKIE_SUPPORT
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           OUT
    MAX_COOKIES               BINARY_INTEGER          OUT
    MAX_COOKIES_PER_SITE          BINARY_INTEGER          OUT
    PROCEDURE GET_DETAILED_EXCP_SUPPORT
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           OUT
    FUNCTION GET_DETAILED_SQLCODE RETURNS BINARY_INTEGER
    FUNCTION GET_DETAILED_SQLERRM RETURNS VARCHAR2
    PROCEDURE GET_FOLLOW_REDIRECT
    Argument Name               Type               In/Out Default?
    MAX_REDIRECTS               BINARY_INTEGER          OUT
    PROCEDURE GET_HEADER
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    N                    BINARY_INTEGER          IN
    NAME                    VARCHAR2          OUT
    VALUE                    VARCHAR2          OUT
    PROCEDURE GET_HEADER_BY_NAME
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    NAME                    VARCHAR2          IN
    VALUE                    VARCHAR2          OUT
    N                    BINARY_INTEGER          IN     DEFAULT
    FUNCTION GET_HEADER_COUNT RETURNS BINARY_INTEGER
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    PROCEDURE GET_PERSISTENT_CONNS
    Argument Name               Type               In/Out Default?
    CONNECTIONS               TABLE OF RECORD      IN/OUT
    FUNCTION GET_PERSISTENT_CONN_COUNT RETURNS BINARY_INTEGER
    PROCEDURE GET_PERSISTENT_CONN_SUPPORT
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           OUT
    MAX_CONNS               BINARY_INTEGER          OUT
    PROCEDURE GET_PROXY
    Argument Name               Type               In/Out Default?
    PROXY                    VARCHAR2          OUT
    NO_PROXY_DOMAINS          VARCHAR2          OUT
    FUNCTION GET_RESPONSE RETURNS RECORD
    Argument Name               Type               In/Out Default?
       STATUS_CODE               BINARY_INTEGER          OUT
       REASON_PHRASE          VARCHAR2(256)          OUT
       HTTP_VERSION           VARCHAR2(64)          OUT
       PRIVATE_HNDL           BINARY_INTEGER          OUT
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    RETURN_INFO_RESPONSE          BOOLEAN           IN     DEFAULT
    PROCEDURE GET_RESPONSE_ERROR_CHECK
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           OUT
    PROCEDURE GET_TRANSFER_TIMEOUT
    Argument Name               Type               In/Out Default?
    TIMEOUT               BINARY_INTEGER          OUT
    PROCEDURE READ_LINE
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    DATA                    VARCHAR2          OUT
    REMOVE_CRLF               BOOLEAN           IN     DEFAULT
    PROCEDURE READ_RAW
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    DATA                    RAW               OUT
    LEN                    BINARY_INTEGER          IN     DEFAULT
    PROCEDURE READ_TEXT
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    DATA                    VARCHAR2          OUT
    LEN                    BINARY_INTEGER          IN     DEFAULT
    FUNCTION REQUEST RETURNS VARCHAR2
    Argument Name               Type               In/Out Default?
    URL                    VARCHAR2          IN
    PROXY                    VARCHAR2          IN     DEFAULT
    WALLET_PATH               VARCHAR2          IN     DEFAULT
    WALLET_PASSWORD          VARCHAR2          IN     DEFAULT
    FUNCTION REQUEST_PIECES RETURNS TABLE OF VARCHAR2(2000)
    Argument Name               Type               In/Out Default?
    URL                    VARCHAR2          IN
    MAX_PIECES               BINARY_INTEGER          IN     DEFAULT
    PROXY                    VARCHAR2          IN     DEFAULT
    WALLET_PATH               VARCHAR2          IN     DEFAULT
    WALLET_PASSWORD          VARCHAR2          IN     DEFAULT
    PROCEDURE SET_AUTHENTICATION
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    USERNAME               VARCHAR2          IN
    PASSWORD               VARCHAR2          IN     DEFAULT
    SCHEME                VARCHAR2          IN     DEFAULT
    FOR_PROXY               BOOLEAN           IN     DEFAULT
    PROCEDURE SET_BODY_CHARSET
    Argument Name               Type               In/Out Default?
    CHARSET               VARCHAR2          IN     DEFAULT
    PROCEDURE SET_BODY_CHARSET
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    CHARSET               VARCHAR2          IN     DEFAULT
    PROCEDURE SET_BODY_CHARSET
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       STATUS_CODE               BINARY_INTEGER          IN/OUT
       REASON_PHRASE          VARCHAR2(256)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    CHARSET               VARCHAR2          IN     DEFAULT
    PROCEDURE SET_COOKIE_SUPPORT
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           IN
    MAX_COOKIES               BINARY_INTEGER          IN     DEFAULT
    MAX_COOKIES_PER_SITE          BINARY_INTEGER          IN     DEFAULT
    PROCEDURE SET_COOKIE_SUPPORT
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    ENABLE                BOOLEAN           IN     DEFAULT
    PROCEDURE SET_DETAILED_EXCP_SUPPORT
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           IN     DEFAULT
    PROCEDURE SET_FOLLOW_REDIRECT
    Argument Name               Type               In/Out Default?
    MAX_REDIRECTS               BINARY_INTEGER          IN     DEFAULT
    PROCEDURE SET_FOLLOW_REDIRECT
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    MAX_REDIRECTS               BINARY_INTEGER          IN     DEFAULT
    PROCEDURE SET_HEADER
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    NAME                    VARCHAR2          IN
    VALUE                    VARCHAR2          IN     DEFAULT
    PROCEDURE SET_PERSISTENT_CONN_SUPPORT
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           IN
    MAX_CONNS               BINARY_INTEGER          IN     DEFAULT
    PROCEDURE SET_PERSISTENT_CONN_SUPPORT
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    ENABLE                BOOLEAN           IN     DEFAULT
    PROCEDURE SET_PROXY
    Argument Name               Type               In/Out Default?
    PROXY                    VARCHAR2          IN
    NO_PROXY_DOMAINS          VARCHAR2          IN     DEFAULT
    PROCEDURE SET_RESPONSE_ERROR_CHECK
    Argument Name               Type               In/Out Default?
    ENABLE                BOOLEAN           IN     DEFAULT
    PROCEDURE SET_TRANSFER_TIMEOUT
    Argument Name               Type               In/Out Default?
    TIMEOUT               BINARY_INTEGER          IN     DEFAULT
    PROCEDURE SET_TRANSFER_TIMEOUT
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    TIMEOUT               BINARY_INTEGER          IN     DEFAULT
    PROCEDURE SET_WALLET
    Argument Name               Type               In/Out Default?
    PATH                    VARCHAR2          IN
    PASSWORD               VARCHAR2          IN     DEFAULT
    PROCEDURE WRITE_LINE
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    DATA                    VARCHAR2          IN
    PROCEDURE WRITE_RAW
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    DATA                    RAW               IN
    PROCEDURE WRITE_TEXT
    Argument Name               Type               In/Out Default?
    R                    RECORD               IN/OUT
       URL                    VARCHAR2(32767)      IN/OUT
       METHOD               VARCHAR2(64)          IN/OUT
       HTTP_VERSION           VARCHAR2(64)          IN/OUT
       PRIVATE_HNDL           BINARY_INTEGER          IN/OUT
    DATA                    VARCHAR2          IN

  • Oracle net manager in oracle 10g

    Hi expert
    How can I define the odbc connection - host/access right, in oracle 10g?
    Like as in oracle 9i, it have orahome to set the odbc connection.. and then setting the net manager
    So how can I do the same way, to connect to oracle server via windows?
    rgds, Mohsin

    Please consider using Instant Client.
    http://www.oracle.com/technology/software/tech/oci/instantclient/index.html and
    http://www.oracle.com/technology/tech/oci/instantclient/index.html
    Please review the license agreement for that product if you plan on using it in production

  • Needed help on connecting weblogic 8.1 SP5 with oracle 10g and mysql 5.0

    Hi !!
    Hope you are doing well...
    Can anyone tell me how to connect weblogic 8.1 SP5 with an oracle 10g DB on windows..
    also, how to connect weblogic 8.1 SP5 with mysql 5.0 on windows..
    Please step by step... very urgent..
    Thanks!! Jhonson

    Shouldn't this be posted in BEA forums?
    Try getting help there and if you encounter any Oracle related exception, you can post here.

Maybe you are looking for

  • Err: The private key material is not exportable outside of the HSM

    Hi, I am working on weblogic 8.1 with sp4, Using keytool generated certificates with HardwareSecurityModule (HSM) and enabled ssl in weblogic admin console. Now while starting the server following error is displayed <Oct 4, 2005 3:18:44 PM GMT+05:30>

  • How to save transparent background images to have transparent background thumbnails with Photoshop 2014?

    In old versions of Photoshop there was a feature that made thumbnail images have a transparent background.  I'm a CC member using Photoshop 2014 on a MacBook Pro running OS X 10.9.4 and every thumbnail of a transparent background image I've created i

  • Flash Differences between Browsers

    http://www.guygar.com/inception/fiction/ Thank you for your interest; here is the issue I am having. The above URI with FLV movie renders fine in Firefox, Chrome and Safari. But when viewed in IE9 the movie displays strangely, somehow the movie is no

  • MM Automatic account assignment

    Hi all , I need to change G/L account in OBYC settings . Scenario is  stock transfer from one plant to another in the same comany code . Material is having different std cost in  sender plant & recieving plant . On transfer finished stock is debited

  • Unable to create a workspace after fresh install of APEX 3.2

    I cannot creat a workspace as described in the installation guide : "4.4.8 Create a Workspace and Add Oracle Application Express Users" I can see the logo using "http://127.0.0.1:8080/i/htmldb/apex_logo.gif", but not if I use the machine name instead