Weblogic 10.3.0 not picking up persistence unit

Hello,
I am facing a problem where Weblogic does not seem to pickup the persistence unit:
[wldeploy] Target state: deploy failed on Server examplesServer
[wldeploy] java.lang.IllegalArgumentException: No persistence unit named 'dao' is available in scope ejb-app. Available persistence units: []OS: Windows XP (Development Environemnt)
WebLogic Server Version: 10.3.0.0
Though I'm working via Eclipse Helios, I am using Weblogic generated (and later modified) Ant scripts to compile, build and deploy to my local Weblogic install, in a 'split development' setup.
Following is the file strutcture:
source
+---build.xml (Ant script)
+---APP-INF
|    +---lib
|         +--- * (shared libraries)
|
+---META-INF
|    +---application.xml
|    +---weblogic-application.xml
|
+---web-app
|    +---WEB-INF
|         +---src
|         +---lib
|
+---ejb-app
     +---com.example.ejb.data (Contains Entity annotations)
      |    +---Pojo1.java
      |    +---Pojo2.java
      |
      +---com.example.ejb.ctrl (Contains business logic and services)
      |    +---MyService.java
      |
      +---META-INF
           +---ejb-jar.xml
            +---weblogic-ejb-jar.xml
            +---persistence.xml     Here is my persistence.xml:
<?xml version="1.0"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
    http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
     version="1.0">
     <persistence-unit name="dao" transaction-type="RESOURCE_LOCAL">
          <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
          <jta-data-source>OraDS</jta-data-source>
          <non-jta-data-source>OraDS</non-jta-data-source>
          <class>com.example.ejb.data.Pojo1</class>
          <class>com.example.ejb.data.Pojo2</class>
          <properties>
               <property name="eclipselink.target-server" value="WebLogic_10" />
               <property name="eclipselink.logging.level" value="FINEST" />
          </properties>
     </persistence-unit>
</persistence>            I am attempting to inject the persistence unit via annotation in MyService.java (a @Stateless session bean):
@PersistenceContext(unitName = "dao")
private EntityManager entityManager;     I had done the same with 10.3.0's default Kodo provider and was getting the same issue.
I've moved the persistence.xml to source/APP-INF, source/APP-INF/lib, source/META-INF and run deploys, it still gives me the error.
The whole EAR is built with wlcompile and appc as per Split Directory development flow.
For some reason, Weblogic does not seem to pick up the "dao" persistence unit into its JNDI tree, application wide or 'ejb-app' module scoped.
Any direction on what next should I be looking at would be helpful.
Edited by: Vyoma on May 25, 2011 10:15 PM
Fixed code formatting.

Pierluigi Vernetto, thanks for that link. Though it was for a web module consumption of the persistence package, I was able to adapt it for use by my ejb module.
Here is my solution, under split-directory development workflow.
Create the persistence module, place the persistence.xml in that module's META-INF.
Create an Ant task in the build.xml to 'wlcompile' and JAR it to the EAR direcotries APP-INF/lib directory.
Exclude the persistence module from the rest of the 'wlcompile' and 'appc' tasks.
I was then able to inject it with annotation in my EJB module.
dvohra16, thanks for that pointer. Now that I've been able to solve, the pressure is off (and shifted to other things). But I will surely check your option out. If I can get that working, it will be much easier than tinkering around with the build.xml and would be the normal flow of split-directory development workflow.
As of now, I will say this thread as 'solved', but if I get it working the way you mention (on my sandbox project), I will surely come back and update this thread.
Edited by: Vyoma on May 27, 2011 11:21 AM

Similar Messages

  • Weblogic 12c not picking up persistence unit in WAR

    I'm trying to get an example CRUD application to run on WebLogic 12c (for the app see: http://henk53.wordpress.com/2012/04/15/jsf2-primefaces3-ejb3-jpa2-integration-project/)
    So far the applications runs on JBoss AS 7.1, GlassFish 3.1.2 and TomEE beta 2. In all those application servers persistence.xml is picked-up, and processed so I'm at a loss what's wrong with WebLogic. I'm using Eclipse 3.7.2 and the Oracle WebLogic 12C WTP server adapter for the deployment.
    I'm getting the following exception:
    java.lang.IllegalArgumentException: No persistence unit named 'entityManager' is available in scope jsf_ejb_jpa. Available persistence units: []
         at weblogic.persistence.ModulePersistenceUnitRegistry.getPersistenceUnit(ModulePersistenceUnitRegistry.java:130)
         at weblogic.persistence.BasePersistenceContextProxyImpl.<init>(BasePersistenceContextProxyImpl.java:40)
         at weblogic.persistence.TransactionalEntityManagerProxyImpl.<init>(TransactionalEntityManagerProxyImpl.java:31)
         at weblogic.persistence.EntityManagerInvocationHandlerFactory.createTransactionalEntityManagerInvocationHandler(EntityManagerInvocationHandlerFactory.java:20)
         at weblogic.persistence.PersistenceManagerObjectFactory.createPersistenceContextProxy(PersistenceManagerObjectFactory.java:66)
         at weblogic.persistence.PersistenceManagerObjectFactory.getObjectInstance(PersistenceManagerObjectFactory.java:31)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:251)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:406)
         at weblogic.j2eeclient.java.ClientReadOnlyContextWrapper.lookup(ClientReadOnlyContextWrapper.java:35)
         at weblogic.jndi.internal.AbstractURLContext.lookup(AbstractURLContext.java:130)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at javax.naming.InitialContext.doLookup(InitialContext.java:265)
         at com.oracle.pitchfork.inject.Jsr250Metadata.jndiLookup(Jsr250Metadata.java:307)
         at com.oracle.pitchfork.inject.Jsr250Metadata.resolveByName(Jsr250Metadata.java:303)
         at com.oracle.pitchfork.inject.Jsr250Metadata.resolve(Jsr250Metadata.java:266)
         at com.oracle.pitchfork.inject.Jsr250Metadata.applyInjections(Jsr250Metadata.java:228)
         at com.oracle.pitchfork.inject.Jsr250Metadata.inject(Jsr250Metadata.java:219)
         at com.oracle.pitchfork.spi.BaseComponentBrokerImpl.getBean(BaseComponentBrokerImpl.java:63)
         at com.oracle.pitchfork.spi.EjbComponentCreatorBrokerImpl.getBean(EjbComponentCreatorBrokerImpl.java:33)
         at weblogic.ejb.container.injection.EjbComponentCreatorImpl.getBean(EjbComponentCreatorImpl.java:76)
         at weblogic.ejb.container.manager.BaseEJBManager.createNewBeanInstance(BaseEJBManager.java:209)
         at weblogic.ejb.container.manager.BaseEJBManager.allocateBean(BaseEJBManager.java:235)
         at weblogic.ejb.container.manager.StatelessManager.createBean(StatelessManager.java:293)
         at weblogic.ejb.container.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:185)
         at weblogic.ejb.container.pool.StatelessSessionPool.getBean(StatelessSessionPool.java:114)
         at weblogic.ejb.container.manager.StatelessManager.preInvoke(StatelessManager.java:174)
         at weblogic.ejb.container.internal.BaseLocalObject.getBeanInstance(BaseLocalObject.java:146)
         at weblogic.ejb.container.internal.BaseLocalObject.preInvoke(BaseLocalObject.java:103)
         at weblogic.ejb.container.internal.BaseLocalObject.__WL_preInvoke(BaseLocalObject.java:67)
         at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:20)
         at com.example.dao.jpa.JpaUserDAO_wrkew_UserDAOImpl.add(Unknown Source)
         at com.example.backing.IndexBacking.addUser(IndexBacking.java:38)
    Notice that "entityManager" is the name of the instance variable in which injection is being performed:
    @PersistenceContext(name="example")
    private EntityManager entityManager;
    If I rename this variable to "em: as follows:
    @PersistenceContext(name="example")
    private EntityManager em;
    Then, lo and behold, the exception changes into:
    java.lang.IllegalArgumentException: No persistence unit named 'em' is available in scope jsf_ejb_jpa. Available persistence units: []
    As the example uses a data-source defined in web.xml, which is only marginally supported in most application servers, I tried to define a WebLogic specific application scoped data-source instead and let the persistence unit use that. I couldn't find a way to do this in a .war (is this even possible?), so I created an .ear archive instead. When deploying the EAR, the data-source is clearly being created, but I'm getting the same exception again.
    I finally created an EJB module with a persistence.xml and a simple Singleton that's injected with the entityManager, and added that to the EAR. This works for the EJB module, but in the web module injection of the other entity manager still fails.
    Any idea what might be the problem?

    After some more fiddling, I discovered it's not WebLogic itself that's at fault here, but most likely Oracle's WTP adapter. Apparently it doesn't include persistence.xml in the archive that gets deployed. When I export the project as an .ear archive and copy this to WebLogic's autodeploy directly, things do work.
    I tried to find out what the main difference was between the deployments, but I could not find where the Oracle WTP adapter creates the deployment. I tried to test where a resource inside the EAR resides on the filesystem via the following code inside a backing bean:
    URL url = Thread.currentThread().getContextClassLoader().getResource("com/example/backing");
    It looks like there isn't a real .war or .ear being created and deployed, but there's a link back to the workspace, as the URL resolves to:
    file:/Users/henk/eclipse37ee/workspace/jsf_ejb_jpa/build/classes/com/example/backing/
    If I execute the same code for the ear in the autodeploy folder, the URL resolves to some jar inside:
    /Users/henk/eclipse37ee/wls1211_dev/mydomain/servers/myserver/tmp/_WL_user/_appsdir_jsf_ejb_jpa_ear_ear/2jzks6/war/WEB-INF/lib/
    In case of the WTP 'deployment' linking back to the Eclipse workspace, META-INF/persistence.xml is actually there too, but for some reason Weblogic can't find it there?
    Edited by: Henk on Apr 29, 2012 2:57 PM

  • ASDeploymentException: Could not resolve a persistence unit corresponding

    Hi Everyone,
    I have been modifying our enterprise application to include 3 .war flies rather than 2 .war files previously. When I deploy the new .ear file, I get the following deployment exception.
    I have tried adding the ejb reference for ejb "BiLinkGroupFacade" to the web.xml file for the new .war package, however when I do this I get teh same exception for another ejb in our enterprise app.
    Has anyone encountered this problem before?
    Thanks very much for your time,
    lpg
    Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Could not resolve a persistence unit corresponding to the persistence-context-ref-name [ca.avant.amber.bilink.BiLinkGroupFacade/em] in the scope of the module called []. Please verify your application.
    at com.sun.enterprise.deployment.BundleDescriptor.findReferencedPUsViaPCRefs(BundleDescriptor.java:702)
    at com.sun.enterprise.deployment.EjbBundleDescriptor.findReferencedPUs(EjbBundleDescriptor.java:862)
    at com.sun.jdo.spi.persistence.support.ejb.ejbc.PersistenceProcessor.getAllPersistenceUnitDescriptors(PersistenceProcessor.java:165)
    at com.sun.jdo.spi.persistence.support.ejb.ejbc.PersistenceProcessor.processApplication(PersistenceProcessor.java:132)
    at com.sun.jdo.spi.persistence.support.ejb.ejbc.DeploymentEventListenerImpl.processApplication(DeploymentEventListenerImpl.java:211)
    at com.sun.jdo.spi.persistence.support.ejb.ejbc.DeploymentEventListenerImpl.processEvent(DeploymentEventListenerImpl.java:172)
    at com.sun.jdo.spi.persistence.support.ejb.ejbc.DeploymentEventListenerImpl.notifyDeploymentEvent(DeploymentEventListenerImpl.java:122)
    at com.sun.enterprise.deployment.backend.DeploymentEventManager.notifyDeploymentEvent(DeploymentEventManager.java:79)
    at com.sun.enterprise.deployment.backend.AppDeployer.postDeploy(AppDeployer.java:392)
    at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:251)
    at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:148)
    at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:191)
    at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:108)
    at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:919)
    at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:276)
    at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:294)
    at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.deploy(ApplicationsConfigMBean.java:555)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:375)
    at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:358)
    at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:464)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
    at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:90)
    at $Proxy1.invoke(Unknown Source)
    at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:304)
    at com.sun.enterprise.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:174)
    at com.sun.enterprise.deployment.autodeploy.AutoDeployer.invokeDeploymentService(AutoDeployer.java:564)
    at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployJavaEEArchive(AutoDeployer.java:545)
    at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deploy(AutoDeployer.java:492)
    at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployAll(AutoDeployer.java:267)
    at com.sun.enterprise.deployment.autodeploy.AutoDeployControllerImpl$AutoDeployTask.run(AutoDeployControllerImpl.java:374)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    ;_RequestID=c409950f-6e65-40b8-91dd-35b49289d322;|"DPL8011: autodeployment failure while deploying the application : Could not resolve a persistence unit corresponding to the persistence-context-ref-name [ca.avant.amber.bilink.BiLinkGroupFacade/em] in the scope of the module called []. Please verify your application.
    [AutoDeploy] Autodeploy failed : /home/lgrimes/MyRuntimeEnv/lgdomain9.1/autodeploy/amber.ear.

    This error deals with EntityManager configuration rather than EJB references. It means you have a @PersistenceContext dependency that cannot be resolved to its corresponding persistence unit. If the unitName attribute is specified, then the deployment code is not finding a persistence unit matching that name. If there's no unitName specified then there are 0 persistence units found.

  • "Could not resolve a persistence unit" error...

    Hello,
    I created a Netbeans Visual Web application. I added an Entity Class from a database table. A resource is added into Server Resources part. when I look at its properties, I see that it's JNDI name is set to "bitkiwiki" and I check the Sun Application Server's JDBC Resources and I see "bitkiwiki" in JDBC Resources.
    My controller class has a EntityManagerFactory element:
        @PersistenceUnit(unitName = "bitkiwiki")
        private EntityManagerFactory emf;When I compile the project it compiles successfully but when I deploy it, I get an error like this:
    Deploying application in domain failed; Deployment Error -- Could not resolve a persistence unit corresponding to the persistence-unit-ref-name .......
    The Persistance UnitName exists in the server resources but it still complains about it.
    What's the problem you think?
    Thanks.

    In the persistence.xml you have something like this:
    <persistence-unit name="EJBCustomerPU" transaction-type="JTA">
    <jta-data-source>cust</jta-data-source>
    <properties>
    </properties>
    </persistence-unit>
    The unitName in the annotation should equal "EJBCustomerPU". I think the "bitkiwiki" is wrong. The "cust" in the above persistence.xml should be the resource you mention in the jdbc section of the app server admin.

  • Weblogic 6.1 , does not pick up modified static page

    hi,
    Weblogic 6.1
    Weblogic opens a HTML page in a directory (not EJB, nothing fancy), fine.
    Then, if i modify the static page , Weblogic does not pick up the changed html
    until it is restarted. Is it normal?
    Is there any setting to force weblogic to change the latest version of the static
    page?

    Please send an email to [email protected] to open a support case.
              Matthias Ernst wrote:
              > I would like to report a bug in WLS 6.1 SP3 that cost me a few hours.
              >
              > If you set a content type that does not start with 'text', the charset
              > attribute will be simply ignored, i.e. the response writer is still in
              > ISO-8859-1.
              > It will, however turn up in the HTTP header.
              >
              > Test:
              > response.setContentType("fake/html;charset=utf-8");
              > response.getWriter().write((char)160);
              >
              > The response will contain the header above but will consist only of
              > byte 160.
              > If you change the above to text/html, it will suddenly be UTF-8
              > encoded.
              >
              > The bytecode of ServletResponseImpl reveals exactly that logic above.
              > Any sensible explanation ?
              >
              > Thank you
              > Matthias
              Rajesh Mirchandani
              Developer Relations Engineer
              BEA Support
              

  • Packing instructins not picked during Handling Units

    Hi all
    I had created the packing instructions with the packaging material and the material to be packed .
    when i tried to create the HUM's with reference to the packaging instructions the material to be packed is not getting picked .
    can some explain what could be the possible reasons .
    I simulation tab of the packing instructions the status of the packaging material is " ? "
    thanks ,
    ksr

    Hi Vishal ,
    thanks for the reply .
    the steps i followed are
    1) created packaging instructions using POP1 for a material .
    2)  Maintained POF1 - Create Packing Instruction Determination Record during this i checked and able to see the packaging instructions assigned to it too  for STOC .
    3)  Non-Assigned Packing profile with STOC condition type exists .
    still i am not able to pick the automatic packing instructions while using HU02 .
    please correct me if i am wrong somewhere .
    thanks ,
    ksr

  • Weblogic Server not picking the jar files in WEB-INF/lib folder

    we are facing a strange problem where Weblogic App Server is not picking the jar files present inside the WEB-INF/lib folder if we update the jar file path in the classpath of the start script then the classes get loaded properly.
    Is there any specific setting which I need to do in weblogic to pick these jars ?

    Class loaders associated with a Web application can be configured to locate local classes first. To enable this we have to set the <prefer-web-inf-classes> to true in the deployment override weblogic.xml, for example
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    http://blog.transfer-solutions.com/2010/12/weblogic-class-loading/

  • EJB Diagram doesn't prompt to Associate with Persistence Unit

    I'm new to EJB/Faces world.
    I did the tutorial Build a Web Application with JDeveloper 11g Using EJB, JPA, and JavaServer Faces.
    But when I add the EJB Diagram, am not prompted to pick a persistence unit and hence am not able to drop my JPA's.
    Any ideas why I might be seeing this?

    I don't remember specifically. I think it was caused at a point during the tutorial that I double clicked on one of the files it created to try to get a feel for what was going on. This may have corrupted that file. I restarted the tutorial and the second time around didn't open any of the extraneous files and the prompt appeared as expected.

  • Weblogic Classpath setting error not able to pick the properties file

    Hi All,
    We are using a third party jar and create a java Web service on the top of that jar. This jar file need two configuration file .properties and .xml when we deploy war for the application into weblogic server it will give file not found error. Though this file already exists inside the .war but from the application it is not able to pick the files.
    We find that these file need to be put in weblogic domain home and we put it there and application works.
    I decompile the jar and found that inside java class they use FileReader("allXXX.xml") path and when I Google it and found that it will pick the file from weblogic domain directory.
    The issue is that we need to put properties file in specific weblogic folder like /3party/config by setting the class path inside startWebLogic.cmd. Please let us know solution for same
    Thanks in advance
    Edited by: sb**** on Mar 19, 2012 9:08 AM

    Hi , I am also facing the similer issue. I am deploying war file of my Spring MVC application , but its not picking resource bundle .properties files from one of the configuration file.
    <bean id="PropertiesRepository"
              class="LanguageBasedPropertiesRepository">
              <property name="propertiesFiles">
                   <map>
                        <entry key="en" value="classpath:/exceptionMessages.properties" />
                        <entry key="es" value="classpath:/exceptionMessages_es.properties" />
                        <entry key="default" value="classpath:/exceptionMessages.properties" />
                   </map>
              </property>
         </bean>
    Please let me know how we can modify this to make it work.
    thanks .

  • Weblogic 10.3.2.0 installation does not pick the right JDK

    The installation does not pick up the right jdk version that is jdk 11.6.0_11 . Although the machine is running the same. Instead it picks up jdk 1.6.0_14. have tested the machine many times. I am Installing Oracle SOA Suite 11g.

    Inside "startWebLogic.sh" file add the JAVA_HOME like following (just below the "setDomainEnv.sh" call):
    JAVA_HOME=C:\bea103\jdk1.6.0_17
    See if this helps.
    Thanks

  • Dynamic JNDI in FTP Adapter | jca.jndi property not picked by Adapter

    Hi,
    I am trying to pass jndi dynamically to FTP adapter using the steps mentioned in http://blogs.oracle.com/adapters/entry/changing_the_connection_factory_jndi_dynamically_in_ftp_adapter.
    I have configured FTP jndi(eis/Ftp/SoaFtpAdapter) at app server.
    And included the following property in the invoke activity that calls the FTP adapter
    <bpelx:inputProperty name="jca.jndi" variable="jndiLocation"/>
    Invoke activity definition looks as following
        <invoke name="Invoke1"
                partnerLink="FTPFileListAdap" portType="ns3:FileListing_ptt"
                operation="FileListing"
                inputVariable="Invoke1_FileListing_InputVariable"
                outputVariable="Invoke1_FileListing_OutputVariable"
                bpelx:invokeAsDetail="no">
          <bpelx:inputProperty name="jca.jndi" variable="jndiLocation"/>
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.ftp.Directory" variable="directoryName"/>
          </bpelx:toProperties>   
        </invoke>FTP Adapter jca configuration is as following
    <adapter-config name="FTPFileListAdap" adapter="FTP Adapter" wsdlLocation="FTPFileListAdap.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
      <connection-factory location="eis/Ftp/SoaFtpAdapter12" UIincludeWildcard="*.txt"/>
      <endpoint-interaction portType="FileListing_ptt" operation="FileListing">
        <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPListInteractionSpec">
          <property name="PhysicalDirectory" value="/in/dev"/>
          <property name="Recursive" value="true"/>
          <property name="IncludeFiles" value=".*\.txt"/>
        </interaction-spec>
      </endpoint-interaction>
    </adapter-config>While calling the BPEL i am passing two parameters
    jndiLocation = eis/Ftp/SoaFtpAdapter
    and
    directoryName = /in/dev
    Following is the fault that I am getting while executing the BPEL.
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <bindingFault>
    <part  name="summary">
    <summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'FileListing' failed due to: JCA Binding Component connection issue. JCA Binding Component is unable to create an outbound JCA (CCI) connection. RunTimeConfigFTP:FTPFileListAdap [ FileListing_ptt::FileListing(Empty,filelist) ] : The JCA Binding Component was unable to establish an outbound JCA CCI connection due to the following issue: BINDING.JCA-12510 JCA Resource Adapter location error. Unable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/> The JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='eis/Ftp/SoaFtpAdapter12'. The reason for this is most likely that either 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to eis/Ftp/SoaFtpAdapter12. In the last case you will have to add a new WebLogic JCA connection factory (deploy a RAR). Please correct this and then restart the Application Server Please make sure that the JCA connection factory and any dependent connection factories have been configured with a sufficient limit for max connections. Please also make sure that the physical connection to the backend EIS is available and the backend itself is accepting connections. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>
    </part>
    <part  name="detail">
    <detail>JCA Resource Adapter location error. Unable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/> The JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='eis/Ftp/SoaFtpAdapter12'. The reason for this is most likely that either 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to eis/Ftp/SoaFtpAdapter12. In the last case you will have to add a new WebLogic JCA connection factory (deploy a RAR). Please correct this and then restart the Application Server </detail>
    </part>
    <part  name="code">
    <code>12510</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>It seems that FTP Adapter is not picking up the value from jca.jndi property.
    How to handle this situation.
    Thanks
    Ajay

    Hi,
    Since I am working on BPEL 2.0
    Following changes solved my problem.
    In the invoke activity, I replaced the following xml tag
          <bpelx:inputProperty name="jca.jndi" variable="jndiLocation"/>with following
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.jndi" variable="jndiLocation"/>
          </bpelx:toProperties> And now my invoke activity looks as follow.
        <invoke name="Invoke1"
                partnerLink="FTPFileListAdap" portType="ns3:FileListing_ptt"
                operation="FileListing"
                inputVariable="Invoke1_FileListing_InputVariable"
                outputVariable="Invoke1_FileListing_OutputVariable"
                bpelx:invokeAsDetail="no">
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.ftp.Directory" variable="directoryName"/>
          </bpelx:toProperties>   
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.jndi" variable="jndiLocation"/>
          </bpelx:toProperties>      
        </invoke>Thanks
    Ajay

  • 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

  • MDB is not picking up messages in the Queue

    Hi ,
    I am trying to implement a MDB (Producer) , that acts as a Message Producer also . This MDB pickes up a message from a Queue and sends it to another Queue(Queue 2) after some processing. The MDB listening to the Queue 2 is not being able to pick this message.
    The Weblogic console shows that the message is pending.
    The transaction-type is Container and transaction-attribute is 'Required' for the Producer (MDB) ...
    I am creating a QueueSession as con.createQueueSession(true, Session.AUTO_ACKNOWLEDGE) . I also tried specifying queuesession.commit() ...
    even then the Message is not picked by the MDB listening on the other side...
    Please help me out

    any one

  • LR.3.3 Web module not picking up image edits

    When I create a slideshow in LR3.3, it does not pick up the edits that I made to the images. The only things it picks up are crop and maybe sharpening (hard to tell). Haven't had the problem before today. Any help will be appreciated.
    Thanks,
    John

    Pierluigi Vernetto, thanks for that link. Though it was for a web module consumption of the persistence package, I was able to adapt it for use by my ejb module.
    Here is my solution, under split-directory development workflow.
    Create the persistence module, place the persistence.xml in that module's META-INF.
    Create an Ant task in the build.xml to 'wlcompile' and JAR it to the EAR direcotries APP-INF/lib directory.
    Exclude the persistence module from the rest of the 'wlcompile' and 'appc' tasks.
    I was then able to inject it with annotation in my EJB module.
    dvohra16, thanks for that pointer. Now that I've been able to solve, the pressure is off (and shifted to other things). But I will surely check your option out. If I can get that working, it will be much easier than tinkering around with the build.xml and would be the normal flow of split-directory development workflow.
    As of now, I will say this thread as 'solved', but if I get it working the way you mention (on my sandbox project), I will surely come back and update this thread.
    Edited by: Vyoma on May 27, 2011 11:21 AM

Maybe you are looking for

  • Destroy in JavaBean with application scope?

    Hi, I am using a java bean in my jsp application with scope "application". I know that this java bean will be terminated only when the server stops or shuts down (Apache Tomcat 5.5). I need to cleanup something manually when the server shuts down. Ca

  • Scientific notation and Java

    Hi. I Have the following questions. Would appreciate any response. I am using JDK 1.4.2 Reading an Excel file with POI from appache. The spread sheet has mixed data, and text - no formulas, taht's taken care of Because of the nature of the applicatio

  • Where to run traditional trial balance?

    Where in B1 can a user run a simple traditional trial balance for a given date range.  I tried running the Financial/Financial Reports/Accounting/General Ledger report, but it is grouping the transactions by business partner.  I want a report that is

  • 11g SOA server start up error

    Hi, I get this error when starting my soa server, has any one see this before? java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessCo

  • Error : Could not load com.sap.ip.bi.rig.Format in WAD 7

    Hi, Given config to be as below:- ABAP Stack - BI 7 EhP1 SP3 Java Stack - BI 7 SP Level 19 while I try to implement the Format Cell option using Analysis Web Item modification in WAD 7.0, I get the below error Could not load com.sap.ip.bi.rig.Format