0 Replies Latest reply on Oct 8, 2004 9:21 AM by baumgarten

    java.net.NoRouteToHostException: No route to host

    baumgarten

      Hi

      I'm not sure if this is the right forum but I do the following in a session bean and I do not know where to ask else.

      I want to modifiy a xml file (as byte[]). If I try to load the xml into a DOM document:


      Document xmldoc = null;
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      factory.setValidating(false);
      DocumentBuilder builder = factory.newDocumentBuilder();

      byte[] xmlBinary = druckDokument.getJasperPrintXml();
      InputStream xmlInputStream = new ByteArrayInputStream(xmlBinary);
      xmldoc = builder.parse(xmlInputStream);


      I get an java.net.NoRouteToHostException (see below). I use JBoss 4 with default server. This error only happens if my xml document contains a <!DOCTYPE> tag (such as <!DOCTYPE jasperPrint PUBLIC "-//JasperReports//DTD Report Design//EN" "http://jasperreports.sourceforge.net/dtds/jasperprint.dtd">). Without this DOCTYPE it works. Does anybody know a reason for the NoRouteToHostException? How to work around?

      regards
      Sven

      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] java.net.NoRouteToHostException: No route to host: connect
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at java.net.PlainSocketImpl.socketConnect(Native Method)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at java.net.PlainSocketImpl.doConnect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at java.net.PlainSocketImpl.connect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at java.net.Socket.connect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at java.net.Socket.connect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.NetworkClient.doConnect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.openServer(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.openServer(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.New(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.New(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.http.HttpClient.New(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.impl.XMLEntityManager.startDTDEntity(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.impl.XMLDTDScannerImpl.setInputSource(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,195 INFO [STDOUT] at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at javax.xml.parsers.DocumentBuilder.parse(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at de.ibees.afps.server.common.tools.ejb.DruckToolsCtrlBean.verschiebeDruckDokument(DruckToolsCtrlBean.java:868)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,211 INFO [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:113)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:51)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:316)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:149)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:128)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:854)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:413)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:82)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at $Proxy10588.verschiebeDruckDokument(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at de.ibees.afps.server.common.ausgabe.ejb.AusgabeHistorieCtrlBean.getDruckDokument(AusgabeHistorieCtrlBean.java:292)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at de.ibees.afps.server.common.ausgabe.ejb.AusgabeHistorieCtrlBean.getDruckDokument(AusgabeHistorieCtrlBean.java:269)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at de.ibees.afps.server.common.ausgabe.ejb.AusgabeHistorieCtrlBean.getDruckDokument(AusgabeHistorieCtrlBean.java:446)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:113)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:51)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:316)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:149)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:128)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:854)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:413)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:82)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at $Proxy10602.getDruckDokument(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at de.ibees.afps.server.common.ausgabe.ejb.AusgabeServiceBean.getDruckDokument(AusgabeServiceBean.java:88)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,305 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:113)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:51)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:316)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:149)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:128)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:854)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.invocation.jrmp.server.JRMPInvoker$MBeanServerAction.invoke(JRMPInvoker.java:775)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:382)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor76.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.rmi.transport.Transport$1.run(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at java.security.AccessController.doPrivileged(Native Method)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.rmi.transport.Transport.serviceCall(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
      INFO | jvm 1 | 2004/10/08 15:05:52 | 15:05:52,320 INFO [STDOUT] at java.lang.Thread.run(Unknown Source)