Craete a database from remote location

Hi!
I have a unix machine running Oracle. I want to know if I can create a database from a remote terminal using
1. DBCA or
2. using OEM
Thanks
Manish

Hi,
There are several emulators available.
cygwin is an open source (http://x.cygwin.com/) .
microimages (http://www.microimages.com ) is another option. Like I mentioned before, if you know the sequence of steps, creating the database manually is another simple option.

Similar Messages

  • How to move SQL database from one location to another location i.e. from C' drive to D' drive

    Hi, How to move SQL database from one location to another location i.e. from C' drive to D' drive ? please share some link.
    Thanks and Regards, Rangnath Mali

    Hi Rangnath,
    According to your description, my understanding is that you want to move databased from C drive to D drive.
    You can detach Database so that the files become independent, cut and paste the files from source to destination and attach again.
    There are two similar posts for your reference:
    http://mssqltalks.wordpress.com/2013/02/28/how-to-move-database-files-from-one-drive-to-another-or-from-one-location-to-another-in-sql-server/
    http://stackoverflow.com/questions/6584938/move-sql-server-2008-database-files-to-a-new-folder-location
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to load jar files from remote location

    Hi all,
    I am trying to load jar files from remote server, from a servlet which is running on OC4j.
    For doing this,First I am getting ClassLoader by using ClassLoader.getSystemClassLoader() and then type casting it to URLClassLoader.
    But by doing it I am getting ClassCastException,because oc4j returns oracle.classloader.PolicyClassLoader instead of java.net.ClassLoader.
    Appreciate if anyone can tell me how to load remote jar files using oracle.classloader.PolicyClassLoader .
    Thanks
    Harish

    Hi,
    I suppose you know about this, but just in case.
    I have used jnpl to load jar files from remote location.
    Rowan

  • Cisco video camera monitoring software from remote location

    Hello
    What is the best way to use the  Cisco video camera monitoring software from remote location.
    I am talking about the AVMS / SWVMS software.
    I am thinking of either a vpn tunnel or Remote Desktop (Terminal Services).
    I would like to use the vpn tunnel, but am afraid that the encryption/decryption of all data will drastically slow down the data throughput.
    THanks,
    Cliff
    CCO: clifford.gormley

    Hi Clifford,
    Thank you for posting. I use the AVMS software remotely and it works good. At first I changed the http ports of each camera and forwarded those ports in the router. I set up the cameras in the remote AVMS software with the WAN IP address and port number. That worked quite well. I then decided to try to reach the cameras through a VPN tunnel. I found that it worked perfectly and I was able to view up to 6 cameras. Your results will vary depending on how much bandwidth you have at each end. The important thing is the upload speed at the camera end of the tunnel. I have anywhere from 3-4 Mbps at any given time for the upload speed at the camera side and 30-40 Mbps download speed at the AVMS server side. I have also used UltraVNC to view the AVMS server through the tunnel and that worked well. Note that if you view the AVMS software using RDP you will see a black screen where the video should be. This is a limitation of RDP, not the software.
    Please reply if you have any questions.

  • How can i execute byte code from remote location.

    I want my program to execute byte code from some remote location.Should i ransfer class files to my pc and then execute it but i would it to be executed from remote location.

    ... but i would it to be executed from remote location.Sounds like you want to use RMI (Remote Method Invocation).
    Allows you to have a remote machine execute code.
    Start here:
    http://developer.java.sun.com/developer/onlineTraining/rmi/index.html

  • Delete from remote location with where clause between the two databases

    I want to delete records from a source database using dblink. The criteria for the delete is a where clause, that
    looks for the values between a table at source and the remote location. I get an invalid sql statement error.
    When i do a count(*) instead of a delete, I get rows returned.
    Can anyone see an the problem here ? I've tried qualifying the delete
    delete from tabl1@remote a, tabl1_temp b where (a."id" =b."id") and (a."title" = b."title) and (a."key" = b."key");
    the error I get is ORA 00933 SQL command not properly ended....
    The * is between the 2 ands ...
    Edited by: sgonos on Nov 6, 2009 6:46 AM
    Sorry the * moved when I save it ...
    delete from tabl1@remote a, tabl1_temp b where (a."id" =b."id") and (a."title" = b."title) and (a."key" = b."key");
    it's flagging the middle and ... a.title = b.title ... seems to like key ....
    Edited by: sgonos on Nov 6, 2009 6:51 AM

    You have 2 tables specified in the delete clause of your statement.
    It should maybe be something like:
    delete from tabl1@remote a
    where exists (select 'x' from tabl1_temp b where (a."id" =b."id") and (a."title" = b."title) and (a."key" = b."key"));
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to get the entire database from remote server to my server

    Hi,
    I am running a web application with sample data. Now i need to access the original data through this application. But the original data is located in the other server which is located in Mumbai.
    Now i need the copy of that database to my system(Chennai). with minimum effort.
    It is very urgent...
    Thanks in advance...
    Chaitanya.

    Hi
    Nicolas is right. You can also take advantage of exp/imp utility. That would not only get the entire db in one file but also the size will be a fraction of the entire db size.You can search for DataPump (that uses expdp and impdp) utility to expedite the export/import process.
    For simple exp/imp you can do the following.
    From Remote site(MUMBAI) issue
    ORACLE_HOME\BIN\exp file=c:\fulldbexp09sept05.dmp log=c:\fulldbexp09sept05log.log FULL=Y userid=system/pwd@connectstringOfyourdb
    Get a copy of fulldbexp09sept05.dmp and place it on your local drive in Chennai
    On Local Site (Chennai)
    ORACLE_HOME\BIN\imp file=fulldbexp09sept05.dmp log=fulldbimp09sept05 FULL=Y userid=system/pwd@connectstringOfyourlocaldb
    By this you can take advantage of having a different db name on remote and local sites. This is a fairly easy exercise. You just need to be sure that in your TNSNAMES.ORA you have correctly defined the connectString for your db.
    PS: Create a database on local server with default settings.
    Make use of following to create appropriate tablespaces and users if you desire ie.
    1. On Remote Site open SQLPLUS session and issue this command to find out the tablespaces, datafiles and their sizes
    SQL>SELECT SUBSTR(file_name,1,60) FILE_NAME, tablespace_name, bytes
    FROM dba_data_files
    GROUP BY tablespace_name, file_name;
    Now create the tablespaces on local sites using the result of the above query.
    2. On Remote Site open SQLPLUS session and issue this command to spool user creation script.
    SQL>spool c:\createuserscript.lst
    SQL> SELECT 'CREATE USER ||' IDENTIFIED BY VALUES '||'"'||PASSWORD||'"'||' DEFAULT TABLESPACE '||DEFAULT_TABLESPACE||' TEMPORARY TABLESPACE '||TEMPORARY_TABLESPACE||';'
    FROM dba_users
    WHERE username NOT IN ('SYS','SYSTEM')
    ORDER BY username;
    SQL>spool off
    Now edit this createuserscript using any editor and replace " with '. Copy this file to the local server and run it using @. This will create appropriate users.
    Let me know if you have any problems.
    Regards
    Adnan Mashhadi
    Nicolas I am not sure as how to eliminate the " in my script. Any comment will be appreciated.

  • Accessing multiple macs with ARD from remote location with Airport Extreme

    We have an office with a newer Airport Extreme and three macs on the network. We have turned on the Apple Remote Desktop in the port forwarding, but we can only access one computer at a time, and only if we port map it to the local IP of that computer (Ex 10.0.1.2).
    We would like to be able to access all three computers from a remote location. My question is this -
    Can I have a wildcard IP, or is there an IP I should use for ARD?
    Do I set up multiple port mapping with different ports and IPs?
    All computers are running 10.6.1 with the latest ARD updates.
    Any assistance would be appreciated.

    Great answer by Dave Sawyer:
    "To be able to connect to a workstation from outside it's network, the ports that ARD uses must be open on both ends of the connection. ARD uses ports 3283 and 5900 so those must be open.
    If your workstations get their addresses from an NAT device rather than being "real", the ports also need to be forwarded in the router to the workstation's internal IP address. ARD uses port 3283 for the reporting and updating function, so if your Macs are getting their IP addresses through NAT, since you can only forward a port to a single workstation, you can only get reports, push package/files to etc. for a single workstation.
    ARD uses the VNC protocol for observation and control, though, and there are a range of IP addresses for that protocol, starting with 5900. ARD uses 5900 by default, so that port would be forwarded to the first workstation. To be able to control more than one system, though, you would need to install VNC servers on the systems (since the ARD client cannot listen on any port other than 5900 while VNC servers can be set for other ports such as 5901, 5902, etc. You would then forward 5901 to the second workstation (and on to 5902, 5903, etc.). You can then use the following information:
    Remote Desktop 2: How to specify a port number for a VNC client to connect. -http://support.apple.com/kb/TA22880
    The only other options are: 1) to run the ARD administrator on a workstation on the network, and then take control of that system from outside, either via VNC or another copy of ARD, or 2) set up a virtual private network (VPN) so that when you connect from outside, your admin system is officially part of the local network.
    Hope this helps."

  • Read/write external file  from remote location

    hi all,
    due to more concern about storage, we are storing some pdf/doc/jpg files in remote location, we need to write/read that files without storing in the database,
    the files would be external file. is there any procedure to do so,
    thanks in advance
    pa1

    sachinpawan wrote:
    hi all,
    due to more concern about storage, we are storing some pdf/doc/jpg files in remote location, we need to write/read that files without storing in the database,
    the files would be external file. is there any procedure to do so,
    thanks in advance
    pa1The database can only deal with files that reside on disk that is mounted to the OS that is hosting the database.

  • Access time capsule from remote location

    I have a time capsule bought in 10/09 - can I access it from a remote location - like out of state - and if so, how?

    Steve 711 wrote:
    I have a time capsule bought in 10/09 - can I access it from a remote location - like out of state - and if so, how?
    The easiest way to do that is with a MobileMe account. There's a tab labeled that way in the Advanced panel of AirPort Utility.
    By the way, don't expect to be able to do Time Machine backups remotely. Such a backup requires too much backup to be successful over the WAN.

  • Sending mail from remote location

    This is a question I have often had and never felt like dealing with. Very often, when I access the net using a wireless network from a location other than my home, I can receive mail in the mail app, but I can not send. I will get the window asking to change the server. Sometimes, I am able to switch to another smtp server (I have several e-mail addresses and servers that I use) and it will work. Often, it will not work at all.
    And, this is an odd part - if it does work, by switching servers, the next message that is set to go will come up with the same message, but the server that I just successfully used will be missing from the list. I will need to restart at that point to get the original list back.
    But, again, in most cases, I simply can't send. I don't really want to go into my mail prefs for my accounts and change the smtp at every new location I am in.
    Any suggestions?
    Thanks,
    Jonathan

    Hello Jonathan.
    I don't really want to go into my mail prefs
    for my accounts and change the smtp at every
    new location I am in.
    Unfortunately, you don't have much choice since this depends on the connected to location.
    Most, if not all ISPs now block the use of SMTP servers outside of their network as part of an overall effort to prevent or reduce spam eminating from the ISP's domain.
    Some wireless networks don't support authenticated SMTP servers. If you are using an authenticated SMTP server for an account, simply changing the authentication to None for the SMTP server will resolve it in this situation.
    I haven't used my PB at a Starbucks so I have no experience there but I have connected to wireless networks at various Airports - paid and free connections. With both a paid and free connection, I wasn't required to make any changes and didn't have any problems sending mail but I don't travel as often as I once did so I don't recall if I sent mail with one of my accounts that uses an authenticated SMTP server but I don't believe it would be a problem with a paid connection.
    Basically, it depends on the connection and their requirements which you must check.

  • Move Database From one location to another in same Server

    Hi,
    I am using 11 g R2 in OEL 5.
    I have installed my database inside oracle base /TEST_DB. Here i have oracle home and datafiles directories etc as usual.
    But i need to move this to /UAT/TEST_DB and run the oracle home and database form there.
    Is this cloning procedure is enough :- *Cloning An Existing Oracle11g Release 2 (11.2.0.x) RDBMS Installation Using OUI [ID 1221705.1]*
    or this is only for Oracle_Home??? If so please tell me how to move both the database and the oracle home.
    Regards,
    Susmit
    Edited by: Susmit on Dec 20, 2011 2:47 PM
    Edited by: Susmit on Dec 20, 2011 2:47 PM

    Susmit wrote:
    Hi,
    I am using 11 g R2 in OEL 5.
    I have installed my database inside oracle base /TEST_DB. Here i have oracle home and datafiles directories etc as usual.
    But i need to move this to /UAT/TEST_DB and run the oracle home and database form there.
    Is this cloning procedure is enough :- *Cloning An Existing Oracle11g Release 2 (11.2.0.x) RDBMS Installation Using OUI [ID 1221705.1]*
    or this is only for Oracle_Home??? If so please tell me how to move both the database and the oracle home.
    Hi,
    I did this just a week ago, or so. You don't need to clone the instance.
    There's a pretty good description on how to do this here:
    http://www.oracle-base.com/articles/misc/RenamingOrMovingOracleFiles.php
    However, after doing the steps outlined here, you're still having the same ORACLE_HOME and ORACLE_BASE. Do the following:
    SQL> alter system create pfile from spfile;and manually change the relevant parameters in the newly created pfile to reflect the changes you're about to do (dump_dest etc..)
    Shut down the instance, move all files in your ORACLE_HOME to the new location, and change all relevant environment variables.
    connect to your idle instance in the new ORACLE_HOME, and do
    SQL> startup pfile=/path/to/your/pfileand after the instance has started correctly, do
    SQL> create spfile from pfile;All done!
    HtH
    Johan

  • SFTP listening channel is not picking the file from remote location

    Hi,
    We are facing an issue in B2B 11g while connecting to the remote trading partner through SFTP.
    It is not picking file from root as trading partner has given the file location as ' . ' root only.
    They have provided us one certificate file (.dat file) and I copied that file in one folder called .ssh (which i have created)
    and mentioned that certificate file location in B2B Listening channel configuration -> Private key = /home/srijna.saxena/.ssh
    I have configured the following parameters:
    Host Name,Port Number = 22 ,Polling interval =60 , path =., username ,password,confirm password,Private key =/home/srijna.saxena/.ssh , minimum age =120000
    Please let us know as soon as possible as it is pretty urgent, if any other parameter I need to set.
    It is showing the error in the logs :
    ' skipping endpoint as it is not for delivery channelPAT_KRR_SFTP '
    Please see the logs for the same:
    [2010-12-15T05:38:09.408-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.410-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.410-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel PAT_KRR_SFTP
    [2010-12-15T05:38:09.411-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.411-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.412-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = host value = 63.64.39.140
    [2010-12-15T05:38:09.412-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = port value = 22
    [2010-12-15T05:38:09.412-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-15T05:38:09.413-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = folder value = .
    [2010-12-15T05:38:09.413-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = user value = sybron
    [2010-12-15T05:38:09.413-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: sYMReT249791539808797642
    [2010-12-15T05:38:09.414-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-15T05:38:09.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = privateKey value = null
    [2010-12-15T05:38:09.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = passPhrase value = null
    [2010-12-15T05:38:09.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-15T05:38:09.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-15T05:38:09.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-15T05:38:09.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = MinimumAge value = 60000
    [2010-12-15T05:38:09.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-15T05:38:09.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-15T05:38:09.418-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-15T05:38:09.418-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-15T05:38:09.418-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] Repository:Repository:getReceivingEndPointList() SFTP Using Password
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: Putting sftp://63.64.39.140:22/.
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: put: Putting sftp://63.64.39.140:22/. for delivery channel CHANNEL_lG-4556589010171674161
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.419-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelPAT_KRR_SFTP
    [2010-12-15T05:38:09.420-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel BUR_KRR_FTP
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.422-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.423-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.423-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.423-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelBUR_KRR_FTP
    [2010-12-15T05:38:09.424-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = host value = corp.burkhartdental.com
    [2010-12-15T05:38:09.424-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-15T05:38:09.424-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = folder value = .
    [2010-12-15T05:38:09.425-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = user value = EDIKerr
    [2010-12-15T05:38:09.425-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: XTLbtCC5548752345566824008
    [2010-12-15T05:38:09.426-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-15T05:38:09.426-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = channel_mask value = None
    [2010-12-15T05:38:09.427-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = cipher_suites value = null
    [2010-12-15T05:38:09.427-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = control_port value = null
    [2010-12-15T05:38:09.427-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = data_port value = null
    [2010-12-15T05:38:09.428-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-15T05:38:09.428-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = filename_format value = "BURKHART_*"
    [2010-12-15T05:38:09.429-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-15T05:38:09.429-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = sourcefile_encoding value = null
    [2010-12-15T05:38:09.429-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = minimum_age value = 60000
    [2010-12-15T05:38:09.430-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-15T05:38:09.430-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-15T05:38:09.430-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-15T05:38:09.431-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = type value = binary
    [2010-12-15T05:38:09.431-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = van value = false
    [2010-12-15T05:38:09.431-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = ccc value = false
    [2010-12-15T05:38:09.432-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = keep_connections value = false
    [2010-12-15T05:38:09.432-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-15T05:38:09.432-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = timestamp_format value = null
    [2010-12-15T05:38:09.433-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = timestamp_offset value = null
    [2010-12-15T05:38:09.433-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneG92sDCgS5IFc9yf1D278H0003UF,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000231a] Repository:: getReceivingEndPointList: name = timestamp_source value = null
    [2010-12-15T05:38:09.433-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid:
    Regards,
    Divya

    Please refer to below thread:
    java.lang.NullPointerException for FTP listening channel in B2B

  • FTP listenind channel is not picking the file from remote location

    Hi,
    We are facing an issue in B2B 11g while connecting to the remote trading partner through FTP.
    It is not picking file from particular directory as trading partner has given the file location.
    I have configured the following parameters:
    Host Name,Port Number = 22 ,Polling interval =60 , path =., username ,password,confirm password, minimum age =240000
    Please let us know if any one has any idea regarding this as soon as possible.
    Please see the logs for the same:
    [2010-12-15T05:38:31.397-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel HEN_KRR_FTP
    [2010-12-15T05:38:31.397-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.398-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelHEN_KRR_FTP
    [2010-12-15T05:38:31.399-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = host value = 209.64.143.245
    [2010-12-15T05:38:31.400-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-15T05:38:31.400-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = folder value = outbound
    [2010-12-15T05:38:31.400-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = user value = kerr
    [2010-12-15T05:38:31.401-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: W8948102720980144729
    [2010-12-15T05:38:31.402-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-15T05:38:31.402-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = channel_mask value = None
    [2010-12-15T05:38:31.403-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = cipher_suites value = null
    [2010-12-15T05:38:31.403-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = control_port value = null
    [2010-12-15T05:38:31.403-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = data_port value = null
    [2010-12-15T05:38:31.403-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-15T05:38:31.404-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-15T05:38:31.404-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-15T05:38:31.404-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = sourcefile_encoding value = null
    [2010-12-15T05:38:31.405-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = minimum_age value = 240000
    [2010-12-15T05:38:31.405-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-15T05:38:31.405-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-15T05:38:31.406-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-15T05:38:31.406-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = type value = binary
    [2010-12-15T05:38:31.406-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = van value = false
    [2010-12-15T05:38:31.407-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = ccc value = false
    [2010-12-15T05:38:31.407-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = keep_connections value = false
    [2010-12-15T05:38:31.407-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-15T05:38:31.408-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = timestamp_format value = null
    [2010-12-15T05:38:31.408-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = timestamp_offset value = null
    [2010-12-15T05:38:31.408-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = timestamp_source value = null
    [2010-12-15T05:38:31.408-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: Putting ftp://209.64.143.245/outbound
    [2010-12-15T05:38:31.408-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: put: Putting ftp://209.64.143.245/outbound for delivery channel CHANNEL_Faf-3368100107832946620
    [2010-12-15T05:38:31.410-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:31.412-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:31.413-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel Sybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.413-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.414-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-15T05:38:31.414-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = folder value = /oracle/soa11g/osoadev1/EDI/TEST
    [2010-12-15T05:38:31.414-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-15T05:38:31.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-15T05:38:31.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = minimum_age value = 240000
    [2010-12-15T05:38:31.415-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-15T05:38:31.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-15T05:38:31.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-15T05:38:31.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-15T05:38:31.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: Putting file://localhost//oracle/soa11g/osoadev1/EDI/TEST
    [2010-12-15T05:38:31.416-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: put: Putting file://localhost//oracle/soa11g/osoadev1/EDI/TEST for delivery channel CHANNEL_eQKNOM4896016506495038796
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-15T05:38:31.417-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-15T05:38:31.419-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IneGETmDCgS5IFc9yf1D278H0003UY,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-0000000000002320] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null

    Hi Anuj,
    Did u find any solution related to above problem?
    We are getting this error as well for FTP listening channel.
    These are the parameters details that we setup in B2B listening channel:
    Host Name ,Polling interval =60 ,Folder name =Get, username ,password,confirm password, minimum age =120000,Transfer type=Binary
    Here are the logs you can check and if you could find something then please let us know.
    000000000143f] [SRC_METHOD: synchedLog_J] Engine: getDeliveryChannelType: Found channel with dcID: CHANNEL_pRRsL-8988995181259001670 name: SAF_KRR_FTP
    [2010-12-20T03:52:07.252-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-20T03:52:07.257-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-20T03:52:07.257-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel SAF_KRR_FTP
    [2010-12-20T03:52:07.257-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.257-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.257-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.258-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = host value = ftp.b2bgateway.net
    [2010-12-20T03:52:07.258-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-20T03:52:07.259-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = folder value = Get
    [2010-12-20T03:52:07.259-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = user value = shansys\FTPSybronDental
    [2010-12-20T03:52:07.259-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: PEexcr8800914208775018001
    [2010-12-20T03:52:07.260-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-20T03:52:07.260-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = channel_mask value = None
    [2010-12-20T03:52:07.260-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = cipher_suites value = null
    [2010-12-20T03:52:07.260-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = control_port value = null
    [2010-12-20T03:52:07.261-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = data_port value = null
    [2010-12-20T03:52:07.261-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-20T03:52:07.261-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-20T03:52:07.261-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-20T03:52:07.261-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = sourcefile_encoding value = null
    [2010-12-20T03:52:07.262-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = minimum_age value = 120000
    [2010-12-20T03:52:07.262-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-20T03:52:07.262-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-20T03:52:07.262-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-20T03:52:07.262-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = type value = binary
    [2010-12-20T03:52:07.263-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = van value = false
    [2010-12-20T03:52:07.263-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = ccc value = false
    [2010-12-20T03:52:07.263-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = keep_connections value = false
    [2010-12-20T03:52:07.263-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-20T03:52:07.263-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = timestamp_format value = null
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = timestamp_offset value = null
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: name = timestamp_source value = null
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: Putting ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: put: Putting ftp://ftp.b2bgateway.net/Get for delivery channel CHANNEL_pRRsL-8988995181259001670
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: addEndpoint: Adding endpoint...channel name SAF_KRR_FTP
    [2010-12-20T03:52:07.264-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: addEndpoint: Endpoint url ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.265-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: addEndpoint: Endpoint url ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.265-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: addEndpoint: This is a listening internal delivery channel ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.265-08:00] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] before initialise : [oracle.tip.b2b.transport.basic.AQReceiver@4eed5df8]
    [2010-12-20T03:52:07.265-08:00] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] TransportLogger Init....
    [2010-12-20T03:52:07.265-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.transport] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.transport.basic.TransportLogger] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] TransportProperties.TransportProperties():minimum_age=120000;password=******;channelId=CHANNEL_pRRsL-8988995181259001670;type=binary;channel_mask=None;file.receiver.polling_interval=60;file.receiver.marker=false;folder=Get;marker=false;ccc=false;file.receiver.minimum_age=120000;internal=true;file.receiver.van=false;host=ftp.b2bgateway.net;keep_connections=false;file.receiver.user=shansys\FTPSybronDental;file.receiver.is_binary=false;file.receiver.password=******;file.receiver.preserve_filename=false;is_binary=false;file.receiver.read_ordered=true;file.receiver.type=binary;preserve_filename=false;useProxy=false;file.receiver.keep_connections=false;file.receiver.ccc=false;van=false;polling_interval=60;user=shansys\FTPSybronDental;
    [2010-12-20T03:52:07.266-08:00] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] after adding to receiver : oracle.tip.b2b.transport.b2b.B2BTransport@41b46d43 [oracle.tip.b2b.transport.basic.AQReceiver@4eed5df8, oracle.tip.b2b.transport.basic.FileReceiver@a1c7462]
    [2010-12-20T03:52:07.266-08:00] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] Not yet inited >>> ep.getUrl() ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.266-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: addEndpoint: Added new endpoint.
    [2010-12-20T03:52:07.266-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: addEndpoint: Exit
    [2010-12-20T03:52:07.267-08:00] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@62683f08] [userId: <anonymous>] [ecid: 0000Io3bohZDCgS5IFc9yf1D278H0017NG,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] B2BTransport.init(url) Endpoint = aq://IP_OUT_QUEUE@jdbc/SOADataSource url parameter = ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.267-08:00] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@62683f08] [userId: <anonymous>] [ecid: 0000Io3bohZDCgS5IFc9yf1D278H0017NG,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] B2BTransport.init(url) Endpoint = ftp://ftp.b2bgateway.net/Get url parameter = ftp://ftp.b2bgateway.net/Get
    [2010-12-20T03:52:07.267-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.transport] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@62683f08] [userId: <anonymous>] [ecid: 0000Io3bohZDCgS5IFc9yf1D278H0017NG,0] [SRC_CLASS: oracle.tip.b2b.transport.basic.TransportLogger] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: log] FileReceiver.init() started ....
    [2010-12-20T03:52:07.268-08:00] [soa_server1] [ERROR] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@62683f08] [userId: <anonymous>] [ecid: 0000Io3bohZDCgS5IFc9yf1D278H0017NG,0] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] java.lang.NullPointerException[[
         at oracle.tip.b2b.transport.basic.FileList.setTimeMode(FileList.java:329)
         at oracle.tip.b2b.transport.basic.FileSourceMonitor.<init>(FileSourceMonitor.java:222)
         at oracle.tip.b2b.transport.basic.FileSourceMonitor.<init>(FileSourceMonitor.java:267)
         at oracle.tip.b2b.transport.basic.FileReceiver.init(FileReceiver.java:470)
         at oracle.tip.b2b.transport.b2b.B2BTransport.init(B2BTransport.java:578)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:232)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:105)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    java.lang.NullPointerException
         at oracle.tip.b2b.transport.basic.FileList.setTimeMode(FileList.java:329)
         at oracle.tip.b2b.transport.basic.FileSourceMonitor.<init>(FileSourceMonitor.java:222)
         at oracle.tip.b2b.transport.basic.FileSourceMonitor.<init>(FileSourceMonitor.java:267)
         at oracle.tip.b2b.transport.basic.FileReceiver.init(FileReceiver.java:470)
         at oracle.tip.b2b.transport.b2b.B2BTransport.init(B2BTransport.java:578)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:232)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:105)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    [2010-12-20T03:52:17.270-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: restartEndpoint: Endpoint restarted...
    [2010-12-20T03:52:17.270-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: handleUpdateChannelEvent: Exit
    [2010-12-20T03:52:17.270-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1daf54ec] [userId: <anonymous>] [ecid: 0000Io3bog5DCgS5IFc9yf1D278H0017NE,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:-4d085fa8:12ce8fe7746:-7ffd-000000000000143f] [SRC_METHOD: synchedLog_J] Engine: processEvents: Exit
    Regards,
    Divya

  • Using MS Access as Database from Remote Machine

    Hi All
    I am trying to use MS access as Data base, I have done the following.
    1. I have Added the mdb file on a remote machines DSN.(Control Panel->Admin Tools->ODBC->System Tools)
    2. In xMII data services->Data Servers, Copied the Default IDBC Server, renamed it and updated the ServerURL as  jdbc:inetdae:<IP of Remote machine>:1433?database=<DB Name>&sql7=true.
    With these things done, I am not able to get the Data Server Accesible.
    Please correct what mistake I have made.
    Thanks and Regards
    Rupesh

    Rupesh,
    First Access is not a very good database... I would suggest using MSSQL, MySQL, or some other 'real' database. But I digress...
    The only supported way to get the data you want from Access is by... you guessed it... the <b>xMII OLEDB UDS</b>. Sure you could try the JDBC - ODBC bridge, but this seems to be shaky.
    Martin - seriously... I'm trying to get the UDSs out to all of you!

Maybe you are looking for