Re: [IronPython] compiling standalone programs

2006-06-15 Thread Sanghyeon Seo
2006/6/16, jeff sacksteder <[EMAIL PROTECTED]>: > > That appears to still create a console window at runtime. Can that be > disabled? I know that Py2exe can create 'console' or 'windows' applications > optionally. This is the issue #346 and it seems that it will be fixed in 1.0 Beta 8. http://www

Re: [IronPython] compiling standalone programs

2006-06-15 Thread jeff sacksteder
And this will produce a source.exe file.  The executable, however, willstill need the IronPython.dll reference.That appears to still create a console window at runtime.  Can that be  disabled? I know that Py2exe can create 'console' or 'windows' applications optionally. ___

[IronPython] IronPython News Feeds

2006-06-15 Thread Sanghyeon Seo
What is the plan regarding "News Feeds" tab of IronPython homepage on CodePlex? It could aggregate Jim Hugunin's blog and other IronPython crew blogs, for example. http://blogs.msdn.com/hugunin/ An example of "News Feeds" tab in action: http://www.codeplex.com/Project/NewsFeeds.aspx?ProjectName=C

Re: [IronPython] remoting from IronPython

2006-06-15 Thread J. Merrill
It could also help to use Fuslogvw.exe to watch the binding failure -- http://msdn2.microsoft.com/en-us/library/e74a18c4.aspx At 08:16 PM 6/14/2006, Dino Viehland wrote >Are you remoting to another process, or to another app domain? Does the other >process have access to IronPython.dll ? > >One

Re: [IronPython] compiling standalone programs

2006-06-15 Thread Kranar Drogin
To compile a Python source file to an executable, you can use the –X:SaveAssemblies option in the IronPython console. Given a file source.py, you would just do: IronPythonConsole –X:SaveAssemblies source.py And this will produce a source.exe file. The executable, however, will still need the

Re: [IronPython] remoting from IronPython

2006-06-15 Thread Dino Viehland
Ok, I've looked into this some more now... Turns out that all my previous advice was useless. The problem here is actually that MarshalByRefObject's will happily cast to any interface you ask for. For example in C# if you try and cast some random MBR to IComparable, it works. Only when you c

Re: [IronPython] remoting from IronPython

2006-06-15 Thread Ralph Soons
I am using a seperate process. After I include IronPython.dll in the library where my remote object is implemented, I get the following exception: "Attempted to call a method declared on type 'IronPython.Runtime.IDynamicObject' on an object which exposes 'RemotingServerClient.ServerTalk'." (Remo