Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > win32/process Process.create failure

Reply
Thread Tools

win32/process Process.create failure

 
 
Mike Stead
Guest
Posts: n/a
 
      03-24-2010
Hi all, I'm hoping you can lend me some help.

I make the following call:

require 'win32/process'
Process.create(:app_name => "perl C:/bin/filepp-1.8.0/filepp.pl -c")

This fails with the error:

CreateProcess() failed:

And as you can see provides no info around the failure.

This same command works fine through cygwin and dos prompt.

Can anyone give me some idea of what I'm doing wrong?
 
Reply With Quote
 
 
 
 
Roger Pack
Guest
Posts: n/a
 
      03-24-2010

> require 'win32/process'
> Process.create(:app_name => "perl C:/bin/filepp-1.8.0/filepp.pl -c")
>
> This fails with the error:
>
> CreateProcess() failed:


Mine seems to work ok.

>> Process.create(:app_name => '"c:\Program Files\Git\bin\perl.exe" c:\installs\bin\ack.pl asdf --ruby')

=> #<struct Struct:rocessInfo process_handle=1916, thread_handle=1896,
process_id=5640, thread_id=1904>

Does system("..") work with the same call?
If you get truly desperate there's 1.9.1's "Process.spawn"
-rp
--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
 
 
 
Mike Stead
Guest
Posts: n/a
 
      03-24-2010
On Mar 25, 3:19*am, Roger Pack <rogerpack2...@gmail.com> wrote:
> > require 'win32/process'
> > Process.create(:app_name => "perl C:/bin/filepp-1.8.0/filepp.pl -c")

>
> > This fails with the error:

>
> > CreateProcess() failed:

>
> Mine seems to work ok.
>
> >> Process.create(:app_name => '"c:\Program Files\Git\bin\perl.exe" c:\installs\bin\ack.pl asdf --ruby')

>
> => #<struct Struct:rocessInfo process_handle=1916, thread_handle=1896,
> process_id=5640, thread_id=1904>
>
> Does system("..") work with the same call?
> If you get truly desperate there's 1.9.1's "Process.spawn"
> -rp
> --
> Posted viahttp://www.ruby-forum.com/.


Thanks for the response.

This is gem code so really needs to work with older versions of ruby.
Also something I maybe should have said to begin with (was trying not
to overcomplicate the issue) is that I'm needing to capture the stdin,
stdout and stderr.

I first tried using win32-open3's Open3.popen but had issues trying to
kill the process when I was done with it so then moved onto win32/
process. I'm now looking at the systemu gem in the hope it will work
without problem.

With Open4 I make the following call on my mac with no issues.

@pid, @w, @r, @e = open4.popen4("perl C:/bin/filepp-1.8.0/filepp.pl -
c")

Does anyone know how I can do this same thing with systemu, assigning
the stdin, stdout and stderr to variables?

Oh and system(cmd) does work but I need to be able to kill the process
once I'm done r/w from its associated streams.

Appreciate any help.



 
Reply With Quote
 
Roger Pack
Guest
Posts: n/a
 
      03-25-2010
Mike Stead wrote:
> On Mar 25, 3:19�am, Roger Pack <rogerpack2...@gmail.com> wrote:
>>
>> => #<struct Struct:rocessInfo process_handle=1916, thread_handle=1896,
>> process_id=5640, thread_id=1904>
>>
>> Does system("..") work with the same call?


I assume this does work then?

> Thanks for the response.
>
> This is gem code so really needs to work with older versions of ruby.
> Also something I maybe should have said to begin with (was trying not
> to overcomplicate the issue) is that I'm needing to capture the stdin,
> stdout and stderr.


Yeah win32/process *should* work.
You could also try it on other boxes.
you could also file a bug report with them (preferably with a
reproducible test case, which might be hard here...).
http://rubyforge.org/tracker/?group_id=85

Also try different version of ruby? (one click versus rubyinstaller...)

-rp
--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Success Or Failure: There Is No Such Thing As Failure bs866806@163.com C Programming 0 01-06-2008 11:41 AM
[JAVA] [EVALUATION] - The Java Failure (Sorry: The Java(tm) Failure) Ilias Lazaridis Java 0 02-01-2005 10:32 AM
windows socket failure - still having trouble =?Utf-8?B?Q01Dcm9uYW4=?= Wireless Networking 2 10-03-2004 01:10 AM
let's try that again - windows socket failure =?Utf-8?B?Q01Dcm9uYW4=?= Wireless Networking 2 10-02-2004 09:06 AM
Re: 802.1x dhcp failure dpablo Wireless Networking 0 09-01-2004 12:03 AM



Advertisments