Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Michael Foord
Patrick O'Brien wrote: > On 1/12/07, *Michael Foord* <[EMAIL PROTECTED] > > wrote: > > > We merely do the layout in the forms editor and make the components > protected rather than private. *All* the logic is done with > IronPython. > > Admittedly this wor

Re: [IronPython] Ide

2007-01-12 Thread Michael Foord
James Matthews wrote: > Is there any good references and/or books on iron python as well as a > good ide I'm currently using Wing, which whilst it doesn't have native IronPython support is one of the best Python IDEs. I'm working on a book, but I don't think there are any available currently wh

Re: [IronPython] Java Web Service

2007-01-12 Thread Keith J. Farmer
It might be useful to post a wsdl which reproduces this. From: [EMAIL PROTECTED] on behalf of wierob Sent: Fri 1/12/2007 10:48 AM To: users@lists.ironpython.com Subject: [IronPython] Java Web Service Hi I have a Java web service implemented as an EJB (J2EE 1.4)

[IronPython] Ide

2007-01-12 Thread James Matthews
Is there any good references and/or books on iron python as well as a good ide -- http://www.goldwatches.com ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] Java Web Service

2007-01-12 Thread wierob
Hi I have a Java web service implemented as an EJB (J2EE 1.4), which exposes the following method. /** * Web service operation */ public String sayHello(final String arg) throws java.rmi.RemoteException { return "Hello " + arg + "!!!"; } It works fine with a Java cl

Re: [IronPython] Q: How to resize an System.Array ?

2007-01-12 Thread Dino Viehland
dataHeap = System.Array[System.Byte] is just remembering the array type, not creating the actual array instance. What I think you want is: import System dataHeap = System.Array.CreateInstance(System.Byte, 4096) # creates a byte array 4k long if you want to then resize the array:

Re: [IronPython] Loading XAML files

2007-01-12 Thread Haibo Luo
I know little about WPF. I found http://msdn2.microsoft.com/en-us/library/ms752309.aspx talking about x:Class attribute. Removing x:class line, I am able to load the UserControl. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gutfreund, Yechezkal Sent: Friday, January 12, 2007

Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Michael Foord
Mike Krell wrote: > On 1/12/07, Michael Foord <[EMAIL PROTECTED]> wrote: > >>> [How] much work does the IPy subclass take on? How much of the dialog event >>> handlers is handled in IPy? >>> >>> >> None. :-) >> > > I think you meant "All." :-) > > >> We merely do the layout in t

Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Mike Krell
On 1/12/07, Michael Foord <[EMAIL PROTECTED]> wrote: > > [How] much work does the IPy subclass take on? How much of the dialog event > > handlers is handled in IPy? > > > None. :-) I think you meant "All." :-) > We merely do the layout in the forms editor and make the components > protected rat

Re: [IronPython] Q: How to resize an System.Array ?

2007-01-12 Thread Haibo Luo
dateHeap is a type in your code snippet below. The following code works, but I am not 100% sure it is expected to see the exception thrown for the last line. Dino? >>> import System >>> t = System.Array[System.Byte] >>> a = t([1,2]) >>> System.Array.Resize[System.Byte](a, 10) System.Byte[](1, 2,

Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Patrick O'Brien
On 1/12/07, Michael Foord <[EMAIL PROTECTED]> wrote: We merely do the layout in the forms editor and make the components protected rather than private. *All* the logic is done with IronPython. Admittedly this works well for dialogs where you have no sub windows etc, but you could design these

[IronPython] Dyamic Web Service and Security

2007-01-12 Thread wierob
Hi, How can I configure username/password and ssl (trusted server certificates) in a dynamic web service client? regards robert ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Loading XAML files

2007-01-12 Thread Gutfreund, Yechezkal
All of that XAML code is generated by BLEND. Both Blend and VS-Studio understand that x:Class is a member of the namespace. But I am also not a WPF .NET guru. What I suspect is that when I use ipy, I am not using the same libraries that do XML and XAML loading as when I use Blend and VS-Studio. I

Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Michael Foord
Mike Krell wrote: > On 1/12/07, Michael Foord <[EMAIL PROTECTED]> wrote: > > >> At Resolver we have the full version of Visual Studio, but we still use >> the forms editor to create C# code. >> >> We use it just to create the GUI layer (mainly for our dialogs), making >> sure that all the attrib

[IronPython] Q: How to resize an System.Array ?

2007-01-12 Thread Bernd Viehmann
Hi, I have some problems with using >System.Array<-instances in ipy. I have found a way to create them, but not how to use the :-). Basically i want 2 use a MemoryStream in the following way ( kind of C#-way :-) ) : dataHeap = System.Array[System.Byte] dataHeap.Resize(dataHeap

Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Mike Krell
On 1/12/07, Michael Foord <[EMAIL PROTECTED]> wrote: > At Resolver we have the full version of Visual Studio, but we still use > the forms editor to create C# code. > > We use it just to create the GUI layer (mainly for our dialogs), making > sure that all the attributes are set to protected. Then

Re: [IronPython] Full forms editor with VS Express?

2007-01-12 Thread Michael Foord
Mike Krell wrote: > Hey all, > > My understanding is that it's not possible to use the full IronPython > integration with VS Express. Given that, what is the best way to use > the full power of the forms editor from VS express but code the forms > and the rest of the app in IronPython? I don't wa

[IronPython] Full forms editor with VS Express?

2007-01-12 Thread Mike Krell
Hey all, My understanding is that it's not possible to use the full IronPython integration with VS Express. Given that, what is the best way to use the full power of the forms editor from VS express but code the forms and the rest of the app in IronPython? I don't want to use any of the (mostly