Re: Windows, Runtime.exec() problems [solved]

2005-10-21 Thread Christoph P. Kukulies
On Fri, Oct 21, 2005 at 08:39:16AM +0200, David Teran wrote: > Well, it was not tomcat, the problem was starting tomcat as windows > service, then the process invoked by exec cannot use OLE Automation. This reminds me of the situation when I wrote a service that was supposed to interact with the

Re: Windows, Runtime.exec() problems [solved]

2005-10-20 Thread David Teran
Well, it was not tomcat, the problem was starting tomcat as windows service, then the process invoked by exec cannot use OLE Automation. regards, David Am 20.10.2005 um 19:15 schrieb David Teran: Hi, thanks for the quick response, no, the firewall is already deactivated. regards, David

Re: Windows, Runtime.exec() problems

2005-10-20 Thread David Teran
Hi, thanks for the quick response, no, the firewall is already deactivated. regards, David Am 20.10.2005 um 19:06 schrieb jacob hookom: You might be experiencing the same issues I just had with FTP sockets-- make sure your windows firewall is disabled. --- David Teran <[EMAIL PROTECTED]> wro

Re: Windows, Runtime.exec() problems

2005-10-20 Thread jacob hookom
You might be experiencing the same issues I just had with FTP sockets-- make sure your windows firewall is disabled. --- David Teran <[EMAIL PROTECTED]> wrote: > Hi, > > i am trying to call a native application from a > servlet application > (specifically an webservice based on axis 1.3) with

Windows, Runtime.exec() problems

2005-10-20 Thread David Teran
Hi, i am trying to call a native application from a servlet application (specifically an webservice based on axis 1.3) with the following code: Process p = Runtime.getRuntime().exec(args); StreamReader isr = new StreamReader(p.getInputStream()); // just uses separate thread