0
votes
0answers
21 views

IronPython: Catch OverflowError/StackOverflowException

I let the user write a python file and I execute it with exec. But when the user has a OverflowError than the hole program will crash. How can I prevent this? This does NOT work: try: f(*args) ...
0
votes
1answer
19 views

IronPython - error while invoking

Im trying to write an IronPython app that uses a COM object interface. I manage to import it using clr.AddReference, and manage also to call some of the functions, create objects, etc. However at a ...
0
votes
0answers
26 views

Woking code gives error in another project

I'm trying to execute "dot" (a graph drawer thing from www.graphviz.org) form IronPython. Here is my code: import clr clr.AddReference('System.Core') import System ...
2
votes
0answers
29 views

Ironpython subclassing .NET classes

I am trying to subclass the .NET RoutedUICommand in IronPython. I can do this as long as I do not pass any parameters to the init function. As soon as I do this, I get an ArgumentTypeException ...
1
vote
0answers
52 views

Use IronPython and Jython as API Tester

We have a server which exposes a set of REST APIs. Those APIs are meant to be exposed for clients on different platform so we want to provide SDKs in Java and .NET The SDKs are using similiar ...
1
vote
1answer
84 views

Importing CLR using IronPython

I wanted to give IronPython a try since I want to learn more about both Python and the .Net underlay. I installed last version (2.7.3) and trying to import clr, on my first line, I can't run and ...
0
votes
2answers
53 views

Gurobi API Exceptions (GRBException) with IronPython

I have a problem running a Gurobi Optimization Model using a C#/.NET library through IronPython. I have a method to access variables though their name (ie GRBModel.GetVarByName), something like ...
0
votes
0answers
28 views

comunication between different cli

Would it be possible to have a Script launched with ipy.exe(2.7.3) which uses NET4.0, communicate with a script that is started with ipy.exe(2.6.1) that uses Net2.0? The script launched with ...
0
votes
1answer
55 views

event handling iron python

If there are lets say 4 buttons, all with the same Click event, how can I find out which button was pressed? if the event looks like this def Button_Click(self, sender, e): I'm sure I can compare ...
0
votes
1answer
63 views

Functionality differences of CPython and IronPython

So from what I understand IronPython is compiled to Bytecode which is compiled to machinecode through the .net CLR, whereas CPython is compiled to Bytecode and interpreted with the PVM. Is this true? ...
0
votes
1answer
123 views

clr.AddReference('example_file') - unable to find assembly

I am trying to add reference to "example_file.dll" using AddReference('example_file') method from clr module: >>>import clr >>>clr.AddReference('example_file') and in result I ...
1
vote
1answer
44 views

IronPython: double keyword not recognised?

In IronPython I can do: Console.WriteLine(int.MaxValue) where int is not a variable but rather System.Int32. I get back: Max of int: 2137483647 Yet if I try something similar for double ...
2
votes
2answers
209 views

IOException (“file or directory already exists”) while trying to create a directory

I have a strange problem in our C# project which occurs while trying to create a directory via IronPython script. This is the code: targetTemplateDirectory = Path.Combine(Data, ...
0
votes
0answers
194 views

Ironpython - Compile to single exe

I compiled with pyc.py my code with the command: ipy.exe "F:\IronPython 2.7\Tools\Scripts\pyc.py" /target:winexe /embed /standalone /platform:x86 /main:"C:\Users\Mito125\Documents\SharpDevelop ...
1
vote
2answers
165 views

IronPython script with Sympy

Now I'm getting error: Server Error in Application. Cannot import name typed Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace ...
1
vote
1answer
211 views

Python and SQL Bulk Insert

I am using IronPython to create a data array and I need to insert this array to MS SQL Server. The .Net class I'm using is SqlBulkCopy (part of System.Data.SqlClient). I have found this StackOverflow ...
0
votes
0answers
77 views

Parsing IronPython from textbox in application?

I am trying to play around with some scripting languages that were implemented in .net, such as Jint and IronPython...I am not too sure how exactly you can parse the ironpython from a textbox? From ...
2
votes
1answer
129 views

Import embedded libs of IronPython

I've added IronPython Standart Library via NuGet into my c#.net4 project and later got some references(IronPython, IronPython.Modules, IronPython.SQLite, IronPython.Wpf, Microsoft.Dynamic, ...
2
votes
1answer
212 views

Passing DataTable to IronPython

I have a .NET project where I am using IronPython to perform some processing of the data. At present, the C# code loops through and generates an IronPython script for each row and column that ...
0
votes
1answer
188 views

Powershell Exchange 2010 on Windows 8

The Follow script worked fine under win 7 with no issues, but when I loaded my app on windows 8 to see what all was broken I found that this script would no longer work correctly. Its a very simple ...
1
vote
2answers
63 views

Class inside a class written in c# 'is not callable' from IronPython

I'm using a .NET library written in c#. Currently I'm running a procedure in IronPython to to call a procedure to create an object like this: foo = bar.ProcessAndCreateFoo() # bar is a Bar object ...
0
votes
1answer
86 views

Manage Events and Rules in a C# Windows Form in Module IronPython [closed]

I want to make forms with the template project C# in VisualStudio. Then I convert the form into a DLL and import in IronPython, but I do not know how to capture the events within IronPython. I do not ...
0
votes
0answers
55 views

Where drag and drop from Windows Form Applications

Where's the VS2012 support for drag and drop applications in windows forms applications using IronPython? Or no support for this?! My Env: Win7 + VS2012 + IronPython2.7.3 + PTVS1.5rc
0
votes
2answers
150 views

The definitive method to use NumPy and SciPy from IronPython

There is a way to use NumPy/SciPy in IronPython, using IronClad to execute/communicate with the CPython binaries of the same. A newer project, Python Tools for VS allows for a faster integration with ...
0
votes
1answer
65 views

IronPython for SWIG python interface

I have a python interface created via SWIG as a wrapper around some 3d party C/C++ program. I can use it via C# no problem. I am just wondering whether IronPython could make my 'integration life' a ...
0
votes
0answers
275 views

VS2010 .NET Project + IronPython + nltk ImportException

PROBLEM I have a problem to import the nltk module into my .NET project. I installed IronPython 2.6 and can sucessfully import nltk in the Console. If I use my .NET Python-Tools Interactive Console ...
0
votes
1answer
131 views

Referencing EPPlus .Net library in IronPython

I'm trying to use the EPPlus Dot Net library from IronPython to open and update an Excel spreadsheet, but I cannot establish a reference to the library. I'm not sure whether the problem is in my ...
0
votes
1answer
112 views

Ironpython 2.7.3 Visual Studio Missing Project

I have installed IronPython 2.7.3. I would see a IronPython project in the visual studio. I have visual studio 2010 professional. My problem is that. I do not see the Iron Project. Why, where is that? ...
0
votes
1answer
124 views

Easiest way to embed a piece of Python code in C# (Simpler than IronPython)

Basically I want to make a C#.NET application but also create full Python modules that can be called from C#. I was going with IronPython but I found out that I can't add libraries like BeautifulSoup ...
0
votes
0answers
39 views

How to refer to IronPython file in the IronPython project from the C# project in the same solution? (Using runtime.UseFile)

When I'm writing the path in runtime.UseFile(path), how will I determine the path? I want to keep the python code in a different project than C# and when I run it to debug the workingDirectory is ...
1
vote
1answer
452 views

Error when creating an IronPython project in VisualStudio; “Exception has been thrown by the target of an invocation.”

I have a solution which will have a GUI built in on C# and I want to create a IronPython project in the solution which will be called from the C# code but I can't even create it. I'm using the python ...
1
vote
1answer
610 views

Problems embedding IronPython in C# (Missing Compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember'

I'm trying to do a simple hello world to test out embedding IronPython within C# but can't seem to resolve this problem.. This is my C# file; using System; using IronPython.Hosting; using ...
1
vote
0answers
110 views

Calling IronPython usercontrol method from ASP.NET page

Im trying to call a method from an ascx user control in IronPython code from a C# aspx asp.net page. When I do a C# page to C# usercontrol method call I have no problem, the same when I do an ...
2
votes
1answer
185 views

ReportViewer locking up for quite a while on GetDefaultPageSettings()

I recently encountered a very weird problem with report viewer (Windows Forms). Normally the reportviewer behaves very well, loads fast and shows the reports nicely. But, we encountered a certain ...
0
votes
0answers
53 views

Degrading gracefully if IronPython is not installed

I have an application with a scripting feature that runs on the .NET 3.5 framework. Currently, I use CodeDomProvider.GetAllCompilerInfo() to get a list of the installed .NET languages and then let the ...
1
vote
0answers
39 views

Can I load two versions of the same DLL in IronPython

I have a DLL which does both encryption and decryption, but at a client site the decryption is failing when a string is encrypted and then sent to another machine to be decrypted via a webservice. ...
0
votes
1answer
46 views

Where do I put Microsoft.Scripting.Debugging so that our embedded interpreter can find it?

I am trying to debug a function I've written, and it is not possible to run it in the regular IronPython interpreter because of all the jiggery pokery we do when we start up the one we've embedded in ...
0
votes
0answers
88 views

log4net breaks when IronPython application compiled to standalone application

I've been using log4net in an IronPython application I've been developing. I've been compiling it using pyc.py and have had no problems with logging. However, I recently discovered the /standalone ...
4
votes
1answer
67 views

How do I import non namespaced types into IronPython?

I have a C# .NET classes that exist outside of a namespace that need to be accessed inside of IronPython. Typically I would do: import SomeNamespace from SomeNamespace import * However, I do not ...
1
vote
1answer
352 views

deploying IronPython script or static building an application

I created an IronPython script that imports from Python libraries, such as os, sys, etc. as well as .NET libraries. It runs perfectly fine from my Visual Studio IronPython solution but I need to ...
0
votes
0answers
89 views

IronPython Unspecified Com Exception on InvokeSet to Active Directory(was working yesterday…)

First, the code: ent = System.DirectoryServices.DirectoryEntry(i.Properties["distinguishedName"][0]) ent.Username = admin ent.Password = pwd ent.InvokeSet("AccountExpirationDate", ...
0
votes
0answers
92 views

Iron Python FileSystemAccessRule Constructor Error (No flags can be set)

First, the code: sec = System.Security.AccessControl.FileSecurity() flag = System.Security.AccessControl.InheritanceFlags.ObjectInherit|System.Security.AccessControl.InheritanceFlags.ContainerInherit ...
0
votes
1answer
103 views

IronPython hosting caching imported module?

I'm embedding IronPython in my application. Everything goes fine but I found that when I use CreateScriptSourceFromFile to execute a file, it seems that IronPython cached other imported module. For ...
0
votes
1answer
762 views

How to programmatically set Permission settings on private MSMQ queue for remote access?

As part of an application I'm developing, Im trying to make use of Microsoft Message Queueing functionality and im having trouble with permission settings. I want to create a queue and send messages ...
0
votes
1answer
220 views

(Iron)Python inheritance constructor issue

So I'm trying to make a subclass of DataGridViewColumn, which has both a no-argument constructor, and a constructor that takes one argument, which expects type DataGridViewCell. This is my class: ...
0
votes
1answer
74 views

How to get a runtime context, when exection a script on the DLR scripting host?

Currently I'm working in a case study to integrate IronRuby into one of our core products. The exection of scripts in only possible in a synchronous manner, so I plan to execute the scripts in threads ...
0
votes
1answer
270 views

How to use IPython and pyreadline in IronPython?

IPython is a very useful Python Shell, I want to use it in IronPython. Is it possible?
0
votes
0answers
220 views

Load DLL file and Call Functions in Python [Part 2]

this is the continuation from this question. This time, I try to use IronPython instead... I use the same "DemoClassLib.dll" again. That's how I load the dll and use it. import clr ...
0
votes
1answer
84 views

How can I add a WPF tabitem in Ironpython? [closed]

I have a tab control: <TabControl x:Name="ContactTabs" HorizontalAlignment="Left" Grid.Row="0" Grid.Column="0" ...
1
vote
2answers
190 views

C# .NET interoperabillity with managed Python (CPython) -> any problems?

I am working on a design of an application. The Core should be written in C# but i also want to use some already finished CPython modules (un-managed). So I am interested in the interoperability ...

1 2 3 4 5