David Welden
2008-04-03 14:51:47 UTC
I picked this up from
http://blog.jonudell.net/2007/09/04/sharepoint-ironpython-and-another-lesson-in-the-virtue-of-laziness/.
I am trying to use the same code as in the example.
Message: 2
http://blog.jonudell.net/2007/09/04/sharepoint-ironpython-and-another-lesson-in-the-virtue-of-laziness/.
I am trying to use the same code as in the example.
Message: 2
Date: Wed, 2 Apr 2008 21:40:17 -0400
Subject: Re: [Python.NET] Dynamic Web Service Helpers
Content-Type: text/plain; charset="iso-8859-1"
is DynamicWebServiceHelpers the right namespace? Sure its not
IronPython.DynamicWebServiceHelpers or something?
The assembly name (AddReference) doesn't necessarily correspond
to the namespaces contained within...
-Brian
________________________________
Sent: Wed 4/2/2008 4:56 PM
Subject: [Python.NET] Dynamic Web Service Helpers
Has anyone successfully used the IronPython Dynamic Web Service Helpers (
http://www.codeplex.com/IronPython/Release/ProjectReleases.aspx?ReleaseId=47)
ImportError: No module named DynamicWebServiceHelpers
Subject: Re: [Python.NET] Dynamic Web Service Helpers
Content-Type: text/plain; charset="iso-8859-1"
is DynamicWebServiceHelpers the right namespace? Sure its not
IronPython.DynamicWebServiceHelpers or something?
The assembly name (AddReference) doesn't necessarily correspond
to the namespaces contained within...
-Brian
________________________________
Sent: Wed 4/2/2008 4:56 PM
Subject: [Python.NET] Dynamic Web Service Helpers
Has anyone successfully used the IronPython Dynamic Web Service Helpers (
http://www.codeplex.com/IronPython/Release/ProjectReleases.aspx?ReleaseId=47)
import clr
clr.FindAssembly("DynamicWebServiceHelpers")
u'DynamicWebServiceHelpers.dll'clr.FindAssembly("DynamicWebServiceHelpers")
clr.AddReference("DynamicWebServiceHelpers")
<System.Reflection.Assembly object at 0x00B3D6F0>from DynamicWebServiceHelpers import *
File "<stdin>", line 1, in <module>ImportError: No module named DynamicWebServiceHelpers