Re: [ADVANCED-DOTNET] User scripting for a .NET app

2007-06-08 Thread Peter Ritchie
Hi Terry. Sorry, hadn't noticed they were obsolete. So, Keith's suggestion of using the CodeDOM is the suggested method when they were made obsolete. Or you could try the reference that Adam suggested. I think it depends on what level of scripting you want. If you want to provide simple script

Re: [ADVANCED-DOTNET] MSMQ accross different domains

2007-06-08 Thread Paul Cowan
Here is an example of the string we used to create a queue on a different domain. FORMATNAME:DIRECT=TCP:[EMAIL PROTECTED] > Date: Fri, 8 Jun 2007 09:22:30 -0500> From: [EMAIL PROTECTED]> Subject: Re: > [ADVANCED-DOTNET] MSMQ accross different domains> To: > ADVANCED-DOTNET@DISCUSS.DEVELOP.C

Re: [ADVANCED-DOTNET] User scripting for a .NET app

2007-06-08 Thread Adam Sills
It has to be licensed ($) and deployed, but there's a nice SDK available now: http://www.microsoft.com/downloads/details.aspx?FamilyId=7C2EA8AE-E051-449A- 9051-3A351BF27B7F&displaylang=en Adam.. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Beha

Re: [ADVANCED-DOTNET] User scripting for a .NET app

2007-06-08 Thread Terry Griffin
Hi Peter, I did read that article but I'm concerned that the objects/interfaces he uses are now (.NET 2.0) marked as obsolete. Terry Griffin Sr. Software Engineer ALIS Corporation 10 Technology Drive Peabody, MA 01960 USA [EMAIL PROTECTED] (978) 826-1569 Peter Ritchie <[EMAIL PROTECTED]>

Re: [ADVANCED-DOTNET] MSMQ accross different domains

2007-06-08 Thread Eric Means
Eddie, I'm not an MSMQ guru, but the following links seem promising: http://www.microsoft.com/technet/archive/winntas/proddocs/ntmsgqmn/msmqad05.mspx?mfr=true http://msdn.microsoft.com/msdnmag/issues/03/12/MSMQandNET/ http://download.microsoft.com/download/c/5/3/c531b70d-f7a8-4c9f-a996-4e8abe49e9

Re: [ADVANCED-DOTNET] User scripting for a .NET app

2007-06-08 Thread Peter Ritchie
Chris Sells' article "Visual Studio for Applications Provides Customized Scripting Facilities for Your .NET Project"[1] Provides a good intro to scripting in a .NET app (and covers an "alternative" suggested by Keith Brown) It's basically talking about the the Microsoft.Vsa[2] namespace. [1] http

Re: [ADVANCED-DOTNET] User scripting for a .NET app

2007-06-08 Thread Eyvind Axelsen
What about IronPython? http://www.codeplex.com/IronPython Eyvind. -Opprinnelig melding- Fra: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] På vegne av Terry Griffin Sendt: 8. juni 2007 15:10 Til: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Emne: [ADVANCED-DOTNET] User scripting

[ADVANCED-DOTNET] User scripting for a .NET app

2007-06-08 Thread Terry Griffin
We need to add the ability for users to execute scripts for our application, which runs a scientific tool. The users will be scientist, not professional programmers. A few years ago I would have used the Active Scripting objects and supported JScript scripts accessing our app's object model. Our n