File Receiver Adapter is not writing the file?

Hi All,
I am having a file to file scenario using NFS as both the source and destination are on server.
File is getting picked up from server but not reaching the destination.
In RWB for Receiver channel it only shows <b>Channel active and started correctly.</b>
In SXMB_MONI  it shows the message scheduled for some later time.
On reaching that time it tries again and reschedules :(.
Please guide.
Regards,
Sumit

Sumit,
Now do one thing, just for check the directory for read/write permission by putting the test file manually on your target directory.
The porcedure to put a file on server is as shown below:
1. Save your file in your local machine.
2. In <b>XI server</b>, enter the tranaction code "<b>SXDA_TOOLS</b>".
3. In the input screen, enter:
i) Object Type "DXPROJECT".
ii) Program Type "BAPI".
iii) Program "CREATE".
4. Press Copy (Ctrl+F5) button.
5. Now, you will get another screen in which you will see 3 blocks called as "Source", "Target" and "Copy with/without conversion".
6. In Source block, choose the radio button "Presentation Server" and then take F4 help to select your source file. (file which you have saved on your local machine)
7. In source block select the radio button "Application Server", check the box "Remote server" and take F4 help to select your application server.
8. In the same block under "File Type" select "P physical file name" and under "File Name" write the path/directory name which you have mentioned in your communication channel along with the file name.
Example: suppose file name in your Comm Chanel is "<b>demo.xml</b>" and directory path is <b>"/abc/testfiles/XML/</b>", then in step 8 write <b>"/abc/testfiles/XML/demo.xml</b>".
Note: need not to do any thing in 3rd block.
After doing all the above, let me know the results.
Regards,
Sarvesh
****Reward points, if it helpd you.

Similar Messages

  • Sender file adapter is not polling the file.

    Dear all,
       Sender file adapter is not polling the file.(But Receiver file adapter is getting the file)
    we have installed SP15.
    It was worked fine for previous SP14.
    I have cheked in Adapter monioring also.
    Can you help me out of this problem
    Regards
    Dhanabal

    Hi Dhanabal,
    Is the XI system running on a unix machine ?
    If yes, from the OS level for the folder you are using in the file comm. channel, execute the command
    <b>chmod 777 <folder_name></b>
    The reason for the file to show up in receiver side and not get deleted might be that the xi user mighht be having only read access to the folder...
    Thanks,
    Renjith.

  • Log4j not writing the llog file

    Hi
    I have a webapplication hosted on WAS,which is not writing the log file.Does anybody know the reason.?
    I have checked the log4j many times.it seems ok.as same file is working in another environment.
    Any help would be appreciated.
    Thanks
    Akash.

    Hi .the problem is solved.i changed the classloading as APPLICATION instead of MODULE in application.xml.
    Thanks.
    Akash.

  • Jdbc. The Network Adapter could not establish the connection. Help Please!!

    I've found several responses over this issue, but none works for me.
    I'm trying to setup a simple jdbc connection from a simple program.
    Platform:
    Fedora Core 4 (FC4) on AMD 64 bits
    Java 1.4.2_04 (64 bits)
    ORacle 10g or Oracle 9.2.0.4 (none works);
    Tips:
    - I can't connect to a remote server, nor to a local server
    - I can connect using SQLplus
    - TNSPing works fine
    - Listener it's up
    - my connection string is jdbc:oracle:thin:user/name@host:port:sid
    - Also try jdbc:oracle:thin:user/name@//host:port/sid
    - I'v tryied with classes12.jar, odbj14.jar
    - my hostname it's ok.
    I've monitored ip traffic on remote computer. While using TNSPING I detect activity. While using jdbc, no.
    Please, any idea??

    Thanks for your reply.
    To your questions:
    - I´v tried both IP, host, and even host.domain
    - I can connect from remote workstation using toad, and from local using sqlplus.
    - I can´t connect via jdbc.
    Folowing:
    A) my sample code
    B) the stack trace
    C) the listener status (from my 9i server. Also tryied another servr with 10g)
    when I call this program, I´ve tried severl connection strings:
    jdbc:oracle:thin:user/pass@sdd51:1521:ebf
    jdbc:oracle:thin:user/pass@:sdd51.sdd.com.ar:1521:ebf
    jdbc:oracle:thin:user/pass@:10.10.10.51:1521:ebf
    also try the other sintax:
    jdbc:oracle:thin:user/pass@//sdd51:1521/ebf
    In the classpath, I´tryied:
    clasess12.jar
    ojdbc14.jar
    nls_charset12.jar
    thanks
    A)=================================================
    // Import the JDBC classes
    import java.sql.*;
    import oracle.jdbc.pool.OracleDataSource;
    import java.io.*;
    import java.util.*;
    public class test
    // The query we will execute
    static final String query = "select 'Hello JDBC: ' || sysdate from dual";
    // The connection to the database
    static Connection conn;
    // Create the User Interface
    static public void main (String args[])
    try {
    String connect_string = args[0];
         // See if we need to open the connection to the database
         if (conn == null)
    // Create a OracleDataSource instance and set URL
    OracleDataSource ods = new OracleDataSource();
    ods.setURL(connect_string);
         // Connect to the databse
         System.out.println ("Connecting to " + connect_string + "\n");
         conn = ods.getConnection ();
         System.out.println ("Connected\n");
         // Create a statement
         Statement stmt = conn.createStatement ();
         // Execute the query
         System.out.println ("Executing query " + query + "\n");
         ResultSet rset = stmt.executeQuery (query);
         // Dump the result
         while (rset.next ())
         System.out.println (rset.getString (1) + "\n");
         // We're done
         System.out.println ("done.\n");
    catch (Exception e)
    e.printStackTrace();
         // Oops
         System.out.println (e.getMessage () + "\n");
    B)=================================================
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:114)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:156)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:212)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:102)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:85)
         at test.main(test.java:66)
    C)=================================================
    LSNRCTL for Linux: Version 9.2.0.1.0 - Production on 30-JAN-2006 17:39:59
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 9.2.0.1.0 - Production
    Start Date 24-JAN-2006 11:16:18
    Uptime 6 days 6 hr. 23 min. 40 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Log File /opt/oracle/product/9.2.0/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=sdd51.sdd.com.ar)(PORT=1521)))
    Services Summary...
    Service "ebf" has 1 instance(s).
    Instance "ebf", status READY, has 1 handler(s) for this service...
    The command completed successfully

  • SQL Developer 1.5 - The Network Adapter could not establish the connection

    I was using SQL Developer 1.2 until this afternoon. I saw that 1.5 was available so I decided to try it out.
    Unfortunately, I cannot connect. I've tried connecting the same way I've done with 1.2 and it gives me the error:
    "Io exception: The Network Adapter could not establish the connection"
    No firewall changes, tns changes have been done the whole 10 minutes I was transitioning over from 1.2 to 1.5.
    Any ideas how I can get 1.5 to connect?

    Hi Echoi ,
    1/Do you want us to look at the tnsnames.ora and see if we spot anything?
    2/There are complications with existing ORACLE_HOME s:
    Re: 1.5 not working at all for me
    post from dooneill:
    Hi Thomas,
    SQL Developer does pick up the JDBC drivers from your local ORACLE_HOME.
    To ensure your using the shipped JDBC drivers you could use the following small script.
    I would appreciate if you could tell me if this works and what version of Oracle you have installed locally.
    1) Close SQL Developer
    2) Create a sqldeveloper.cmd file in the SQL Developer root directory
    3) With the following contents
    SET ORACLE_HOME=%CD%
    start sqldeveloper.exe
    4) Run sqldeveloper.cmd
    Thanks
    Dermot.
    -Turloch

  • Network Adapter could not establish the????

    I am trying to connect or oracle9i server using a simple jdbc program i am getting the following error can anyone please help me
    java.sql.SQLException: Io exception: The Network Adapter could not establish the
    connection
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(DriverManager.java:512)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at list.listbooks(lib.java:126)
    at lib.main(lib.java:38)

    If the OS is misconfigured, "nslookup" (or its replacement, "dig") will work just fine but you still won't get want you want, 'cause the OS won't attempt name resolution...
    You should start your testing with "ping":
    ping [host name]
    ping [ip address]
    (I think Solaris is one of the OS's where you have to use ctl-c [control key and c key at the same time] to get ping to stop).
    Probably ip address will work and host name won't. If that's the case, it has nothing to do with your application or Java, the OS is misconfigured. Throw the problem at an experienced systems administrator if you can. While it's usually not hard, there are about a dozen possibilities.
    If you can't, most likely the problem is in one of the files in the /etc directory; you will need root privileges to change them.
    On Solaris, common problems are:
    1. misconfigured nsswitch.conf
    You probably want a line it to read:
    hosts: files dnsalthough some people argue that dns should come before the (local host) files.. (I disagree)
    2. misconfigured resolv.conf
    resolv.conf should contain the list of DNS servers you want this host to use to resolve names to IP addresses, as "nameserver" entries
    It should also contain the default domain as a "domain" entry and any optional default domains as "search" entries. In other words, if you give the name as "foo" and want the machine "foo.bar.com" to be found, then you need an entry of either "domain bar.com" or "search bar.com"
    3. misconfigured /etc/hosts file
    If and only if you are NOT using DNS, then you need to maintain a hostname/IP entry in this file. This is a big pain in the butt to maintain, and everybody who's anybody uses DNS, but maybe you're the exception... (Even if you are using DNS, you can stick an entry here as a quick and dirty fix, not recommended (and I once fired someone for "fixing" a problem that way and then lying about it - it was the last straw...), but it could be acceptable in your situation)
    Uncommon problems are:
    bad routes - particularly if your DNS server is on a non-local subnet
    bad subnetmask - particularly if your DNS server is on a non-local subnet
    misconfigured network interface - most likely when you're using 2 different interfaces on 2 different networks

  • Failure -lo exception: The Network Adapter could not establish the connecti

    I get the following error when I attempt to connect:
    Failure -lo exception: The Network Adapter could not establish the connection
    I'm running 64-bit Windows XP Pro. Is that possibly an issue? I can ping the server. I am going to go now and install Oracle client software, to see whether I can tnsping and then connect from that.
    The remote listener is up and running. I did check that.
    What else might be the problem?

    Kris,
    I don't mind having to re-key connections between versions of Raptor, but if Raptor is going to save a connection that worked when I entered it, I expect that connection to work when I restart Raptor.
    If you can't save a connection with just the TNS Alias, at least save it as something that works - convert it to the basic format.
    Having said that - I would certainly prefer the connection to be saved as the TNS Alias if it could be. We have in the past had cases where we have modified the SID or Listener Port behind a TNS Alias to reduce downtimes during upgrades. With a centralised TNS Names file (which we have), there is only one place to update - if we are saving the full details behind the connection on every developer's PC, there is then a lot of additional places where the details need to be changed.

  • JDeveloper Oracle XE The Network Adapter could not establish the connectio

    I installed JDeveloper 10.1.2 and oracle express on Fedora.
    Now I cannot create a database connection from jdeveloper using the connection navigator
    The hostname, port etc is correct.
    Sqlplus and everything else regarding the database on the command line works fine.
    Did I miss something ?
    Maybe an environment setting ?
    I did the following installation (all on the same host):
    Java runtime
    JDeveloper
    XE Database
    Testing a connection I used the Oracele Database Express Edition 2 Day PLus Java Developer Guide.
    Is this documentation complete ?
    Can someone also explain to me what the error message
    Io exception: The Network Adapter could not establish the connection EXACTLY means ??
    Where does it go wrong ?
    Is there a checklist for thsi kind of thin-java connection problems ?

    Here some extra info, as I just said I did a default installation.
    The listener is up on port 1521, see ouput:
    LSNRCTL for Linux: Version 10.2.0.1.0 - Beta on 01-FEB-2006 15:21:01
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=linux900)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Beta
    Start Date 01-FEB-2006 15:01:51
    Uptime 0 days 0 hr. 19 min. 10 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/ne twork/admin/listener.ora
    Listener Log File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/ne twork/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=linux900)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=linux900)(PORT=8080))(Presentation=H TTP)(Session=RAW))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE" has 1 instance(s).
    Instance "XE", status READY, has 1 handler(s) for this service...
    Service "XEXDB" has 1 instance(s).
    Instance "XE", status READY, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "XE", status READY, has 1 handler(s) for this service...
    The command completed successfully
    Also tnsping works fine:
    TNS Ping Utility for Linux: Version 10.2.0.1.0 - Production on 01-FEB-2006 15:29:32
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = linux900)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))
    OK (20 msec)
    So still I dont known what is going wrong here, the following properties are used by this connection:
    Type: Oracle (JDBC)
    Driver: oracle.jdbc.driver.OracleDriver
    User: hr
    URL: jdbc:oracle:thin:@linux900:1521:XE
    Is the driver used by JDeveloper correct ?
    There is a note on XE that the use of oracle.jdbc.driver.* classes is deprecated but still supported.

  • Jdbc thin error : The Network Adapter could not establish the connection

    jdbc thin error : The Network Adapter could not establish the connection
    I have been able to create a webservice as per the article Build a PL/SQL Web Service by jason price from otn website. while executing url to call the pl/sql procedure to get the data i am encountering this error
    The Network Adapter could not establish the connection in the resultant xml output. Am I missing something here ?
    Please see ouput below
    <?xml version="1.0" encoding="UTF-8" ?>
    - <SOAP-ENV:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    - <SOAP-ENV:Body>
    - <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring>java.sql.SQLException: Io exception: The Network Adapter could not establish the connection</faultstring>
    <faultactor>/plsqlsample/dbfunc</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope
    my oc4j/j2ee/home/config/data-sources.xml file has this entry for the connection
    <data-source class="com.evermind.sql.DriverManagerDataSource" connection-driver="oracle.jdbc.driver.OracleDriver" ejb-location="jdbc/hr_connDS" inactivity-timeout="30" location="jdbc/hr_connCoreDS" name="jdev-connection:hr_conn" password="xxxx" pooled-location="jdbc/hr_connPooledDS" url="jdbc:oracle:thin:@o11idev.concentra.com:9200:DEV1" username="hr8" xa-location="jdbc/xa/hr_connXADS"/>
    I am not able to debug this error and any information to debug this error would be appreciated. I have scanned the metalink short of logging a tar. I am using the oc4j install on the 9ias webserver and not the jdeveloper/oc4j combination. The apps server runs 9ias on hp/ux.
    Thanks
    ashok

    Ashok,
    Your database connection URL doesn't look right to me. The default database connection listener port is 1521 (not 9200). You can check this using the "lsnrctl" utility.
    To find the "host" and SID parts (of the URL), use the following SQL query:
    select HOST_NAME, INSTANCE_NAME from V$INSTANCEGood Luck,
    Avi.

  • The network adapter could not establish the connection after hostname chang

    hi all,
    my computer name and ip address are changed after it is moved to another location in a local lan network. however, when i tried to connect my database in oralce 11g (enterprise edition) after, i got this error "the network adapter could not establish the connection" (in sql developer)
    and "Configuring database with database control requires a listener to be configured in the current oracle home. You need run Netca to configure a listener before you can proceed. Otherwise you may choose to continue with database control" (in dbca when i tried to create a new database). i also cannot access my database in OEM becasue it is still refering to old host name with this error message "Firefox can't establish a connection to the server at...". i changed the old host name to the new host name in files of listener.ora, listener1212114PM3012.bak, tnsnames.ora, and tnsnames1212114PM3012.bak in folder 'product\11.2.0\dbhome_2\NETWORK\ADMIN'. but it didn't work. can anybody pls tell me what do i need to do to fix the problem. i don't want to reinstall my oracle again because i've done a lot of works already in oracle. thanks in advance.
    kind regards,
    hong

    hi,
    C:\>lsnrctl start
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 12-DEC-2012 11:44
    :05
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Starting tnslsnr: please wait...
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    C:\>lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 12-DEC-2012 11:46
    :29
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=pc-412-0.xx.xxxx.xxx.xx)
    (PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    64-bit Windows Error: 1004: Unknown error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    64-bit Windows Error: 2: No such file or directory
    SQL> startup
    ORA-01081: cannot start already-running ORACLE - shut it down first
    Then I shutdown it and startup again. The new message is as follows:
    SQL> startup
    ORACLE instance started.
    Total System Global Area 3373858816 bytes
    Fixed Size 2180424 bytes
    Variable Size 2097154744 bytes
    Database Buffers 1258291200 bytes
    Redo Buffers 16232448 bytes
    Database mounted.
    Database opened.
    I tried to connect the database again and it didn't work. Thanks.
    Hong

  • "The Network Adapter could not establish the connection" on RAC databases

    I am posting what solved our situation here, in case it helps others:
    We have RAC databases that use SCAN, but also use their Local_Listener ports (because we could not go completely to SCAN due to our applications).
    For some reason, 11.1 Grid Control could see instances if we added them separately, but if we tried to connect to the database & view the performance, it would error out with "The Network Adapter could not establish the connection".
    We had to fix it by manually setting the connect string in every instance and database in the OEM Setup to the non-SCAN VIP/Ports.
    Hopefully this saves someone else hours & hours of troubleshooting. (I know, the day after Grid Control 12 comes out. SOOO helpful. :P )

    Aravind K R wrote:
    java.sql.SQLException: The Network Adapter could not establish the connectionWhere is the Oracle error? I hate this - s/w like Java suppressing the underlying error codes and messages. Just how the hell can one diagnose an error when not knowing exactly what it is? There should be a TNS error code and message.
    From the info you've given, one can only guess. And the following guess is as good as any. Load balancing is requested. Likely your RAC db services are registered on both static and virtual IPs - as the listeners are running listener 1521/tcp end points on both.
    This means the client can get a redirect to connect to a specific listener on a specific IP - and this includes the static IPs. The listener usually passes hostnames (as that is what is configured). If the client cannot resolve that static hostname to an IP, it cannot correct.
    So make sure that the client can resolve both virtual and static hostnames of the RAC - not just the virtual ones.
    If you're client is Windows, update the c:\windows\system32\drivers\etc\hosts file - alternatively register the hostnames with the local DNS.

  • The Network Adapter could not establish the connection - while connecting

    Hi All,
    I have installed OEM 11g Grid Control on Linux 5.3 on Host1.
    I have also installed Oracle Management Agent on Host2.
    I can see that Agent on Host2 is sending stats to Host1 which I can view using Grid Control. However when I try to access Availability/Schema details for the Database instance on Host2, I get the error message "The Network Adapter could not establish the connection".
    I have setup the tns entry in Host database server tnsnames.ora file, I can connect to the database on Host2 from sql*plus in Host1. But from Grid control it is now working.
    Do you know if I need to setup any other configuration?
    Please Note: I can see all information of repository database instance from Grid control. The OMS and Repository databsse runs on the same box.

    Verify that the Agent's URL, as seen in the Grid Console -> Setup -> Agent name page is the same as the value configured for the EMD_URL in the <AGENT_HOME>/sysman/config/emd.properties file.
    Check http://www.myoraclesupports.com/content/how-troubleshoot-communication-between-oracle-management-service-oms-and-grid-agent-componen for other options (though written for 10g most is also valid for GC 11g)
    Eric

  • SQL error: Io exception: The Network Adapter could not establish the connec

    Hi,
    I am sure this question has been asked a million times and maybe i haven't searched the forum enough.
    But here's the situation. I haven't used oracle too much. So I am not too familiar with data-source and what not..
    I downloaded the latest version of oc4j(standalone) a few days back. I am trying to get the Oc4j j2eehome/demo/ormap to work .
    I deployed the application manually by editing server.xml and http-web-site.xml files...
    But i get this error
    SQL error: Io exception: The Network Adapter could not establish the connection
    I have no clue what that is..
    I know its got to do with the bean not connecting to the Database. Do i need to download the oracle database server too.. The documentation says something about the cloudscape database.. Well basically i am lost..
    Any information will be very helpful.
    regards
    -amit

    Hi Amit --
    This exception means that the container can't connect to the database instance to which it has been directed to use.
    If you are using the ormap demo, then this is an entity bean based sample and will need a database.
    The database configurations are stored at the server level in the j2ee/home/config/data-sources.xml file. In this file you will see entries that define a datasource using a set of "locations", provides details on where the database instance (host, port, sid) and what the logon details are.
    For the container, a default-data-source is defined (ie one to use if no others are supplied) in the j2ee/home/config/application.xml.
    <orion-application autocreate-tables="false"
    default-data-source="jdbc/OracleDS">
    To make it work simply, make sure that you have a datasource named jdbc/OracleDS defined in the data-sources.xml file (which should be there as a template) and that the connection details for it point to a valid database instance and user.
    cheers
    -steve-

  • Java.sql.SQLException: Io exception: The Network Adapter could not establish the conn

    Hello all!
    First of all, I want to say I read all the answers to this problem that were posted in the past in this forum.
    I try to connect from the intranet to an Oracle database, named bc01. The string I use is "jdbc:oracle:thin:@192.168.199.11:1521:bc01". On the 192.168.199.11 machine the listener and oracleservice services are started. The bc01 is correctly added to tnsnames.ora. If I issue a tnsping80 192.168.199.11 from the console it works. However, if I issue the same command from my workstation, it doesn't work (says No listener). So what am I missing here?
    Any help is much appreciated !
    Thank you very much!

    Faizan,
    Normally this error is reported when the database is either not available or the URL is invalid. Please check the URL whether you have a valid DB connection there.
    Also I see the getConnection missing e,g.
    Connection conn = ds.getConnection();
    regards
    Debu
    I am trying to setup DataSource for my application and I am using oracle 8.1.6.3 database. I have following entry in the data-sources.xml file
    <data-source
                   class="oracle.jdbc.pool.OracleDataSource"
                   name="jdbc/pool/OracleDS"
                   location="jdbc/ConnectionDS"
                   pooled-location="jdbc/pool/OracleDS"
                   url="jdbc:oracle:thin:@machine:1521:development"
                   username="user"
                   password="password"
                   min-connections="3"
                   max-connections="50"
                   wait-timeout="10"               
                   inactivity-timeout="30"
         />
    In my JSP code I am doing following to access the database
    ResultSet sqlResultSet = null;
    PreparedStatement stm = null;
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource)ic.lookup("jdbc/OracleDS");
    stm = conn.prepareStatement(updtUser);
    I got following exception when I ran teh code
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Thanks for help
    Faizan

  • I am unable to backup after months of successful backups.  Receive "iPhone could not backup the iPhone because the backup was corrupt or not compatible with the iPhone.

    I am unable to backup my iPhone4 (4.3.4) after months of successful backups.  Receive "iPhone could not backup the iPhone because the backup was corrupt or not compatible with the iPhone.  Followed advise on user forum to delete the old backup... did not help.  Need to do a backup.  Is there a cure?

    The only thing that resolved it for me was to COMPLETELY remove all Apple components per http://support.apple.com/kb/ht1925.  I also downgraded to iTunes 10.3 since my issue didn't start until after the 10.4 update.  May not be related but oh well....You will have to restore your old iTunes Library file (*.itl) if you downgrade.

Maybe you are looking for

  • Standard report for invoices against a quantity contract

    dear experts, is there any standard report for how much invoices(billing) should be made against a quantity contract. my requirement is suppose if  i enter a quantity contract number then it will display all the invoices against that contract with in

  • IE 11 zoom default 125% based on display settings in control panel.

    Using Windows 7 Enterprise with 2 displays I have my display settings set to increase windows objects and text by 125%.  IE 11 appears to compound this by defaulting to 125% zoom on startup default.  If I set the display control back to 100 the defau

  • VB6 runtime files

    Hello, I'm buliding report using Crystal Reports XI Developer Full(Ver. 11.5.8.826), What to i need to distribute this report with my vb6 app with CrystalActiveXReportViewer. I would like to install the minimum to my clients. Thanks, Moshik

  • OracleWeblogic patches 10.3

    Hello, In the past we got 5 patches for Oracle Weblogic 10.3. We are planning to certify 10.3.4 and 10.3.6. The question is do we need to apply these patches. I tryied to look in the release notes but I wasn't able to find any information regarding p

  • UTL_FILE output is different in UAT and PROD

    Hi I have sql in UAT and PROD. no changes in the code. it is same in both environment. This sql is usng UTL_FILE package to print the ouput in text format. The o/p has to print main header, sub header, data, and traielr. The o/p is as shown below. pr