Re: [IronPython] IronPython Hosting ?

2011-03-06 Thread Dody Gunawinata
I am hosting IronPython in a context of one HTTP request execution via template engine rendering in CMS/ecommerce context. My systems provide user configurable templates that they save and these templates are executed at run time after being loaded from the DB. These templates have built in functi

Re: [IronPython] IronPython in websites

2011-01-13 Thread Dody Gunawinata
Patientboost.com and a bunch of other websites that runs on our IronPython powered CMS. On Thu, Jan 13, 2011 at 5:53 PM, Pablo Dalmazzo wrote: > Hi there, > I was wondering if you know examples of IronPython being used in current > websites. > We use IronPython with asp.net but for intranets so f

Re: [IronPython] no compile page model question

2010-12-06 Thread Dody Gunawinata
The source code for IronPython for ASP.Net is available at codeplex. Check out the implementation - you can probably get something out of it. On Mon, Dec 6, 2010 at 1:11 PM, Pablo Dalmazzo wrote: > I was just reading about that you said here > http://www.asp.net/dynamiclanguages/whitepaper > I wa

Re: [IronPython] no compile page model question

2010-12-05 Thread Dody Gunawinata
I think it's because the Codedomprovider that asp.net relies on cannot be implemented in ironpython. On Sat, Nov 27, 2010 at 4:41 PM, Pablo Dalmazzo wrote: > I'm missing a big part of the picture so forgive me if this question doesnt > make any sense to you. > In C#, VB.NET, etc the code behind i

Re: [IronPython] Embedding IronPython in ASP.NET/SharePoint2010/Commerce Server

2010-10-10 Thread Dody Gunawinata
I am using similar approach in our business license software that runs the city of Alexandria, Egypt. We have to deal with 350 different type of business licenses with multiple factor for calculating the fees (minimum 5). So we just construct the fees calculation formula in Python script that a bus

Re: [IronPython] If not IronPython, what?

2010-08-23 Thread Dody Gunawinata
Hi all, My firm develops both on CPython(Django) and IronPython (embedded in C# 4.0 applications) and we have no plan to change. So far so good. We use IronPython for the power of its language, not so much for Python libraries. Dody G. On Mon, Aug 23, 2010 at 11:25 AM, Michael Foord wrote: >

Re: [IronPython] IronPython / DLR Direction

2010-08-07 Thread Dody Gunawinata
It's really hard to trust Microsoft even for Javascript. That road is full of carcasses of abandoned/half backed implementation from Jscript to JScript.Net to Managed JScript - every a couple of years they come up with a new version of Javascript implementation only to see it wither and die. On Sa

Re: [IronPython] IronPython for ASP.Net with .Net 4.0

2010-07-26 Thread Dody Gunawinata
0 at 7:42 PM, Jimmy Schementi wrote: > >> Yes, stay tuned this evening. >> >> On Jul 25, 2010, at 3:55 PM, Dody Gunawinata >> wrote: >> >> Is there any update on IronPython for ASP.Net 4.0? The current IP for >> ASP.Net 3.5 wi

[IronPython] IronPython for ASP.Net with .Net 4.0

2010-07-25 Thread Dody Gunawinata
Is there any update on IronPython for ASP.Net 4.0? The current IP for ASP.Net 3.5 will not run on ASP.Net 4.0. -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] IronPython for asp.net and codefiles

2010-03-24 Thread Dody Gunawinata
s only re-compiled if it’s > changed between requests. > > > > ~js > > > > *From:* users-boun...@lists.ironpython.com [mailto: > users-boun...@lists.ironpython.com] *On Behalf Of *Dody Gunawinata > *Sent:* Sunday, March 21, 2010 1:49 AM > *To:* Discussion of IronPyth

Re: [IronPython] IronPython for asp.net and codefiles

2010-03-21 Thread Dody Gunawinata
If you want to hide your logic from the source, move as much of the functionality to a dll, whether it is a static or ironpython dll. I don't think IronPython for ASP.Net supports compilable asp.net. On Sat, Mar 6, 2010 at 4:52 PM, Pablo Dalmazzo wrote: > Hi there, > > now I got to work the dlls

Re: [IronPython] IronPython for asp.net integration with Visual Studio 2008

2010-03-01 Thread Dody Gunawinata
Get this drop http://ironpython.net/download/aspnet-201001 for IronPython 2.6 support. On Thu, Feb 25, 2010 at 7:41 AM, Pablo Dalmazzo wrote: > Hi there, > > I have Visual Studio 2008 Professional SP1 installed. I also have > IronPython v. 2.6 installed. In the C:\Program files\IronPython folder

Re: [IronPython] Is it possible to associate an IronPython asp.net webform to a dll file?

2010-02-22 Thread Dody Gunawinata
hmm..there's nothing that I am aware of. The only thing that I found working is setting up a single custom class to be inherited by all the aspx.py file. On Mon, Feb 22, 2010 at 2:58 PM, Pablo Dalmazzo wrote: > Hi there, > > In ASP.NET with the normal ASP model you could have the codefile of the

Re: [IronPython] IronPython ASP

2010-01-27 Thread Dody Gunawinata
If you need any specific help, just make post on this list. I am running production IronPython for ASP.Net applications on Windows 2008, Windows 2003 so I might be able to help. In general, there is no special treatment needed to be done to have it running on Windows Server 2008. On Tue, Jan 26,

Re: [IronPython] [ANN] IronPython 2.6 ASP.NET integration

2010-01-16 Thread Dody Gunawinata
Awesome. Thank you so much. Now I can upgrade to final version of IronPython 2.6 :) Dody Gunawinata On Fri, Jan 15, 2010 at 9:33 PM, Jimmy Schementi < jimmy.scheme...@microsoft.com> wrote: > All, > > The ASP.NET integration (Microsoft.Web.Scripting.dll) has been updated to > w

Re: [IronPython] LINQ from IronPython

2009-12-22 Thread Dody Gunawinata
I am not well averse with generator expression, but I think it will have problem supporting the 9 keywords in LINQ Query Comprehension Syntax so sticking to extension methods would make more sense. C# LINQ Query comprehension is purely syntactic ( http://blogs.msdn.com/ericlippert/archive/2009/12/

Re: [IronPython] Embedding IronPython in Silverlight

2009-12-10 Thread Dody Gunawinata
ironpython.com [ > users-boun...@lists.ironpython.com] on behalf of Dody Gunawinata [ > empirebuil...@gmail.com] > *Sent:* Thursday, December 10, 2009 1:41 AM > *To:* Discussion of IronPython > *Subject:* [IronPython] Embedding IronPython in Silverlight > > What are the necess

[IronPython] Embedding IronPython in Silverlight

2009-12-10 Thread Dody Gunawinata
What are the necessarily libraries for embedding IronPython in Silverlight for the 2.6 releases? My scenario is simply running snippets of Python codes inside oceans of C# based Silverlight code. This Silverlight application has already an embedded IronPython based on older binaries in 2.0 version

Re: [IronPython] Mailing list downtime

2009-12-08 Thread Dody Gunawinata
So you guys switching to the new Google DNS too (DARFC) :) On Mon, Dec 7, 2009 at 7:53 PM, Jimmy Schementi < jimmy.scheme...@microsoft.com> wrote: > Sorry for the IronPython mailing list downtime this weekend; it was a > mess-up with moving to a new DNS server. > > > > ~Jimmy > > ___

Re: [IronPython] Wildcard conf on IIS6

2009-10-19 Thread Dody Gunawinata
MetaBase.xml and MBSchema.xml. IIS stores these files in the *systemroot*\System32\Inetsrv folder of your computer 2009/10/19 Markus Törnqvist > On Sun, Oct 18, 2009 at 06:40:57PM -0600, Jeff Hardy wrote: > > >> The Hello World stuff: > > > >> Now http://localhost/ works as well, hooray! > > >

Re: [IronPython] Wildcard conf on IIS6

2009-10-11 Thread Dody Gunawinata
There's no progress on my side yet and I am swamped at work :( It looks like Jeff's busy as well. 2009/10/9 Markus Törnqvist > Hi! > > The original thread seems to have withered out, so I'll make a new one. > > I'm still having the problems with getting wildcards configured on IIS6, > so this is

Re: [IronPython] IronPython 3

2009-10-05 Thread Dody Gunawinata
+1 On Mon, Oct 5, 2009 at 1:14 PM, Michael Foord wrote: > Hey all, > > I have an idea for how I'd like to see IronPython 3 developed, not sure how > much extra work it would be but it would be very cool... > > I'd love to see IronPython 3 as a separate DLR language that could be used > alongside

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-10-01 Thread Dody Gunawinata
I spent only two hours before giving up and got the usual errors. I'll try it again on the weekend (it's Friday/Saturday here in Egypt) so I can fortify myself with Oktoberfest amount of beer - see if it helps. 2009/9/30 Markus Törnqvist > On Tue, Sep 29, 2009 at 05:08:07P

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-29 Thread Dody Gunawinata
s all in my application, it's expected to test for cookies. > >> > >> That's what I have now. > > On Tue, Sep 29, 2009 at 04:52:24PM +0200, Dody Gunawinata wrote: > >This looks like nwsgi fails to bind to wildcard request although weirdly > it > >does

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-29 Thread Dody Gunawinata
This looks like nwsgi fails to bind to wildcard request although weirdly it does respond to the first root request. Isyour hello.wsgi a Django application? 2009/9/29 Markus Törnqvist > On Tue, Sep 29, 2009 at 03:56:54PM +0200, Dody Gunawinata wrote: > >Can you show me your uri that

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-29 Thread Dody Gunawinata
Can you show me your uri that generate this 404 error? 2009/9/29 Markus Törnqvist > On Tue, Sep 29, 2009 at 01:19:07PM +0200, Dody Gunawinata wrote: > >If you are using IIS 6.0, try to use wildcard mapping to asp.net > > > http://www.microsoft.com/technet/prodtechnol/Windows

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-29 Thread Dody Gunawinata
If you are using IIS 6.0, try to use wildcard mapping to asp.net http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/5c5ae5e0-f4f9-44b0-a743-f4c3a5ff68ec.mspx?mfr=true

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-25 Thread Dody Gunawinata
Yup. NWSGI beta 2 was built against older version. Either rebuild or use assembly rebinding http://aspadvice.com/blogs/ssmith/archive/2006/11/15/AssemblyBinding-in-Web-Config-and-XMLNS.aspx On Fri, Sep 25, 2009 at 6:14 PM, Markus Törnqvist wrote: > On Tue, Sep 22, 2009 at 09:56:58PM +0300, Mark

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-19 Thread Dody Gunawinata
Usually installed mean that the dll is registered to GAC. But for NWSGI, I think the installer simply put nwsgi.dll in a directory. As this is an ASP.Net system, you have to move it to the bin directory of your web folder. On Sat, Sep 19, 2009 at 7:56 PM, Markus Törnqvist wrote: > On Sat, Sep 1

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-19 Thread Dody Gunawinata
Ah, I know what you did wrong. Map .wsgi to asp.net dll, not nwsgi.dll. On Sat, Sep 19, 2009 at 7:50 PM, Markus Törnqvist wrote: > On Sat, Sep 19, 2009 at 07:37:48PM +0300, Dody Gunawinata wrote: > >Hi Markus, > >It works fine on my installation (Windows 2003 32 bit). Here'

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-19 Thread Dody Gunawinata
Hi Markus, It works fine on my installation (Windows 2003 32 bit). Here's the hello world sample http://nwsgi.spellcoder.org/hello.wsgi. You can download the whole binaries here http://nwsgi.spellcoder.org/nwsgi.rar and try it out on your machine. See if it works. Dody Gunawinata 2009

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-19 Thread Dody Gunawinata
I'm currently trying to replicate your problem on IIS 6.0 on WIndows 2003 server. I'll get the result in a bit. On Sat, Sep 19, 2009 at 6:54 PM, Markus Törnqvist wrote: > On Sat, Sep 19, 2009 at 05:23:21PM +0300, Markus T�rnqvist wrote: > > > >Unfortunately it's still broken; "The specified p

Re: [IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-19 Thread Dody Gunawinata
Hi Markus, You are downloading an old version of NWSGI. The latest version is NWSGI 2.0 Beta 2 which you can find here http://nwsgi.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29347. It has a very much different way to install. Give it a try and let me know if you have any problem. Dody

[IronPython] Tornado webserver

2009-09-13 Thread Dody Gunawinata
Facebook open sourced FriendFeed's web server based on Python 2.6 http://www.tornadoweb.org/. It looks very promising and it comes with a lightweight web development framework. -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://li

Re: [IronPython] C# - IronPython Integration

2009-08-09 Thread Dody Gunawinata
http://dlr.codeplex.com/Wiki/View.aspx?title=Docs%20and%20specs Download the dlr-spec-hosting document. On Sat, Aug 8, 2009 at 8:10 AM, wrote: > I am new to IronPython. I am trying to add IronPython scripting support to > my C# program. I have a number of questions. > > Namespaces > -- >

Re: [IronPython] Platform comparison

2009-08-03 Thread Dody Gunawinata
gt; > To my knowledge there is not a working python implementation under parrot > nor is there an IronPerl implementation for the DLR. The comparison you ask > for is not even apples and oranges, More like mushrooms and turnips :) > ; > >

[IronPython] Platform comparison

2009-08-02 Thread Dody Gunawinata
Is there any comparison between DLR and ParrotVM somewhere on the interwebs? -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] SQLite

2009-07-29 Thread Dody Gunawinata
If not, is SQLite .NET from http://sqlite.phxsoftware.com/ the best alternative? Yes. That library is solid. I have used them in productions. On Thu, Jul 30, 2009 at 12:04 AM, Bruce Bromberek wrote: > In Cpython I use SQLite, in Iron Python I've taken to using SQL Server > Compact Edition. But

Re: [IronPython] Q:ASP.NET developing with IPY.Deploying on IIS or Apache?

2009-07-15 Thread Dody Gunawinata
1. There is nothing special to make it work on IIS. Simply download http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=17613 and run the example which contains all the web.config you need.2. We have been using it extensively for the past 2 years on production. The latest version is s

Re: [IronPython] DLR based Javascript Implementation

2009-06-21 Thread Dody Gunawinata
ou want to change/recompile the code yourself. http://downloads.embarcadero.com/free/delphi_prism"; On Sun, Jun 21, 2009 at 11:38 AM, Dody Gunawinata wrote: > I'm asking the dev to publish a build. I'll update once they have one. > Dody G. > > On Sat, Jun 20, 2009 at 5:03

Re: [IronPython] DLR based Javascript Implementation

2009-06-21 Thread Dody Gunawinata
need, but I can't find a good download location. > > On Sat, Jun 20, 2009 at 2:24 AM, Dody Gunawinata > wrote: > > http://www.remobjects.com/roscript.aspx > > > > ___ > > Users mailing list > > Users@lis

[IronPython] DLR based Javascript Implementation

2009-06-20 Thread Dody Gunawinata
http://www.remobjects.com/roscript.aspx ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Embedding IronPython and calling python functions from C#

2009-06-11 Thread Dody Gunawinata
You can read all yours file scripts, then using StringBuilder to combine then and call CreateScriptSourceFromString()Then you can call your functions within the combined scripts normally. Pretty much you are creating a giant source code on the fly. On Thu, Jun 11, 2009 at 5:32 PM, Patrick van der

Re: [IronPython] How to insert or embed a html file in to a Word doc ?

2009-06-08 Thread Dody Gunawinata
Check the API for System.XML otherwise use Element Tree http://effbot.org/zone/element-index.htm On Mon, Jun 8, 2009 at 10:21 PM, Sivaguru Perambalam wrote: > Update : > > Figured out the solution for the 1st question (embedding the html file in > to a Word Doc, part ) . > > *BUT, I am still in

Re: [IronPython] How to insert or embed a html file in to a Word doc ?

2009-06-08 Thread Dody Gunawinata
I recommend you to use http://invoke.co.nz/products/help/docx.aspx library. Parsing .docx xml is by hand will waste a lot of your time. Dody G. On Mon, Jun 8, 2009 at 7:32 PM, Sivaguru Perambalam wrote: > Hello, > > I am trying to embed a html file (a report as a result of an sql query ) in > to

Re: [IronPython] Expose C# Class to Script Ironpython

2009-05-30 Thread Dody Gunawinata
Check out http://www.ironpython.info/index.php/Main_Page. It will have the information you are looking for. On Sat, May 30, 2009 at 2:54 PM, wrote: > i´m developing a application with Winforms with a scriptable Ironpython > and i want expose to use in script with Ironpython my C# Classes. > Fo

[IronPython] Tips for IronPython for ASP.Net (IronPython 2.6 Beta 1)

2009-05-26 Thread Dody Gunawinata
, everything else looks dandy. Enjoy. Dody Gunawinata -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] [ATTN] ASP.NET and IronPython 2.6 Beta 1

2009-05-26 Thread Dody Gunawinata
t a python subclass of ScriptUserControl *Source Error:* Line 2: lblWarning.Text = "Hello World" Line 3: Response.Write("From Response")Line 4: ViewState["test"] = "xx"Line 5: *Source File: */test.ascx.py*Line: *4 On Tue,

Re: [IronPython] 'Python' does not exist in current context

2009-05-26 Thread Dody Gunawinata
Make sure you refer to the following assemblies. Microsoft.Scripting.dllMicrosoft.Scripting.Core.dll IronPython.dll IronPython.Modules.dll On Tue, May 26, 2009 at 11:47 PM, Justin Regele wrote: > Trying to embed IPy in C#, and after digging all over the web and the > archives of this list, I ca

Re: [IronPython] [ATTN] ASP.NET and IronPython 2.6 Beta 1

2009-05-26 Thread Dody Gunawinata
Yay ! I had planned to sleep early :) (It's 11 PM Cairo time) This is awesome, thank you so much. Finally I can say goodbye to Microsoft.Scripting.Vestigial and remove my custom built IP 2.0. Dody G. On Tue, May 26, 2009 at 10:39 PM, Jimmy Schementi < jimmy.scheme...@microsoft.com> wrote: > *D

Re: [IronPython] ironpython compared to powershell

2009-05-26 Thread Dody Gunawinata
Nicer syntax On Tue, May 26, 2009 at 4:58 PM, jocke khazad wrote: > Hi everyone! > > I would like you ask this question that I seem not to get an answer for > anywhere. > > What is the advantage of using ironpython compared to using only > powershell? Or is it just a personal choice which one yo

Re: [IronPython] IronPython for ASP.Net

2009-05-25 Thread Dody Gunawinata
So is there any new timeline for this right now or is it in the "beats me" territory? Dody G. On Sun, May 24, 2009 at 4:05 PM, Dody Gunawinata wrote: > Bummer. Thanks for the info. > > > On Sun, May 24, 2009 at 3:43 PM, Curt Hagenlocher wrote: > >> Judging by the

Re: [IronPython] IronPython for ASP.Net

2009-05-24 Thread Dody Gunawinata
Bummer. Thanks for the info. On Sun, May 24, 2009 at 3:43 PM, Curt Hagenlocher wrote: > Judging by the last internal email I saw about this on Friday, I'd guess > not... :( > > > On Sun, May 24, 2009 at 5:25 AM, Dody Gunawinata > wrote: > >> Is there any chance f

Re: [IronPython] IronPython for ASP.Net

2009-05-24 Thread Dody Gunawinata
...@lists.ironpython.com] *On Behalf Of *Dody Gunawinata > *Sent:* Friday, May 22, 2009 11:39 AM > *To:* Discussion of IronPython > > *Subject:* Re: [IronPython] IronPython for ASP.Net > > > > IronPython 2 Beta 1 ? > > On Fri, May 22, 2009 at 1:11 AM, Jimmy Schementi

[IronPython] Another LISP implementation on .Net

2009-05-24 Thread Dody Gunawinata
http://yarr.codeplex.com/ This comes with a pretty good documentation and a continuation of the LSHarp project. It's not based on DLR. -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.

Re: [IronPython] IronPython for ASP.Net

2009-05-22 Thread Dody Gunawinata
.6 will include the DLL and source, > otherwise I’ll make this package again. > > > > ~js > > > > *From:* Dody Gunawinata [mailto:empirebuil...@gmail.com] > *Sent:* Thursday, May 21, 2009 4:23 AM > *To:* Jimmy Schementi > *Cc:* Discussion of IronPython > *Sub

Re: [IronPython] IronPython for ASP.Net

2009-05-22 Thread Dody Gunawinata
> Hopefully the next beta of IronPython 2.6 will include the DLL and source, > otherwise I’ll make this package again. > > > > ~js > > > > *From:* Dody Gunawinata [mailto:empirebuil...@gmail.com] > *Sent:* Thursday, May 21, 2009 4:23 AM > *To:* Jimmy Schementi &

Re: [IronPython] IronPython for ASP.Net

2009-05-21 Thread Dody Gunawinata
t being put on supporting the technology stacks because I think it is pretty short sighted. No, I don't blame this team for this but at least if I complain on this list, it might have a chance being forwarded internally because this is one of the best community mailing list for Microsoft technolo

[IronPython] IronPython for ASP.Net

2009-05-20 Thread Dody Gunawinata
Is there any update for IronPython for ASP.Net? It has been three years since IronPython support for ASP.Net introduced with the release of the whitepaper ( http://www.asp.net/DynamicLanguages/whitepaper/) and the first binary. Since then I think we've had Katrina, a Beijing Olympic, a new Presiden

[IronPython] Groovy on the DLR

2009-05-10 Thread Dody Gunawinata
http://groovy.codeplex.com/ -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Iron Python and Asp.net (framework 3.5)

2009-05-08 Thread Dody Gunawinata
e > same thing for the VB.Net project, it should mirror the c# variant pretty > closely but it will fail at runtime. > > > > > http://cid-8b0c290cf9b30fd9.skydrive.live.com/self.aspx/.Public/IronPythonDemoWithVB.zip > > > > /Patrik > > > > *Från:* users-b

Re: [IronPython] Iron Python and Asp.net (framework 3.5)

2009-05-08 Thread Dody Gunawinata
t; case the VB-keyword is "Imports": > > > > Imports System.Collections > > Imports System.Collections.Generic > > > > /Patrik > > > > *Från:* users-boun...@lists.ironpython.com [mailto: > users-boun...@lists.ironpython.com] *För *Dody Gunawinata > *Skickat:* den

Re: [IronPython] Iron Python and Asp.net (framework 3.5)

2009-05-08 Thread Dody Gunawinata
Application project model, not the website > model. > > 3. The language for code behinds is VB.net. > > > > Thanks for looking into this, it's greatly appreciated. > > > > /Patrik > > > > *Från:* users-boun...@lists.ironpython.com [mailto

Re: [IronPython] Iron Python and Asp.net (framework 3.5)

2009-05-08 Thread Dody Gunawinata
I'll try to reproduce this. I need the following details: - What version of IronPython are you using? - Are you using the website model or the web project model for your asp.net application. - What language do you use for your code behind, C# or VB or some other code behind language

Re: [IronPython] Announcing IronPython 2.6 Alpha 1

2009-05-06 Thread Dody Gunawinata
pha 1 > > > > Any update on the timeline for getting IronPython for ASP.Net updated? This > would make a world of difference for our IronPython-based web app. > > > > Adam > > > > Adam Brand > > SilverKey Technologies > > > > *From:* users-boun.

Re: [IronPython] bytes behavior on 2.6...

2009-05-05 Thread Dody Gunawinata
Keep it to 3.0 behavior because it answers the question of life, universe and everything. On Tue, May 5, 2009 at 11:26 PM, Dino Viehland wrote: > We have an active bug against our new bytes implementation for 2.6. > Currently if you do: > > > > b'***'[0] > > > > you get back 42 as an int. This

Re: [IronPython] ASP.Net Dynamic Language Support Download Location?

2009-05-03 Thread Dody Gunawinata
FYI, ASP.Net Dynamic Language release in September 2008 does not work with .Net 3.5 libraries. On Sun, May 3, 2009 at 12:53 AM, Adam Brand wrote: > Sorry if this sounds like a newbie question, but where can I get the > September 2008 ASP.Net Dynamic Language Support files? > > > > I looked here

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Dody Gunawinata
t's great that you want to improve your skills. But I feel obliged to >> point out that IronPython -- and CPython, for that matter -- are about >> equally susceptible to memory leaks as C#. >> >> On Thu, Apr 23, 2009 at 2:00 AM, Vladimir Eremeev > wl2.

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Dody Gunawinata
suggest rewriting the application in IronPython as the last option. Dody G. On Thu, Apr 23, 2009 at 11:00 AM, Vladimir Eremeev wrote: > > > Dody Gunawinata wrote: > > > > Can I ask the reason why you want to rewrite portion of this application > > in > > IronPy

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Dody Gunawinata
Can I ask the reason why you want to rewrite portion of this application in IronPython? On Thu, Apr 23, 2009 at 10:44 AM, Vladimir Eremeev wrote: > > Hi all. > I am trying to get started in programming with .Net and IronPython. > > I am involved in a project of developing a large application, wr

Re: [IronPython] Main Utility of IronPython?

2009-04-12 Thread Dody Gunawinata
Is there anyone using IronPython to run their core business other than ResolveOne folks? On Sun, Apr 12, 2009 at 2:47 PM, JoeSox wrote: > Porting or wrapping Python apps/modules to a .NET environment. > > -- > Joe > > On Sat, Apr 11, 2009 at 12:52 PM, Adam Brand > wrote: > > What do you guys th

Re: [IronPython] IronPython in Action Out!

2009-04-11 Thread Dody Gunawinata
Congratulation! On Sat, Apr 11, 2009 at 3:53 AM, Michael Foord wrote: > David Seruyange wrote: > >> Congrats although I was able to get a copy early (about 2 weeks ago) >> directly from Manning. Paid full price, I hope that somehow trickles back to >> you :) >> > > Some proportion comes back - go

Re: [IronPython] How to use memcache client library written in csharp from ironpython

2009-04-03 Thread Dody Gunawinata
1. I guess it will be in 2010 (Visual Studio 2010 timeline) 2. You can find more tutorials on to do iron python here http://www.ironpython.info/index.php/Contents#Getting_Started On Fri, Apr 3, 2009 at 9:59 PM, Vineet Jain wrote: > I'm trying the use the memcache client library written here: > >

Re: [IronPython] Announcing IronPython 2.6 Alpha 1

2009-03-30 Thread Dody Gunawinata
y at work about replacing a well-known > development environment with eclipse and the result was "our only real > requirement is intellisense". > > > > Cheers, > > Kyle > > > -- > > *From:* users-boun...@lists.ironpython.com [

Re: [IronPython] Announcing IronPython 2.6 Alpha 1

2009-03-29 Thread Dody Gunawinata
on the timeline for getting IronPython for ASP.Net updated? > This would make a world of difference for our IronPython-based web app. > > > > Adam > > > > Adam Brand > > SilverKey Technologies > > > > *From:* users-boun...@lists.ironpython.com [mailto: >

Re: [IronPython] Announcing IronPython 2.6 Alpha 1

2009-03-28 Thread Dody Gunawinata
This is awesome. Web application can benefit from this "adaptive compilation" approach a lot - especially for low trafficked sites. On Thu, Mar 26, 2009 at 11:08 PM, Giles Thomas < giles.tho...@resolversystems.com> wrote: > Dave, > > This is great news, congratulations to the IP team on this rele

Re: [IronPython] IronPython Excel 2007 Interop on Vista - problem

2009-03-24 Thread Dody Gunawinata
Check this link on how it is done in powershell http://www.microsoft.com/technet/scriptcenter/resources/qanda/jan09/hey0112.mspx. I wonder if Worksheet is actually an array or it's some other data structure. On Tue, Mar 24, 2009 at 2:05 PM, Dody Gunawinata wrote: > Did you get the same

Re: [IronPython] IronPython Excel 2007 Interop on Vista - problem

2009-03-24 Thread Dody Gunawinata
Did you get the same error if you change the last code to wbook.Worksheets[1].Name = "second worksheet" On Tue, Mar 24, 2009 at 2:00 PM, Utini wrote: > It appears that the default Workbook.Add always includes 3 Worksheets. > > 2009/3/24 Dody Gunawinata > > Do

Re: [IronPython] IronPython Excel 2007 Interop on Vista - problem

2009-03-24 Thread Dody Gunawinata
Does workbook automatically generates default worksheets when you create them? It looks like an array out of bound problem. 2009/3/24 Utini > Hi all, > > I'm attempting to automate Excel 2007 using IronPython 2.0.1. I've followed > a couple of examples (which I gather were written against Excel

Re: [IronPython] memory leak in IP 2.0.1

2009-03-23 Thread Dody Gunawinata
There is a bug item for this memory leak issue http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=20399 2009/3/23 Zsidó Zoltán > Hello, > > I host ironPython in c#. It worked well. I changed from 1.1.2 to 2.0.1 and > now I have a memory leak. > > I do not know why. Any idea? > > I

Re: [IronPython] memory leak in IP 2.0.1

2009-03-23 Thread Dody Gunawinata
This was response from Dino a couple of emails ago. Direct quote " ust some comments on this as there’s a few issues intertwined here: 1. Optimized code – this is currently the default and part of the original problem. If you execute code in “optimized” mode we generate an uncollectible ty

Re: [IronPython] 2.0 deployment

2009-03-09 Thread Dody Gunawinata
stion :) > > Just a script run from the Windows scheduler that reads a database and writes > some files. > > Kyle > -Original Message- > From: users-boun...@lists.ironpython.com > [mailto:users-boun...@lists.ironpython.com] On Behalf Of Dody Gunawinata &g

Re: [IronPython] 2.0 deployment

2009-03-09 Thread Dody Gunawinata
What kind of application are you trying to deploy? ASP.Net with IP support? Application with hosted IP? IP scripts? Dody G. On Tue, Mar 10, 2009 at 5:27 AM, Howland-Rose, Kyle wrote: > Hi all, > > My understanding of http://www.ironpython.info/index.php/Deployment is that > when deploying to Wi

Re: [IronPython] Array of Objects in IronPython

2009-03-03 Thread Dody Gunawinata
values = System.Array.CreateInstance(System.Object, reader.FieldCount) On Tue, Mar 3, 2009 at 6:03 PM, Bernd Viehmann wrote: > Hi, > > I have a question regarding a typed array. > > Basically I want to use IronPython and ADO.NET to get some data from a > stored procedure. My first idea was to us

Re: [IronPython] Please vote up this DLR memory leak bug

2009-03-03 Thread Dody Gunawinata
s our interning which is doing this. > > Let me know what you get from here and maybe there'll be something obvious or > maybe I can have some other suggestions. > > >> -Original Message- >> From: users-boun...@lists.ironpython.com [mailto:users- >> bo

Re: [IronPython] Microsoft.Scripting and IronPython

2009-03-01 Thread Dody Gunawinata
Microsoft.Scripting and Microsoft.Script.Core is related to DLR (Dynamic Language Runtime) http://www.codeplex.com/dlr. IronPython is the Python implementation for .Net platform and relies heavily on DLR, which provides common infrastructure for dynamic language implementation on the .Net framewor

Re: [IronPython] Please vote up this DLR memory leak bug

2009-02-26 Thread Dody Gunawinata
memory in the GC heap and we might be > able to track it down from there.  If that's not sufficient maybe we can > iterate and figure out what's going on. > >> -Original Message- >> From: users-boun...@lists.ironpython.com [mailto:users- >> boun.

Re: [IronPython] Please vote up this DLR memory leak bug

2009-02-25 Thread Dody Gunawinata
an > issue as usually you aren’t compiling code with new names every single > type. > > > > From: users-boun...@lists.ironpython.com > [mailto:users-boun...@lists.ironpython.com] On Behalf Of Dody Gunawinata > Sent: Sunday, February 22, 2009 2:10 PM > To: Discussio

[IronPython] Please vote up this DLR memory leak bug

2009-02-22 Thread Dody Gunawinata
There's only 5 votes so far. http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=20399 -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Released prototype Excel add-in making it easy to create Python add-ins

2009-02-16 Thread Dody Gunawinata
It will.. eventually..after the modules import completed.. On Mon, Feb 16, 2009 at 1:58 PM, Giles Thomas < giles.tho...@resolversystems.com> wrote: > IronPython in a spreadsheet? Terrible idea, it'll never work ;-) > > > Cheers, > > Giles > > -- > Giles Thomas > giles.tho...@resolversystems.com

[IronPython] Jetfire scripting language

2009-02-11 Thread Dody Gunawinata
This is a new kid on the block http://www.codeplex.com/Jetfire. It looks like a very interesting DSL for workflow than full fledged scripting language - no DLR integration. -- nomadlife.org ___ Users mailing list Users@l

Re: [IronPython] Any update on IronPython for ASP.Net?

2009-02-11 Thread Dody Gunawinata
ts.ironpython.com] *On Behalf Of *Dody Gunawinata > *Sent:* Wednesday, February 11, 2009 2:11 AM > *To:* Discussion of IronPython > *Subject:* [IronPython] Any update on IronPython for ASP.Net? > > > > The last one was using IronPython 2.0 Beta 3 and had the compatibility w

[IronPython] Any update on IronPython for ASP.Net?

2009-02-11 Thread Dody Gunawinata
The last one was using IronPython 2.0 Beta 3 and had the compatibility with .Net 3.5 assembly issue. -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Ironclad 0.8 released

2009-01-29 Thread Dody Gunawinata
One more encouragement :) x64 support is important now that people are migrating to Windows Server 2008 hypervisor VMs to run the web application. Dody G. On Thu, Jan 29, 2009 at 3:12 PM, William Reade wrote: > Still no x64, although the necessary supporting changes are gradually > creeping in.

Re: [IronPython] IronPython 2.0 Errors...

2009-01-23 Thread Dody Gunawinata
There may be a way to execute the show form without actually displaying it to the user - there must be some AppDomain magic available to be used somewhere. The code needs to be executed one way or another and what you are suggesting I think falls into the static verifier category which is a whole a

Re: [IronPython] IronPython 2.0 Errors...

2009-01-23 Thread Dody Gunawinata
Don't you think PythonException or related classes would be sufficient? On Fri, Jan 23, 2009 at 7:14 PM, António Piteira < antonio.pite...@wtvision.com> wrote: > I get it, I'm not really surprised… I was hoping that maybe there was a > way to use scriptSource.Compile(options,errorTracker), or so

Re: [IronPython] Sorting CSV file

2009-01-23 Thread Dody Gunawinata
1. Define a class to hold individual data2. Go through every single line 3. Split based on ',' and insert the values to the object and add them to the list 4. Sort the list based on the fields you want. On Fri, Jan 23, 2009 at 10:28 AM, Sheetal Gophane < sheetal_goph...@persistent.co.in> wrote: >

Re: [IronPython] Calling a Python function (compiled into an assembly) from C# using delegates.

2009-01-21 Thread Dody Gunawinata
hmm..why would an IronPython assembly be different from a static language assembly? Wouldn't that negates the main point of the CLR? Dody G. On Wed, Jan 21, 2009 at 6:20 PM, Michael Foord wrote: > Dody Gunawinata wrote: > >> string cmd = @&q

Re: [IronPython] Calling a Python function (compiled into an assembly) from C# using delegates.

2009-01-21 Thread Dody Gunawinata
ython.com] *On Behalf Of *Renaud Durand >> *Sent:* Wednesday, January 21, 2009 7:45 AM >> *To:* d...@nomadlife.org; Discussion of IronPython >> *Subject:* Re: [IronPython] Calling a Python function (compiled into an >> assembly) from C# using delegates. >> >> >> &g

Re: [IronPython] Calling a Python function (compiled into an assembly) from C# using delegates.

2009-01-21 Thread Dody Gunawinata
I think you have to import the function - loading the assembly alone is not enough. On Wed, Jan 21, 2009 at 5:17 PM, Renaud Durand wrote: > Hi again, > > I'm trying to call a python function from C#. I found out through a > tutorial how to do it from > a Python source file but I would like to do

  1   2   >