Java.lang.NullPointerException hostname:localhost.localdomain

All,
I have developed web service and it is perfectly working windows system..
When i move web server - service to Linux.. when client try to call service.. i am getting following exception...earlier web service port is not open on the LInux at the time i am getting nullpointer exception... after the port are properly opened
Following are present in my host file
hosts
IP address localhost.localdomain localhost
please help me on this.. Urgent
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: java.lang.NullPointerException
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}hostname:localhost.localdomain
java.lang.NullPointerException
at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at javax.xml.parsers.SAXParser.parse(Unknown Source)
at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:796)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
at org.apache.axis.client.Call.invoke(Call.java:2767)
at org.apache.axis.client.Call.invoke(Call.java:2443)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at com.tspl.PapaServiceSoapBindingStub.createDetailPR(PapaServiceSoapBindingStub.java:173)
at org.apache.jsp.Welcome_jsp._jspService(Welcome_jsp.java:123)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:873)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
at java.lang.Thread.run(Unknown Source)

my appliaction install this http://www.ssco.tv  when google robots access this url http://www.ssco.tv/faces/  throw  exeption
my application  web.xml
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
  </servlet-mapping>
      <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces</url-pattern>
  </servlet-mapping>
  <servlet-mapping>

Similar Messages

  • Java.lang.NullPointerException returned from webservice

    Hi I have an axis client which sends an image attachment to an axis webservice, however I am returned with a null pointer exception,
    this is my client,
    package chapter5;
    import java.net.URL;
    import org.apache.axis.client.Service;
    import org.apache.axis.client.Call;
    import org.apache.axis.encoding.XMLType;
    import org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory;
    import org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory;
    import javax.xml.rpc.ParameterMode;
    import javax.xml.rpc.namespace.QName;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    public class AttachmentServiceClient{
         public AttachmentServiceClient(){}
         public static void main(String args[]){
              try{
                   String filename = "D:\\images\\products\\r.jpg";
                   //create the data for the attached file
                   DataHandler dhSource = new DataHandler(new FileDataSource(filename));
                   String endpointURL = "http://localhost:8080/axis/services/AttachmentService";
                   String methodName = "addImage";
                   Service service = new Service();
                   Call call = (Call)service.createCall();
                   call.setTargetEndpointAddress(new URL(endpointURL));
                   call.setOperationName(new QName("AttachmentService",methodName));
                   call.addParameter("sku",XMLType.XSD_STRING,ParameterMode.PARAM_MODE_IN);
                   QName qname = new QName("AttachmentService","DataHandler");
                   call.addParameter("image",qname,ParameterMode.PARAM_MODE_IN);
                   //register the datahandler
                   call.registerTypeMapping(dhSource.getClass(),qname,JAFDataHandlerSerializerFactory.class,JAFDataHandlerDeserializerFactory.class);
                   call.setReturnType(XMLType.XSD_STRING);
                   Object[] params = new Object[]{"SKU-111",dhSource};
                   String result = (String)call.invoke(params);
                   System.out.println("The response: "+result);
    ;          }catch(Exception e){
                   System.err.println(e.toString());
    this is my webservice,
    package chapter5;
    import javax.activation.DataHandler;
    import java.io.FileOutputStream;
    import java.io.File;
    import java.io.BufferedInputStream;
    public class SparePartAttachmentService{
         public SparePartAttachmentService(){}
         public String addImage(String sku,DataHandler dataHandler){
              System.out.println("trying");
              try{
                   String filepath = "c:/wrox-axis/"+sku+"-image.jpg";
                   FileOutputStream fout = new FileOutputStream(new File(filepath));
                   BufferedInputStream in = new BufferedInputStream(dataHandler.getInputStream());
                   while(in.available()!=0){
                        fout.write(in.read());
              }catch(Exception e){
                   return e.toString();
              return "Image: "+sku+" has been added successfully!!";
    I did a test by stripping out the attachment being sent by the client and just let it send the string,
    then in the webservice I stripped out the lines for the attachment and just returned the string and it worked ok, so it has been deployed correctly.
    I have the Java Activation framework both in tomcat commons and my webapps lib dir.
    I'm pretty sure the error is being thrown here,
    public String addImage(String sku,DataHandler dataHandler){
    any help would be greatly appreciated,
    thank you,
    JP.

    Ok, I have now successfully got the stack trace to show where the exception bubbled, Im suprised its in the axis client as I assumed it was in the webservice, but this whole exercise has been extremely beneficial,
    anyway this is the client code again and the stack trace error, I now think the problem lies within the JAF, possibly, however, im doing something incorrectly,
    package chapter5;
    import java.net.URL;
    import org.apache.axis.client.Service;
    import org.apache.axis.client.Call;
    import org.apache.axis.encoding.XMLType;
    import org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory;
    import org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory;
    import javax.xml.rpc.ParameterMode;
    import javax.xml.rpc.namespace.QName;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.activation.DataSource;
    import java.io.File;
    public class AttachmentServiceClient{
         public AttachmentServiceClient(){}
         public static void main(String args[]){
              try{
                   String filename = "D:\\javaDev\\utilities\\coldfusionMX\\Java\\javapetstore\\r.jpg";
                   //create the data for the attached file
                   DataHandler dhSource = new DataHandler(new FileDataSource(new File(filename)));
                   String endpointURL = "http://localhost:8080/axis/services/AttachmentService";
                   String methodName = "addImage";
                   Service service = new Service();
                   Call call = (Call)service.createCall();
                   call.setTargetEndpointAddress(new URL(endpointURL));
                   call.setOperationName(new QName("AttachmentService",methodName));
                   call.addParameter("sku",XMLType.XSD_STRING,ParameterMode.PARAM_MODE_IN);
                   QName qname = new QName("AttachmentService","DataHandler");
                   call.addParameter("image",qname,ParameterMode.PARAM_MODE_IN);
                   //register the datahandler
                   call.registerTypeMapping(dhSource.getClass(),qname,JAFDataHandlerSerializerFactory.class,JAFDataHandlerDeserializerFactory.class);
                   call.setReturnType(XMLType.XSD_STRING);
                   Object[] params = new Object[]{"SKU-111",dhSource};
                   try{
                        String result = (String)call.invoke(params);
                        System.out.println("The response: "+result);
                   }catch(Exception f){
                        f.getStackTrace();
                        f.printStackTrace();
              }catch(Exception e){
                   System.err.println("error");
    stack trace
    C:\wrox-axis>java chapter5.AttachmentServiceClient
    java.lang.NullPointerException
    at org.apache.axis.AxisFault.makeFault(Unknown Source)
    at org.apache.axis.SOAPPart.getAsString(Unknown Source)
    at org.apache.axis.SOAPPart.getAsBytes(Unknown Source)
    at org.apache.axis.Message.getContentLength(Unknown Source)
    at org.apache.axis.transport.http.HTTPSender.invoke(Unknown Source)
    at org.apache.axis.strategies.InvocationStrategy.visit(Unknown Source)
    at org.apache.axis.SimpleChain.doVisiting(Unknown Source)
    at org.apache.axis.SimpleChain.invoke(Unknown Source)
    at org.apache.axis.client.AxisClient.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at chapter5.AttachmentServiceClient.main(AttachmentServiceClient.java:45
    Caused by: java.lang.NullPointerException
    at org.apache.axis.encoding.ser.JAFDataHandlerSerializer.serialize(Unkno
    wn Source)
    at org.apache.axis.encoding.SerializationContextImpl.serializeActual(Unk
    nown Source)
    at org.apache.axis.encoding.SerializationContextImpl.serialize(Unknown S
    ource)
    at org.apache.axis.encoding.SerializationContextImpl.outputMultiRefs(Unk
    nown Source)
    at org.apache.axis.message.SOAPEnvelope.outputImpl(Unknown Source)
    at org.apache.axis.message.MessageElement.output(Unknown Source)
    ... 13 more

  • Sender mail adapter java.lang.NullPointerException

    Hi Experts,
    I have a Mail --> PI --> R/3 scenario and I am configuring the Mail sender adapter for POP3. The issue is that the POP server is not configured to be accessed via a URL and hence the URL pop://hostname/ is causing the following error at runtime:
    1. When I use pop://FQDN host name/
    Error: exception caught during processing mail message; java.net.UnknownHostException
    2. When I use pop://IP address of host:port/
    Error: exception caught during processing mail message; java.lang.NullPointerException
    I am able to ping the POP3 server from the PI server using both the FQDN and IP address.
    Can someone please help.
    Thanks,
    Shobhit

    Hi,
    I think this problem is due to POP3 configuration at PI  basis level.  Check with basis team whether they have configured POP3 configuration at PI basis level or not.

  • Java.lang.NullPointerException in File Channel

    Hi All,
    I have a File scenario running in system since 1 year. the sender file channel is scheduled at 4.00 AM in the morning every day. It works fine. But suddenly i got an error Error occurred while connecting to the FTP server "XXXXXXXXX:21": java.lang.NullPointerException
    The channel again ran at 4:20AM and it was successful. I am not able to find the exact error and the reason behind it.
    Can anybody suggest me what could be probable reason/s and how to find them? (I got this error in communication channel monitoring)
    Thanks in Advance.
    Sanjay

    Hi Install tcpgw and configure the TCPGateway in a way that it points to the FTP Server address
    Enter the following data in the screen
    Listen Port : 21
    Target Hostname : <Enter hostname>
    Target Port : 21
    /people/stefan.grube/blog/2007/03/29/troubleshooting-soap-http-and-mail-adapter-scenarios-with-tcpgateway
    /people/varadharajan.krishnasamy/blog/2007/01/09/troubleshooting-soap-message--xi

  • Java.lang.NullPointerException for FTP listening channel in B2B

    Hi,
    We are getting this error for FTP listening channel in B2B.
    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.Please check it and 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

    Thanks Sinkar for your interest in this issue.
    We have tested with the Timestamp Configuration what you have suggested but still the issue is existing.
    Infact we tried without Minimum Age as well then also B2B is unable to pick the File from remote through FTP Listening channel.
    We are having 7 FTP Listening channel and 1 SFTP listening channels for 8 TP's and out of that 2 are working as expected. it is strange that how come other Listening channels are working with the same configuration.
    Though we are able to FTP through putty to all the remote channels but strangely only two listening channels are working from B2B and rest not.
    Below is the log we tried with Minimum age option and the Timestamp configuration you have provided:
    Dirty:true
    [2010-12-21T22:35:07.113-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: $afco%ental
    [2010-12-21T22:35:07.116-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - SecurityUtility - Warning - getPasswordCredentialAsString - cred null
    [2010-12-21T22:35:07.119-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: rCLQT-2801320649293208070
    [2010-12-21T22:35:07.120-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - updatePasswordCredential - In updatePasswordCredential method - key:rCLQT-2801320649293208070
    [2010-12-21T22:35:07.121-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - updatePasswordCredential - In updatePasswordCredential method - resetting credential
    [2010-12-21T22:35:07.209-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: $afco%ental
    [2010-12-21T22:35:07.212-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - SecurityUtility - Warning - getPasswordCredentialAsString - cred null
    [2010-12-21T22:35:07.215-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.ui] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] ##### In save ---CALLOUT $$$CALLOUT_RiQIk-8887198267468306688Callout
    [2010-12-21T22:35:07.476-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: Thread-36] [userId: <anonymous>] [ecid: 0000Io8SAkqDCgS5IFc9yf1D47660000_7,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-0000000000002a17] [SRC_METHOD: synchedLog_J] MDSUtil: metadataObjectChanged: http://xmlns.oracle.com/integration/b2b/profile TradingPartner UPDATE
    [2010-12-21T22:35:07.554-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] ValidationEngine: invokeRules: TradingPartnerDeliveryChannelValidator
    [2010-12-21T22:35:07.559-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-21T22:35:07.601-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-21T22:35:07.603-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel SAF_KRR_FTP
    [2010-12-21T22:35:07.603-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-21T22:35:07.603-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-21T22:35:07.604-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = host value = ftp.b2bgateway.net
    [2010-12-21T22:35:07.605-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = polling_interval value = 5
    [2010-12-21T22:35:07.605-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = folder value = Get
    [2010-12-21T22:35:07.605-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = user value = shansys\FTPSybronDental
    [2010-12-21T22:35:07.606-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.security.SecurityUtility - getPasswordCredentialAsString - In getPasswordCredentialAsString method - key: rCLQT-2801320649293208070
    [2010-12-21T22:35:07.607-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = password value = *****
    [2010-12-21T22:35:07.608-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = channel_mask value = None
    [2010-12-21T22:35:07.608-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = cipher_suites value = null
    [2010-12-21T22:35:07.609-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = control_port value = 21
    [2010-12-21T22:35:07.609-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = data_port value = 1023
    [2010-12-21T22:35:07.609-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = useProxy value = false
    [2010-12-21T22:35:07.610-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-21T22:35:07.610-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-21T22:35:07.610-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = sourcefile_encoding value = null
    [2010-12-21T22:35:07.611-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = minimum_age value = 120000
    [2010-12-21T22:35:07.611-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-21T22:35:07.611-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-21T22:35:07.612-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-21T22:35:07.612-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = type value = binary
    [2010-12-21T22:35:07.613-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = van value = false
    [2010-12-21T22:35:07.613-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = ccc value = false
    [2010-12-21T22:35:07.613-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = keep_connections value = false
    [2010-12-21T22:35:07.614-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-21T22:35:07.614-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = timestamp_format value = null
    [2010-12-21T22:35:07.615-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = timestamp_offset value = 0
    [2010-12-21T22:35:07.615-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = timestamp_source value = TIMESTAMP
    [2010-12-21T22:35:07.615-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: Putting ftp://ftp.b2bgateway.net/Get
    [2010-12-21T22:35:07.615-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: put: Putting ftp://ftp.b2bgateway.net/Get for delivery channel CHANNEL_uh4433125198583807866
    [2010-12-21T22:35:07.615-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-21T22:35:07.616-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSAF_KRR_FTP
    [2010-12-21T22:35:07.618-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-21T22:35:07.621-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-21T22:35:07.622-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: getting endpoint list for deliverychannel Sybron Dental Specialties_ListeningChannel
    [2010-12-21T22:35:07.623-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-21T22:35:07.624-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = polling_interval value = 60
    [2010-12-21T22:35:07.624-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = folder value = /oracle/soa11g/osoadev1/EDI/TEST
    [2010-12-21T22:35:07.625-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = filename_format value = null
    [2010-12-21T22:35:07.625-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = directoryname_format value = null
    [2010-12-21T22:35:07.625-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = minimum_age value = 240000
    [2010-12-21T22:35:07.626-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = archive_dir value = null
    [2010-12-21T22:35:07.626-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = preserve_filename value = false
    [2010-12-21T22:35:07.627-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = is_binary value = false
    [2010-12-21T22:35:07.627-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: name = marker value = false
    [2010-12-21T22:35:07.627-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: Putting file://localhost//oracle/soa11g/osoadev1/EDI/TEST
    [2010-12-21T22:35:07.627-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: put: Putting file://localhost//oracle/soa11g/osoadev1/EDI/TEST for delivery channel CHANNEL_eQKNOM4896016506495038796
    [2010-12-21T22:35:07.627-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-21T22:35:07.627-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-21T22:35:07.628-08:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] Repository:: getReceivingEndPointList: skipping endpoint as it is not for delivery channelSybron Dental Specialties_ListeningChannel
    [2010-12-21T22:35:07.628-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    [2010-12-21T22:35:07.631-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: Srijna.Saxena] [ecid: 0000IoCmSbPDCgS5IFc9yf1D4766000C18,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: b2bui] [dcid: 060ea2ba92914b9b:7c9a2e39:12d083aef82:-7fff-00000000000040c5] [SRC_METHOD: synchedLog_J] QueryManager: getMDSSession: Enter Label null
    Appreciate any further suggestions.
    Regards,
    Divya

  • Problem about "Exception in thread "main" java.lang.NullPointerException"

    This is t error message once i run the file
    Exception in thread "main" java.lang.NullPointerException
    at sendInterface.<init>(sendInterface.java:64)
    at sendInterface.main(sendInterface.java:133)
    * @(#)sendInterface.java
    * @author
    * @version 1.00 2008/7/18
    import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.GridLayout;
    import java.awt.Panel;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListModel;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JButton;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JRadioButton;
    import javax.swing.JScrollPane;
    import javax.swing.ListModel;
    import javax.swing.UIManager;
    import javax.swing.SwingConstants;
    import java.io.*;
    import java.sql.*;
    import java.net.*;
    public class sendInterface  /*implements ActionListener*/{
         JFrame frame = new JFrame();
         private Panel topPanel;
         private Panel sendMessagePanel;
         private Panel sendFilePanel;
         private JLabel senderID;
         private JLabel receiverID;
         private JLabel senderDisplay;
         private DefaultListModel receiverListModel = new DefaultListModel();
         private JList receiverID_lst = new JList(receiverListModel);
         private JRadioButton sendType;
         String userName;
         String[] userList = null ;
         int i=0;
         Connection con;     
        public sendInterface() {
             String ListName;
                 try
                     JFrame.setDefaultLookAndFeelDecorated( true );
              catch (Exception e)
               System.err.println( "Look and feel not set." );
           frame.setTitle( "Send Interface" );
             topPanel.setLayout( new GridLayout( 2 , 1 ) );                          //line 64*************************
             senderID = new JLabel( "Sender:", SwingConstants.LEFT );
             senderDisplay = new JLabel( "'+...+'", SwingConstants.LEFT );
             receiverID = new JLabel( "Receiver:", SwingConstants.LEFT);
    //         receiverID_lst = new JList( ListName );
              frame.add(senderID);
             frame.add(senderDisplay);
             frame.add(receiverID);
    //         frame.add(receiverListModel);
             frame.add(new JScrollPane(receiverID_lst), BorderLayout.CENTER);
             frame.setLocation(200, 200);
             frame.setSize(250, 90);
             frame.setVisible(true);
        public void setListName(String user)
             try{
                  userName = user;
                  Class.forName("com.mysql.jdbc.Driver");
                   String url = "jdbc:mysql://localhost:3306/thesis";
                   con = DriverManager.getConnection(url, "root", "");
                   Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
                   ResultSet rs = stmt.executeQuery("select * from user where User_ID!= '" + userName + "'");
                   System.out.println("Display all results:");
                   while(rs.next()){
                      String user_id = rs.getString("User_ID");
                      System.out.println("\tuser_id= " + user_id );
         //             receiverListModel.addElement(user_id);
                        userList=user_id;
                        i++;
              }//end while loop
              receiverListModel.addElement(userList);
         catch(Exception ex)
    ex.printStackTrace();
         finally
    if (con != null)
    try
    con.close ();
    System.out.println ("Database connection terminated");
    catch (Exception e) { /* ignore close errors */ }
    public String getUserName()
         return userName;
    public String[] getUserList()
         return userList;
    public static void main(String[] args) {
    new sendInterface(); //line 133******************************************
    thank ur reply:D
    Edited by: ocibala on Aug 3, 2008 9:54 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    And where do you instantiate topPanel before you invoke setLayout?
    db

  • EJB 3.0 JPA: java.lang.NullPointerException at  JdbcOdbcDriver.initialize()

    Hello every body,
    I'm trying to implement EJB 3.0 JPA .
    The entities Users ,and Products are created ,
    and the client is as shown below:
    package com.prapansol.demos;
    import java.util.List;
    import javax.ejb.EJB;
    import com.xyz.demos.ejb30.Users;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    import javax.persistence.PersistenceContext;
    public class Client {
    private EntityManager manager;
    public Client() {
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("EJB");
    EntityManager em=emf.createEntityManager();
    this.setEntityManager(em);
    /** <code>select o from Users o</code> */
    public List<Users> queryUsersFindAll() {
    List<Users> users =null;
    try{
    users= getEntityManager().createNamedQuery("Users.findAll").getResultList();
    //@NamedQuery(name = "Users.findAll", query = "select o from Users o") has been defined in Users entity
    }catch(Exception e){
    System.out.println(e.getClass().getName());
    System.out.println(e.getMessage());
    e.printStackTrace();
    return users;
    public void shutDown(){
    getEntityManager().close();
    public void setEntityManager(EntityManager manager) {
    this.manager = manager;
    public EntityManager getEntityManager() {
    return manager;
    public static void main(String[] args) {
    Client client = new Client();
    List<Users> users=client.queryUsersFindAll();
         for(Users user : users ){System.out.println(""+user.getFirstName()+user.getLastName()); }
    The persistence.xml file is:
    <?xml version="1.0" encoding="UTF-8" ?>
    <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" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="EJB">
    <provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
    <class>com.xyz.demos.ejb30.Users</class>
    <class>com.xyz.demos.ejb30.Products</class>
    <class>com.xyz..demos.ejb30.ServiceRequests</class>
    <class>com.xyz.demos.ejb30.ServiceHistories</class>
    <class>com.xyz.demos.ejb30.ExpertiseAreas</class>
    <properties>
    <property name="jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="jdbc.connection.string" value="jdbc:oracle:thin:@localhost:1521:ORCL"/>
    <property name="jdbc.user" value="scott"/>
    <property name="jdbc.password" value="tiger"/>
    <property name="toplink.logging.level" value="INFO"/>
    </properties>
    </persistence-unit>
    </persistence>
    Here are the log messages :
    [TopLink Finest]: 2007.03.23 01:36:15.095--ServerSession(32012057)--Thread(Thread[main,5,main])--property=toplink.weaving; value=true
    [TopLink Config]: 2007.03.23 01:36:15.323--ServerSession(32012057)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.prapansol.demos.technology.Users] is being defaulted to: Users.
    [TopLink Config]: 2007.03.23 01:36:15.335--ServerSession(32012057)--Thread(Thread[main,5,main])--The table name for entity [class com.prapansol.demos.technology.Users] is being defaulted to: USERS.
    [TopLink Config]: 2007.03.23 01:36:15.360--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.Users.city] is being defaulted to: CITY.
    [TopLink Config]: 2007.03.23 01:36:15.377--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.Users.email] is being defaulted to: EMAIL.
    [TopLink Config]: 2007.03.23 01:36:15.431--ServerSession(32012057)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.prapansol.demos.technology.ServiceHistories] is being defaulted to: ServiceHistories.
    [TopLink Config]: 2007.03.23 01:36:15.435--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.ServiceHistories.notes] is being defaulted to: NOTES.
    [TopLink Config]: 2007.03.23 01:36:15.456--ServerSession(32012057)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.prapansol.demos.technology.ServiceRequests] is being defaulted to: ServiceRequests.
    [TopLink Config]: 2007.03.23 01:36:15.460--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.ServiceRequests.status] is being defaulted to: STATUS.
    [TopLink Config]: 2007.03.23 01:36:15.461--ServerSession(32012057)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.prapansol.demos.technology.Products] is being defaulted to: Products.
    [TopLink Config]: 2007.03.23 01:36:15.464--ServerSession(32012057)--Thread(Thread[main,5,main])--The table name for entity [class com.prapansol.demos.technology.Products] is being defaulted to: PRODUCTS.
    [TopLink Config]: 2007.03.23 01:36:15.466--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.Products.description] is being defaulted to: DESCRIPTION.
    [TopLink Config]: 2007.03.23 01:36:15.466--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.Products.image] is being defaulted to: IMAGE.
    [TopLink Config]: 2007.03.23 01:36:15.467--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.Products.name] is being defaulted to: NAME.
    [TopLink Config]: 2007.03.23 01:36:15.468--ServerSession(32012057)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.prapansol.demos.technology.ExpertiseAreas] is being defaulted to: ExpertiseAreas.
    [TopLink Config]: 2007.03.23 01:36:15.470--ServerSession(32012057)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.prapansol.demos.technology.ExpertiseAreas.notes] is being defaulted to: NOTES.
    [TopLink Config]: 2007.03.23 01:36:15.574--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List com.prapansol.demos.technology.ServiceRequests.serviceHistoriesList] is being defaulted to: class com.prapansol.demos.technology.ServiceHistories.
    [TopLink Config]: 2007.03.23 01:36:15.579--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private com.prapansol.demos.technology.ServiceRequests com.prapansol.demos.technology.ServiceHistories.serviceRequests] is being defaulted to: class com.prapansol.demos.technology.ServiceRequests.
    [TopLink Config]: 2007.03.23 01:36:15.592--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List com.prapansol.demos.technology.Users.serviceHistoriesList] is being defaulted to: class com.prapansol.demos.technology.ServiceHistories.
    [TopLink Config]: 2007.03.23 01:36:15.593--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private com.prapansol.demos.technology.Users com.prapansol.demos.technology.ServiceHistories.users] is being defaulted to: class com.prapansol.demos.technology.Users.
    [TopLink Config]: 2007.03.23 01:36:15.593--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List com.prapansol.demos.technology.Users.expertiseAreasList] is being defaulted to: class com.prapansol.demos.technology.ExpertiseAreas.
    [TopLink Config]: 2007.03.23 01:36:15.594--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private com.prapansol.demos.technology.Users com.prapansol.demos.technology.ExpertiseAreas.users] is being defaulted to: class com.prapansol.demos.technology.Users.
    [TopLink Config]: 2007.03.23 01:36:15.594--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private com.prapansol.demos.technology.Products com.prapansol.demos.technology.ExpertiseAreas.products] is being defaulted to: class com.prapansol.demos.technology.Products.
    [TopLink Config]: 2007.03.23 01:36:15.595--ServerSession(32012057)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List com.prapansol.demos.technology.Products.expertiseAreasList] is being defaulted to: class com.prapansol.demos.technology.ExpertiseAreas.
    [TopLink Finer]: 2007.03.23 01:36:15.600--ServerSession(32012057)--Thread(Thread[main,5,main])--Weaver processing class [com.prapansol.demos.technology.Users].
    [TopLink Finer]: 2007.03.23 01:36:15.601--ServerSession(32012057)--Thread(Thread[main,5,main])--Weaver processing class [com.prapansol.demos.technology.ServiceHistories].
    [TopLink Finer]: 2007.03.23 01:36:15.601--ServerSession(32012057)--Thread(Thread[main,5,main])--Weaver processing class [com.prapansol.demos.technology.ServiceRequests].
    [TopLink Finer]: 2007.03.23 01:36:15.601--ServerSession(32012057)--Thread(Thread[main,5,main])--Weaver processing class [com.prapansol.demos.technology.ExpertiseAreas].
    [TopLink Finer]: 2007.03.23 01:36:15.602--ServerSession(32012057)--Thread(Thread[main,5,main])--Weaver processing class [com.prapansol.demos.technology.Products].
    [TopLink Finer]: 2007.03.23 01:36:15.604--Thread(Thread[main,5,main])--cmp_init_globalInstrumentation_is_null
    [TopLink Finest]: 2007.03.23 01:36:15.613--ServerSession(32012057)--Thread(Thread[main,5,main])--begin deploying Persistence Unit EJB; state Predeployed; deploymentCount 0
    [TopLink Finest]: 2007.03.23 01:36:15.633--ServerSession(32012057)--Thread(Thread[main,5,main])--property=toplink.logging.level; value=FINEST; translated value=FINEST
    [TopLink Finest]: 2007.03.23 01:36:15.634--ServerSession(32012057)--Thread(Thread[main,5,main])--property=toplink.logging.level; value=FINEST; translated value=FINEST
    [TopLink Info]: 2007.03.23 01:36:15.639--ServerSession(32012057)--Thread(Thread[main,5,main])--TopLink, version: Oracle TopLink Essentials - 2006.8 (Build 060829)
    [TopLink Finest]: 2007.03.23 01:36:15.646--ServerSession(32012057)--Thread(Thread[main,5,main])--end deploying
    Persistence Unit EJB; state Undeployed; deploymentCount 0
    Here is the Stack Trace:
    Exception in thread "main" java.lang.NullPointerException
         at sun.jdbc.odbc.JdbcOdbcDriver.initialize(JdbcOdbcDriver.java:436)
         at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:153)
         at java.sql.DriverManager.getConnection(DriverManager.java:525)
         at java.sql.DriverManager.getConnection(DriverManager.java:140)
         at oracle.toplink.essentials.sessions.DefaultConnector.connect(DefaultConnector.java:85)
         at oracle.toplink.essentials.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:170)
         at oracle.toplink.essentials.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:537)
         at oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:180)
         at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:230)
         at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:84)
         at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:127)
         at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:121)
         at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:76)
         at com.prapansol.demos.Client.<init>(Client.java:29)
         at com.prapansol.demos.Client.main(Client.java:83)
    where am I doing wrong?
    Why does sun.jdbc.odbc.JdbcOdbcDriver.initialize method get called when I'm using Oracle DataBase?
    Am I missing any thing ?
    I'll be thankful if any one help me find my fault?
    Thanking you in Advance,
    Regards,
    Samba

    Check the property names for configuring TopLink's internal connection pool. All of the JDBC property names should be prefixed with toplink.
    Refer to the TopLink JPA extensions guide for more information.
    http://www.oracle.com/technology/products/ias/toplink/jpa/resources/toplink-jpa-extensions.html
    Doug

  • Exception in thread "main" java.lang.NullPointerException error JDeveloper 12c

    Hello,
    I am trying to call a java stored procedure in java application. I am using ORACLE database and JDeveloper.
    I am getting error "Exception in thread "main" java.lang.NullPointerException. I have no idea what have I been doing wrong.
    I have a table "Beer" and I want to select all the data out with a stored procedure which I call out of Java app.
    I have a java.class file Store_A.java which I have loaded into the ORACLE database with LOADJAVA :
        import java.sql.*;
        import java.io.*;
        public class Store_a {
          public static void apskatit ()
            throws SQLException
            { String sql =
              "SELECT * FROM Beer";
            try { Connection conn = DriverManager.getConnection("jdbc:default:connection:");
              PreparedStatement pstmt = conn.prepareStatement(sql);
              ResultSet rset = pstmt.executeQuery();
              rset.close();
              pstmt.close();
            catch (SQLException e) {System.err.println(e.getMessage());
    Then I have created a procedure which I plan to call out in java:
        CREATE OR REPLACE PACKAGE Store_a AS
        PROCEDURE apskatit;
        END Store_a;
        CREATE OR REPLACE PACKAGE BODY Store_a AS
        PROCEDURE apskatit AS LANGUAGE JAVA
        NAME 'Store_a.apskatit()';
        END Store_a;
    And I have a java file that I have created with JDeveloper 12c:
        import java.sql.Connection;
        import java.sql.DriverManager;
        import java.sql.ResultSet;
        import java.sql.SQLException;
        public class Class1 {
             * @param args
            public static void main(String[] args) throws SQLException {
                Connection conn = null;
                try {
                    Class.forName("oracle.jdbc.driver.OracleDriver");
                    //Izveidojam savienojumu
                    conn = DriverManager.getConnection("jdbc.oracle.thin:@localhost:1521", "SYSTEM", "asdasd");
                    // Izveidojam callable statement
                    CallableStatement stmt = conn.prepareCall("CALL Store_a.apskatit()");
                    ResultSet resul = stmt.executeQuery();
                    while (resul.next()) {
                        System.out.println(resul.getInt(1) + "\t" + resul.getString(2));
                } catch (ClassNotFoundException e) {
                    e.printStackTrace();
                } finally {
                    try {
                        conn.close();
                    } catch (SQLException e) {
                        e.printStackTrace();
    When I try to run the java file, I get this error "Exception in thread "main" java.lang.NullPointerException at client.Class1.main(Class1.java:29).
    So the line I get error in is "conn.close();"
    How to fix this?
    Thank you very much in advance.

    I am trying to call a java stored procedure in java application. I am using ORACLE database and JDeveloper.
    I am getting error "Exception in thread "main" java.lang.NullPointerException. I have no idea what have I been doing wrong.
    Maybe you haven't read it yet but I told you in your other thread what you were doing wrong and, step by step, how to address the problem.
    https://forums.oracle.com/thread/2611124
    I'm not going to repeat everything again just this one main piece of advice:
    Until you get you code working outside the database don't even bother trying to load it into the DB and create a Java stored procedure.
    You are trying to deal with too many different issues at the same time. Unless you solve your primary Java problem by fixing the code outside the DB you will have nothing but problems loading it into the DB.
    And just get rid of this line of code - you don't need it anymore and it hasn't been done like that for many years now:
    Class.forName("oracle.jdbc.driver.OracleDriver");

  • Java.lang.NullPointerException- After Installing BOXI 4.0

    Hello All
    I installed BOXI 4.0 on Windows Server 2008 and then used ODBC driver to connect to BW database. After installing when i try to login to CMC using the url http://localhost:8080/BOE/CMC and then enter the credentials i get an empty page with the error
    "AN ERROR HAS OCCURRED JAVA.LANG.NULLPOINTEREXCEPTION".
    The same happens when i open BI Launchpad using the URL "An "AN ERROR HAS OCCURRED JAVA.LANG.NULLPOINTEREXCEPTION".
    Please help me resolve the issue.
    Thanks
    Ahmed Shaik

    Hi Ahmed
    Generally it is not recommended to install BI 4.0 on the SAP BW database, but rather on it's own instance instead. Also depending on how the software is licensed, there may be implications in the license cost.
    Regarding the java error, in some cases you have to redeploy the web applications.
    Regards
    Derek

  • Java.lang.NullPointerException within ZPM on ZCM 10.3

    I'm trying to resolve a problem with Patch Management after applying the update for ZCM (10.3.0a) to my ZCM 10.2.2 server. I receive the following error when I select any patches in patch management.
    java.lang.NullPointerException
    at com.patchlink.sapphire.web.pages.vulnerability.UIU til.rebootRequired(UIUtil.java:39)
    at com.patchlink.sapphire.web.pages.vulnerability.Vie wVulnerabilityInfoSnapshot.bindGrid(ViewVulnerabil ityInfoSnapshot.java:203)
    at com.patchlink.sapphire.web.pages.vulnerability.Vie wVulnerabilityInfoSnapshot.prerender(ViewVulnerabi lityInfoSnapshot.java:150)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2626)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.zenworks.fw.web.internal.layout.Snapsho tTemplate.preRenderRecursiveInternal(SnapshotTempl ate.java:460)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.WebControl.preRenderRecurs iveInternal(WebControl.java:2637)
    at com.novell.web.controls.Page.internalProcessReques t(Page.java:599)
    at com.novell.web.controls.Page.processRequest(Page.j ava:528)
    at com.novell.zenworks.fw.web.internal.layout.Index.p rocessRequest(Index.java:518)
    at com.novell.web.internal.controls.PageTag.doEndTag( PageTag.java:86)
    at org.apache.jsp.jsp.index_jsp._jspService(index_jsp .java:193)
    at org.apache.jasper.runtime.HttpJspBase.service(Http JspBase.java:98)
    at javax.servlet.http.HttpServlet.service(HttpServlet .java:803)
    at org.apache.jasper.servlet.JspServletWrapper.servic e(JspServletWrapper.java:328)
    at org.apache.jasper.servlet.JspServlet.serviceJspFil e(JspServlet.java:315)
    at org.apache.jasper.servlet.JspServlet.service(JspSe rvlet.java:265)
    at javax.servlet.http.HttpServlet.service(HttpServlet .java:803)
    at org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.ApplicationDispatcher.inv oke(ApplicationDispatcher.java:691)
    at org.apache.catalina.core.ApplicationDispatcher.pro cessRequest(ApplicationDispatcher.java:469)
    at org.apache.catalina.core.ApplicationDispatcher.doF orward(ApplicationDispatcher.java:364)
    at org.apache.catalina.core.ApplicationDispatcher.for ward(ApplicationDispatcher.java:301)
    at com.novell.web.NJWCServlet.serviceImpl(NJWCServlet .java:97)
    at com.novell.zenworks.fw.web.internal.ZENworksServle t.service(ZENworksServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet .java:803)
    at org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationFilterChain.java:188)
    at com.patchlink.sapphire.web.pages.vulnerability.ses sion.HibernateSessionFilter.doFilter(HibernateSess ionFilter.java:75)
    at org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(ApplicationFilterChain.java:215)
    at org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invo ke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invo ke(StandardContextValve.java:174)
    at org.apache.catalina.authenticator.AuthenticatorBas e.invoke(AuthenticatorBase.java:525)
    at org.apache.catalina.core.StandardHostValve.invoke( StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke (ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invok e(StandardEngineValve.java:108)
    at com.novell.zenworks.tomcat.ZENRequestValve.invoke( ZENRequestValve.java:1196)
    at org.apache.catalina.connector.CoyoteAdapter.servic e(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11Processor.process(H ttp11Processor.java:870)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11 ConnectionHandler.processConnection(Http11BaseProt ocol.java:665)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.process Socket(PoolTcpEndpoint.java:528)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThr ead.runIt(LeaderFollowerWorkerThread.java:81)
    at org.apache.tomcat.util.threads.ThreadPool$ControlR unnable.run(ThreadPool.java:685)
    at java.lang.Thread.run(Thread.java:595)
    I located the msi installation files in C:\Program Files\Novell\ZENworks\install\downloads\msi and ran the following in an attempt to repair the installation thinking something might be corrupt
    novell-zenworks-java-utilities-server-10.3.0.27209
    novell-zenworks-java-utilities-langs-server-10.3.0.27209
    novell-zenworks-patch-10.3.0.53676
    novell-zenworks-patch-langs-client-10.3.0.53702
    novell-zenworks-patch-management-agent-10.3.0.31
    novell-zenworks-patch-management-server-10.3.0.31
    I have also tried to remove the /share/tomcat/work/Catalina/localhost
    as mentioned in TID 7000434, but this did not help.
    We are running ZCM 10.3 on a Windows Server 2008 (32-bit) server.
    If anyone has a suggestion, your help is much appreciated.
    Thanks,
    Travis

    tfahlman,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • HTTP Status 500 Error java.lang.NullPointerException on BO 4.0 SP2

    Hello,
    we installed BO 4.0 SP2 with Tomcat 6 on Windows Server 2008 R2 64 Bit.
    After installation it is not possible to open the CMC, BI-Launchpad or LCM in a browser. It presents the following error page:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         com.businessobjects.servletbridge.customconfig.Config.<init>(Config.java:37)
         com.businessobjects.servletbridge.customconfig.ConfigReader.getConfig(ConfigReader.java:274)
         com.businessobjects.pinger.TimeoutManagerFilter.getSessionState(TimeoutManagerFilter.java:192)
         com.businessobjects.pinger.TimeoutManagerFilter.doFilter(TimeoutManagerFilter.java:75)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.24 logs.
    Apache Tomcat/6.0.24
    This is the error message from Tomcat log:
    28.09.2011 08:56:46 org.apache.catalina.core.StandardWrapperValve invoke
    SCHWERWIEGEND: Servlet.service() for servlet equinoxbridgeservlet threw exception
    java.lang.NullPointerException
         at com.businessobjects.servletbridge.customconfig.Config.<init>(Config.java:37)
         at com.businessobjects.servletbridge.customconfig.ConfigReader.getConfig(ConfigReader.java:274)
         at com.businessobjects.pinger.TimeoutManagerFilter.getSessionState(TimeoutManagerFilter.java:192)
         at com.businessobjects.pinger.TimeoutManagerFilter.doFilter(TimeoutManagerFilter.java:75)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
         at java.lang.Thread.run(Thread.java:619)
    The installation of 'SBOP BI Platform Servers 4.0 SP02 Patch 5' didn't affect this problem, it still has the same error.
    BusinessObjects XI 3.1 is running without problems on that server.
    Any help would be very appreciated!
    Thanks in advance.

    Hello together,
    I could fix this issue without any reinstalling of tomcat. I had the same problem after installtion of Patch 9 of SP2 for BOE 4.0.
    Directly after the installation  I changed the session-timeout parameter in some web.xml's because it was requested by our customer. Because I wanted to have a good documentation of those changes in the web.xml's I created a bigger comment in these files.
    First I got 404 errors after that - to solve this I followed Knowledgebase article [1639813|https://websmp230.sap-ag.de/sap/support/notes/1639813] but first it didn't help.
    So the before mentioned bigger comments seemed to be a problem (or maybe the special characters in there) because after shortening these comments and restarting SIA and Tomcat the 404 error disappeared and suddenly the above described 500 error occured.
    After that I changed the Tomcat's localhost directory to localhost.old during downtime of Tomcat (as recommended by Lukas Kostrab). localhost was newly created but it didn't help either.
    So last but not least I redeployed tomcat following article [1639813|https://websmp230.sap-ag.de/sap/support/notes/1639813] (wdeploy.bat tomcat6 u2013DAPP=BOE deploy) and started Tomcat and SIA again. I decided to wait a little bit longer with trying to start CMC - maybe 15min - and suddenly it worked.
    So in conclusion I would say:
    - check any changes you made in any config-files (like e.g. web.xml) and shorten them or remove special characters
    - stop SIA and Tomcat
    - rename localhost directory (or copy and remove) so it will be recreated at startup of Tomcat
    - if that doesn't help check tomcat config according to article [1639813|https://websmp230.sap-ag.de/sap/support/notes/1639813] and redeploy tomcat as mentioned in that arcitle and be a little bit patient
    Hope this might help some of you.
    Best wishes
    Marie

  • JAX-RPC + Bean = deserialization error: java.lang.NullPointerException

    I�m trying to use a bean as return type from a web service method, but I get an error:
    deserialization error: java.lang.NullPointerException
    this is the class consuming the web service
    package local.jws;
    import local.jws.remote.TestBeanIF;
    import local.jws.remote.TestBean;
    import java.io.*;
    import java.net.URL;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.ServiceException;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.namespace.QName;
    public class Client implements java.io.Serializable
         private TestBean tb;
         private String somestring;
         public Client()
              try
                   String wsURL = "http://localhost:8080/webservice/testbean?WSDL";
                   String nameSpaceURI = "http://local.jws/wsdl/MyTestBean";
                   String portName = "TestBeanIFPort";
                   String serviceName = "MyTestBean";
                   URL serviceURL = new URL( wsURL );
                   ServiceFactory serviceFactory = ServiceFactory.newInstance();
                   QName qServiceName = new QName( nameSpaceURI, serviceName );
                   Service ws = serviceFactory.createService( serviceURL, qServiceName );
                   QName qPortName = new QName( nameSpaceURI, portName );
                   TestBeanIF myTestBeanIF = (TestBeanIF)ws.getPort( qPortName, local.jws.remote.TestBeanIF.class );
                   somestring = myTestBeanIF.getString();
                   tb = myTestBeanIF.getTestBean( "hello bean" );
              catch( Exception ex )
         public TestBean getTb()
              return this.tb;
         public void setTb( TestBean tb )
              this.tb = tb;
         public String getSomestring()
              return this.somestring;
         public void setSomestring( String value )
              this.somestring = value;
    this is the bean:
    package local.jws.beans;
    public class TestBean implements java.io.Serializable
         private String test;
         public TestBean(){ }
         public String getTest()
              return test;
         public void setTest( String value )
              this.test = value;
    this is the interface implementation:
    package local.jws;
    import local.jws.beans.TestBean;
    public class TestBeanImpl implements TestBeanIF
         public TestBean getTestBean( String value )
              TestBean tb = new TestBean();
              tb.setTest( value );
              return tb;
         public String getString()
              return "some string";
    using the getString() method works fine but getTestBean() doesn�t;
    any clue on this?
    thanks

    Hi,
    I'm experiencing exactly the same problem as you ...
    The only fix I found is to use static invocation ... with static invocation, WSCompile generates a deserializer and everything works fine, no mure NullPointer exception ...
    With dynamic invocation as you are trying to manage here, I didn't find any way to tell the client to use the deserializer generated with wscompile ...
    Does anyone know how to do it ?
    Thanks,
    Olivier

  • Jax-ws 2.2.8 and ws-addressing: Client throwing java.lang.NullPointerException on receipt of HTTP 202 when using non-anonymous ReplyTo address

    Server: JBoss EAP 6.2.0
    Client: JDK 1.7.0_51 x64
    JAX-WS: RI 2.2.8 ( via -Djava.endorsed.dirs )
    I am getting a java.lang.NullPointerException when calling the operation on the WS endpoint from the client when using non-anonymous replyTo address.
    I have simplified the scenario into a small test case that hopefully others can replicate. Since the exception is happening on the client instead of the server, I would think that the container used is irrelevant, but I have specified it nonetheless.
    1) WebService:
    package test.webservice;
    import java.util.Random;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebService;
    import javax.jws.soap.SOAPBinding;
    import javax.xml.ws.soap.Addressing;
    @WebService(targetNamespace="http://services.nowhere.org/")
    @Addressing(required=true)
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT)
    public class RandomTest {
        @WebMethod
        public long nextRandom(@WebParam boolean forceException) throws Exception {
            if( forceException ) {
                throw new Exception("Some exception");
            Random rand = new Random();
            return rand.nextLong();
    2) Generated WSDL by JBossEAP 6.2.2:
    <?xml version='1.0' encoding='UTF-8'?><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:tns="http://webservice.test/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="RandomTestService" targetNamespace="http://webservice.test/">
      <wsdl:types>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://webservice.test/" elementFormDefault="unqualified" targetNamespace="http://webservice.test/" version="1.0">
      <xs:element name="nextRandom" type="tns:nextRandom"/>
      <xs:element name="nextRandomResponse" type="tns:nextRandomResponse"/>
      <xs:complexType name="nextRandom">
        <xs:sequence/>
      </xs:complexType>
      <xs:complexType name="nextRandomResponse">
        <xs:sequence>
          <xs:element name="return" type="xs:long"/>
        </xs:sequence>
      </xs:complexType>
    </xs:schema>
      </wsdl:types>
      <wsdl:message name="nextRandom">
        <wsdl:part element="tns:nextRandom" name="parameters">
        </wsdl:part>
      </wsdl:message>
      <wsdl:message name="nextRandomResponse">
        <wsdl:part element="tns:nextRandomResponse" name="parameters">
        </wsdl:part>
      </wsdl:message>
      <wsdl:portType name="RandomTest">
        <wsdl:operation name="nextRandom">
          <wsdl:input message="tns:nextRandom" name="nextRandom" wsam:Action="http://webservice.test/RandomTest/nextRandomRequest" wsaw:Action="http://webservice.test/RandomTest/nextRandomRequest">
        </wsdl:input>
          <wsdl:output message="tns:nextRandomResponse" name="nextRandomResponse" wsam:Action="http://webservice.test/RandomTest/nextRandomResponse" wsaw:Action="http://webservice.test/RandomTest/nextRandomResponse">
        </wsdl:output>
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:binding name="RandomTestServiceSoapBinding" type="tns:RandomTest">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsaw:UsingAddressing wsdl:required="true"/>
        <wsp:PolicyReference URI="#RandomTestServiceSoapBinding_WSAM_Addressing_Policy"/>
        <wsdl:operation name="nextRandom">
          <soap:operation soapAction="" style="document"/>
          <wsdl:input name="nextRandom">
            <soap:body use="literal"/>
          </wsdl:input>
          <wsdl:output name="nextRandomResponse">
            <soap:body use="literal"/>
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="RandomTestService">
        <wsdl:port binding="tns:RandomTestServiceSoapBinding" name="RandomTestPort">
          <soap:address location="http://localhost:8080/servertest/RandomTest"/>
        </wsdl:port>
      </wsdl:service>
        <wsp:Policy xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="RandomTestServiceSoapBinding_WSAM_Addressing_Policy"><wsam:Addressing><wsp:Policy/></wsam:Addressing></wsp:Policy>
    </wsdl:definitions>
    3) ant build.xml to generate the client code from WSDL
    <?xml version="1.0" encoding="UTF-8"?>
    <project default="build" basedir="..">
        <property name="jaxws.classpath" location="C://jaxws-2.2.8/jaxws-ri/lib/*.jar"/>
        <taskdef name="wsimport" classname="com.sun.tools.ws.ant.WsImport">
               <classpath path="${jaxws.classpath}"/>
        </taskdef>
        <target name="build" >
            <!-- For these to work, the JAR files in tools/jaxws-ri must be included in Ant's classpath -->
            <wsimport wsdl="http://localhost:8080/servertest/RandomTest?wsdl"
                   verbose="true"
                   sourcedestdir="src"
                   destdir="bin"
                   keep="true">
                   <xjcarg value="-enableIntrospection"/>
            </wsimport>
        </target>
    </project>
    4) Client code
    4a) ClientTest.java - Actual client run from client
    package test.wsclient;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.ws.BindingProvider;
    import javax.xml.ws.Endpoint;
    import javax.xml.ws.handler.Handler;
    import javax.xml.ws.soap.AddressingFeature;
    import org.nowhere.services.RandomTest;
    import org.nowhere.services.RandomTestService;
    public class ClientTest {
        public static void main(String args[]) throws Exception {
            ClientTest app = new ClientTest();
            app.testAddressing();
        public void testAddressing() throws Exception {
            String REPLY_TO_ADDRESS = "http://localhost:8082/servertest/RandomCallback";
            String FAULT_TO_ADDRESS = "http://localhost:8082/servertest/RandomCallbackFault";
            RandomTestService service = new RandomTestService();
            RandomTest port = service.getRandomTestPort(new AddressingFeature());
            BindingProvider provider = (BindingProvider) port;
            // pass the replyTo address to the handler
            provider.getRequestContext().put("ReplyTo", REPLY_TO_ADDRESS);
            provider.getRequestContext().put("FaultTo", FAULT_TO_ADDRESS);
            // Register handlers to set the ReplyTo and FaultTo on the SOAP request sent to the WS endpoint
            List<Handler> handlerChain = new ArrayList<Handler>();
            handlerChain.add(new ClientHandler());
            provider.getBinding().setHandlerChain(handlerChain);
            // Start endpoint to receive callbacks from WS
            Endpoint endpoint = Endpoint.publish(REPLY_TO_ADDRESS, new CallbackSEI());
            try {
                port.nextRandom(false);
            } catch( Exception ex ) {
                ex.printStackTrace();
            } finally {
                Thread.sleep(10000);
            endpoint.stop();
            System.exit(0);
    4b) ClientHandler.java - Used to set the wsa ReplyTo address and FaultTo address when sending SOAP request from client to server
    package test.wsclient;
    import java.util.Set;
    import javax.xml.namespace.QName;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.ws.handler.MessageContext;
    import javax.xml.ws.handler.MessageContext.Scope;
    import javax.xml.ws.handler.soap.SOAPHandler;
    import javax.xml.ws.handler.soap.SOAPMessageContext;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    public class ClientHandler implements SOAPHandler<SOAPMessageContext> {
        public ClientHandler() {};
        @Override
        public Set<QName> getHeaders() {
            return null;
        @Override
        public void close(MessageContext arg0) {
        @Override
        public boolean handleFault(SOAPMessageContext context) {
            return true;
        protected void setAnAddress(SOAPHeader header, String tagName, String address) {
            NodeList nodeListReplyTo = header.getElementsByTagName(tagName);
            NodeList nodeListAddress = nodeListReplyTo.item(0).getChildNodes();
            for (int i = 0; i < nodeListAddress.getLength(); i++) {
                Node node = nodeListAddress.item(i);
                if ("Address".equals(node.getLocalName())) {
                    node.setTextContent(address);
                    break;
        protected String getMessageID(SOAPHeader header) {
            NodeList nodeListMessageId = header.getElementsByTagName("MessageID");
            return nodeListMessageId.item(0).getTextContent();
        @Override
        public boolean handleMessage(SOAPMessageContext context) {
            Boolean isOutbound = (Boolean) context.get(SOAPMessageContext.MESSAGE_OUTBOUND_PROPERTY);
            if (isOutbound) {
                try {
                    SOAPEnvelope envelope = context.getMessage().getSOAPPart().getEnvelope();
                    SOAPHeader header = envelope.getHeader();
                    /* extract the generated MessageID */
                    String messageID = getMessageID(header);
                    context.put("MessageID", messageID);
                    context.setScope("MessageID", Scope.APPLICATION);
                    /* change ReplyTo address */
                    setAnAddress(header, "ReplyTo", (String) context.get("ReplyTo"));
                    setAnAddress(header, "FaultTo", (String) context.get("FaultTo"));
                } catch (Exception ex) {
                    throw new RuntimeException(ex);
            return true;
    4c) CallbackSEI.java - endpoint on the client for server to send the SOAP response back to the client
    package test.wsclient;
    import javax.annotation.Resource;
    import javax.jws.Oneway;
    import javax.jws.WebParam;
    import javax.jws.WebService;
    import javax.xml.ws.Action;
    import javax.xml.ws.RequestWrapper;
    import javax.xml.ws.WebServiceContext;
    import javax.xml.ws.soap.Addressing;
    @WebService
    @Addressing
    //@HandlerChain(file = "/handler-chain.xml")
    public class CallbackSEI {
        @Resource
        private WebServiceContext context;
         * If there is no namespace specified in the method below, then the CallbackSEI needs to be in the same package as the
         * WS endpoint.
        @Oneway
        @Action(input="http://services.nowhere.org/RandomTest/nextRandomResponse")
        @RequestWrapper(localName="nextRandomResponse", targetNamespace="http://services.nowhere.org/")
        public void handleNotification(@WebParam(name="return")long random) {
            System.out.println("Asynch response received");
            System.out.println( random );
            //System.out.println("This response relates to the message ID: "+ getMessageID());
    In summary:
    Server is listening on port 8080
    Client will listen in port 8082 for the callback from the server for the SOAP response
    Now when I run the client, I see that the proper behaviour as far as ws-addressing is concerned. That is:
    client  -- SOAP request ( on port 8080 ) --> server
    client <-- HTTP 202 ( empty HTTP body )  --- server
    client <-- SOAP response ( on port 8082 )  --- server
    All well and good, except that I am getting a NullPointerException on the client side when I call the operation.
    With debugging of the SOAP request and responses, I get the following output:
    ---[HTTP request - http://localhost:8080/servertest/RandomTest]---
    Accept: text/xml, multipart/related
    Content-Type: text/xml; charset=utf-8
    SOAPAction: "http://services.nowhere.org/RandomTest/nextRandomRequest"
    User-Agent: JAX-WS RI 2.2.8 svn-revision#13980
    <?xml version='1.0' encoding='UTF-8'?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><S:Header><To xmlns="http://www.w3.org/2005/08/addressing">http://localhost:8080/servertest/RandomTest</To><Action xmlns="http://www.w3.org/2005/08/addressing">http://services.nowhere.org/RandomTest/nextRandomRequest</Action><ReplyTo xmlns="http://www.w3.org/2005/08/addressing">
        <Address>http://localhost:8082/servertest/RandomCallback</Address>
    </ReplyTo><FaultTo xmlns="http://www.w3.org/2005/08/addressing">
        <Address>http://localhost:8082/servertest/RandomCallbackFault</Address>
    </FaultTo><MessageID xmlns="http://www.w3.org/2005/08/addressing">uuid:bcd2f6ef-3034-49e8-b837-dbd6a772fb93</MessageID></S:Header><S:Body><ns2:nextRandom xmlns:ns2="http://services.nowhere.org/"><arg0>false</arg0></ns2:nextRandom></S:Body></S:Envelope>--------------------
    ---[HTTP response - http://localhost:8080/servertest/RandomTest - 202]---
    null: HTTP/1.1 202 Accepted
    Content-Length: 0
    Content-Type: text/xml;charset=UTF-8
    Date: Fri, 18 Jul 2014 08:34:36 GMT
    Server: Apache-Coyote/1.1
    java.lang.NullPointerException
        at com.sun.proxy.$Proxy38.nextRandom(Unknown Source)
        at test.wsclient.ClientTest.testAddressing(ClientTest.java:43)
        at test.wsclient.ClientTest.main(ClientTest.java:18)
    ---[HTTP request]---
    Cache-control: no-cache
    Host: localhost:8082
    Content-type: text/xml; charset=UTF-8
    Content-length: 704
    Connection: keep-alive
    Pragma: no-cache
    User-agent: Apache CXF 2.7.7.redhat-1
    Accept: */*
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><Action xmlns="http://www.w3.org/2005/08/addressing">http://services.nowhere.org/RandomTest/nextRandomResponse</Action><MessageID xmlns="http://www.w3.org/2005/08/addressing">urn:uuid:65d8d7fc-09e4-494a-a9c5-0a01faf4d7e6</MessageID><To xmlns="http://www.w3.org/2005/08/addressing">http://localhost:8082/servertest/RandomCallback</To><RelatesTo xmlns="http://www.w3.org/2005/08/addressing">uuid:bcd2f6ef-3034-49e8-b837-dbd6a772fb93</RelatesTo></soap:Header><soap:Body><ns2:nextRandomResponse xmlns:ns2="http://services.nowhere.org/"><return>2870062781194370669</return></ns2:nextRandomResponse></soap:Body></soap:Envelope>--------------------
    Asynch response received
    2870062781194370669
    As you can see from the output above, the proxy is throwing an Exception when it receives the HTTP 202 response.
    Any ideas ?

    I think I have found when I get this error and probably I have found a bug. I will appreciate if someone can confirm this.
    In my BPEL project setup, my BPEL process's wsdl file imports another wsdl from different namespace. Here is sample snippet -
    <wsdl:definitions targetNamespace="http://namespace/1">
    <wsdl:import namespace="http://namespace/2" location="resources/another.wsdl"/>
    <plnk:partnerLinkType....../>
    </wsdl:definitions>
    Please let me know. I checked the bundled samples with Oracle BPEL PM and did not find any similar case where process wsdl imports another wsdl.
    Thank you.
    Meghana

  • 500 Internal server error - java.lang.NullPointerException: null

    While trying to access the initial login screen of EP, we face this '500 Internal server error - java.lang.NullPointerException: null' issue very randomly. It appears sometimes and when opened from new browser we get the login screen sometimes. It is not a problem that reproduces always. On the screen where the error appears, we refresh any number of times, no help, the error remains the same, but when we open in a new window, it might give the login screen or end up with this error.
    We have 4 Dialog Instances and a Cisco load balancer.
    Upon repeated redirection to a particular instance and particular server node(https://<hostname>:<port>/irj/portal;sapj2ee_irj= XXX) from the trace files, I could get the following information :-
    #0019BBEB9F4C00190000409700001707000478F21B0BBACE#1258881142025#com.sap.tc.webdynpro.sessionmanagement#sap.com/tcwddispwda#com.sap.tc.webdynpro.sessionmanagement.ExceptionHandler.handleThrowable#2449#32347##n/a##245825a0d74711de92700019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_12##0#0#Error#1#/System/UserInterface#Java###Exception occured during processing of Web Dynpro application . The causing exception is nested.
    [EXCEPTION]
    #2#sap.com/pb/PageBuilder#java.lang.NullPointerException
    #1.5_#0019BBEB9F4C00190000409800001707000478F21B0BD29A#1258881142031#com.sap.engine.services.servlets_jsp.client.RequestInfoServer#sap.com/tcwddispwda#com.sap.engine.services.servlets_jsp.client.RequestInfoServer#2449#32347##n/a##245825a0d74711de92700019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_12##0#0#Error##Plain###application [webdynpro/dispatcher] Processing HTTP request to servlet [dispatcher] finished with error. The error is: java.lang.NullPointerException
    #1.5_#0019BBEB9F4C00190000409A00001707000478F21B0C5FDE#1258881142068#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#sap.com/tcwddispwda#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#2449#32347##n/a##245825a0d74711de92700019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_12##0#0#Error#1#/System/Server/WebRequests#Plain###application [webdynpro/dispatcher] Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: java.lang.NullPointerException: null
    Exception id: [0019BBEB9F4C00190000409800001707000478F21B0BD29A]#
    #1.5_#0019BBEB9F4C00310000372500001707000478F21D348764#1258881178254#com.sap.security.core.server.destinations.service.DestinationServiceImpl#sap.com/tcwddispwda#com.sap.security.core.server.destinations.service.DestinationServiceImpl.getDestination#5180#32285##juepp01_EPP_16040550#5180#392ddb50d74711de87f40019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#/System/Security/destinations#Java###An error occurred while reading the destination , type . The error was .#3#sap_inbox$WebFlowConnector#RFC#<Localization failed: ResourceBundle='com.sap.exception.io.IOResourceBundle', ID='No such destination sap_inbox$WebFlowConnector of type RFC exists ', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key No such destination sap_inbox$WebFlowConnector of type RFC exists #
    #1.5_#0019BBEB9F4C00310000372600001707000478F21D34893F#1258881178255#System.err#sap.com/tcwddispwda#System.err#5180#32285##juepp01_EPP_16040550#5180#392ddb50d74711de87f40019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_10##0#0#Error##Plain###java.lang.Exception: Problem occured while creating JCO client for destination: sap_inbox#
    #1.5_#0019BBEB9F4C00310000372700001707000478F21D34A80D#1258881178262#System.err#sap.com/tcwddispwda#System.err#5180#32285##juepp01_EPP_16040550#5180#392ddb50d74711de87f40019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_10##0#0#Error##Plain###      at com.sap.netweaver.bc.uwl.utils.r3.R3SystemInfo.createJCOClient(R3SystemInfo.java:67)#
    #1.5_#0019BBEB9F4C00310000372800001707000478F21D34A887#1258881178263#System.err#sap.com/tcwddispwda#System.err#5180#32285##juepp01_EPP_16040550#5180#392ddb50d74711de87f40019bbeb9f4c#SAPEngine_Application_Thread[impl:3]_10##0#0#Error##Plain###      at com.sap.netweaver.bc.uwl.utils.r3.R3SystemInfo.hasFunctionModule(R3SystemInfo.java:591)#
    Kindly advise as to what could be the issue..

    Hi,  either the problem should come always for us to be able to trouble shoot it or should not come at all.
    Now since it comes sometimes, i feel that you surely are using more than one app. servers in  your enviroment and some of them are not fine.
    I received this error when i accidently had deleted my sso ticket pairs in the visual admin.
    First troubleshoot by login to individual app servers where the issue is coming. after that check the certificate-cert key pair in keystore admin. you can also delete them and make new ticket pairs..
    If this does not help, replace your login page with the standard sap login page par  com.sap.portal.runtime.logon.par.
    This should certainly troubleshoot u
    cheers,
    Ankur

  • Client gives "java.lang.NullPointerException"

    OEM works great with the sysman user on my Red Hat Linux Machine when I use "$ORACLE_HOME/bin/oemapp console".
    On my WinXP-Pro client, I have installed the Jinitiator and the Access Bridge as the only Oracle products. My problem is that after I use my clients web browser to go to OEM remotely and I enter in "sysman" and the password, I get an error window saying "The exception (java.lang.NullPointerException) occured."
    See
    http://home.comcast.net/~consman/images/oem_prob_01.jpg
    Then the odd thing is that I get error messages on the server in my $ORACLE_HOME/Apache/Apache/logs/error_log like this:
    [Fri Feb 20 18:03:33 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/oracle/ewt/alert/resource/AlertBundle_en_US.class
    [Fri Feb 20 18:03:33 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/oracle/sysman/vt/console/app/ConsoleBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/sun/beans/infos/ConsoleBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/oracle/sysman/emSDK/client/appContainer/WebApplicationBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/sun/beans/infos/WebApplicationBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/oracle/ewt/lwAWT/BufferedAppletBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/sun/beans/infos/BufferedAppletBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/oracle/ewt/popup/PopupAppletBeanInfo.class
    [Fri Feb 20 18:07:39 2004] [error] [client 192.168.0.101] File does not exist: /bigdrive/my_oracle_home/oem_webstage/sun/beans/infos/PopupAppletBeanInfo.class
    [oraman@localhost my_oracle_home]$
    Please help with any suggestions you may have.
    Thanks.
    --Bob

    hi bob
    did you get any solution? iam also facing similiar problem in case you have solution can u please mail me ?
    my mailid is [email protected]
    thanks and regards
    sdsreenivas

Maybe you are looking for

  • 0CO_OM_OPA_6: Custom fields added, Data - available in RSA3, but not in PSA

    Hi Friends, I have added some custom fields to the 0CO_OM_OPA_6 data source. Following are the details. 1) Custom fields: ZZEBELN (Purchasing Doc), ZZUSNAM (Username) 2) Code populated in SE19 (BADI for this Datasource) 3) RSA3: Test extraction pulls

  • Chooser problem in 9.1 ?

    Can't print to my Laserwriter select 360, or make PDFs, or send faxes. When I go to do any of this it tells me to select a printer in the chooser. When I go to do this it shows up but does not stick, however it is still creating a desktop printer ico

  • Why is my file cache increasing

    What could be causing my inactive memory to expand. It does eveb when no apps running. iMac running 10.8 now 10.9

  • IBAN matter - FI12 - SWIFT or BIC?

    Dear all! I am an HCM consultant but I am writing here because we have some challenges concerning FI. Since 2010 we are moving to IBANs and BICs in our country. As far as the IBAN's and BIC's (bank identification codes) entry date is 07 June 2010 due

  • PSE Elements 11 editor very slow

    PSE Elements 11 editor very slow and unresponsive since updating to Mac osx 10.9 (Maverick). Any help would be very much appreciated. Thankyou in advance.