[Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Bernd Viehmann
Hi, I am quit new here, so : My name is Bernd Viehmann, I live in Germany ( near the city Aachen by the German/Dutch border ) and I am a web developer interested in Iron Python. I am just going to start a commercial ASP:NET application with Iron Python. I have planned to use ASP.NET 4.0 for

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread rox
Ironpython can be compiled to .NET modules which then can be obfuscated using any obfuscator for dotNET. Example script is at \Tools\Scripts\pyc.py. Cool thing about protecting intellectual property coded in IronPython is that compiled with pyc.py code look already weird and not so easy to understa

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Slide
On Wed, Jul 20, 2011 at 4:57 AM, Bernd Viehmann < [email protected]> wrote: > Hi, > > I am quit new here, so : My name is Bernd Viehmann, I live in Germany ( > near the city Aachen by the German/Dutch border ) and I am a web developer > interested in Iron Python. > > > I am just going

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Bernd Viehmann
Hi, but I can not use an exe oa an dll as a code-behind-file for a asp.net web-form. So I think this approach will work with IPY-Scripts but I do not understand how I can use the compiler for the code-behinds. Assemblies can be used for tool-classes but I am looking for a way to hide the code

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread rox
Sorry if i confused you, i am not familiar with ASP.NET technology. rox On 7/20/2011 3:59 PM, Bernd Viehmann wrote: > Hi, > > but I can not use an exe oa an dll as a code-behind-file for a asp.net > web-form. So I think this approach will work with IPY-Scripts but I do > not understand how I can

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Jimmy Schementi
>>> Normal the code-behind files for the web forms are readable for anyone >>> with access to the server Define "access", is it the ability to see http://yourhost.com/Default.aspx.py or C:\inetpub\wwwroot\Default.aspx.py? For the first case, as slide mentioned, you can block IIS from serving th

[Ironpython-users] IronPython, Daily Digest 7/19/2011

2011-07-20 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New issue] Traceback is useless when exception raised inside of decorator/with wrapper 2. [New comment] can not compile function with 14+ arguments with pyc.py (Popen.__init__ in subpro

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Jeff Hardy
On Wed, Jul 20, 2011 at 7:14 AM, Jimmy Schementi wrote: > By the way, you're correct that Microsoft.Scripting.AspNet doesn't support > loading code-behind from DLLs produced from clr.CompileModules. If anyone > really wants this, patches are welcome: > https://github.com/IronLanguages/main/tree

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Jimmy Schementi
On Jul 20, 2011, at 11:26 AM, Jeff Hardy wrote: > On Wed, Jul 20, 2011 at 7:14 AM, Jimmy Schementi wrote: >> By the way, you're correct that Microsoft.Scripting.AspNet doesn't support >> loading code-behind from DLLs produced from clr.CompileModules. If anyone >> really wants this, patches are

Re: [Ironpython-users] Q: Protecting my source in an ASP.NET IronPython application possible?

2011-07-20 Thread Bernd Viehmann
Hi Jeff and Jimmy, taking the business-logic in a separate module is my usual style of working, but I didn't see that the pyc-script-hint will work for me. So for me there is no need of compiled-code-behind-files. Thanks much & kind regards Bernd Am 20.07.2011 17:29, schrieb Jimmy Schemen