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 PROTEC

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