<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: On Using PyMongo with IronPython</title>
	<atom:link href="http://dllhell.net/2010/05/27/on-using-pymongo-with-ironpython/feed/" rel="self" type="application/rss+xml" />
	<link>http://dllhell.net/2010/05/27/on-using-pymongo-with-ironpython/</link>
	<description>Write code.  Not too much.  Mostly C#.</description>
	<lastBuildDate>Fri, 23 Mar 2012 18:52:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Bernd Viehmann</title>
		<link>http://dllhell.net/2010/05/27/on-using-pymongo-with-ironpython/#comment-524</link>
		<dc:creator>Bernd Viehmann</dc:creator>
		<pubDate>Mon, 24 Oct 2011 10:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dllhell.net/index.php/2010/05/27/on-using-pymongo-with-ironpython/#comment-524</guid>
		<description>Hello,

i am trying to use the pymongo-driver in an asp.net-project using ironpython. I was able to install it successfully for the ironpython command line version. There is a quit good tutorial on the weblog from John Zablocki 

Works good as far as I have seen.

But with my asp.net application using ipy I was not so lucky. I got an error:

Parser Error Message: No module named collections

Here is my test code-behind:

webform.aspx.py--------------------------------------------------------------------------------------------
from pymongo import Connection

def Page_Load(sender, e):
    connection = Connection()

def Button1_Click(sender, e):
    pass
---------------------------------------------------------------------------------------------------------------
In the Global.py I have made following configuration:

def Application_Start():
    &#039; Code that runs on application startup&#039;
    # if you want to use stdrt-py-libs in yout iron-python app add the folder
    import sys
    sys.path.append(&#039;C:\\Python25\\Lib&#039;)
    sys.path.append(&#039;C:\\Python25\\Lib\\site-packages&#039;)

Anyone here who can tell me what&#039;s wrong?

And BTW does someone here tried the mongo-db with ipy and the clr-driver?

Thanks much for your help &amp; kind regards

 Bernd</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>i am trying to use the pymongo-driver in an asp.net-project using ironpython. I was able to install it successfully for the ironpython command line version. There is a quit good tutorial on the weblog from John Zablocki </p>
<p>Works good as far as I have seen.</p>
<p>But with my asp.net application using ipy I was not so lucky. I got an error:</p>
<p>Parser Error Message: No module named collections</p>
<p>Here is my test code-behind:</p>
<p>webform.aspx.py&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
from pymongo import Connection</p>
<p>def Page_Load(sender, e):<br />
    connection = Connection()</p>
<p>def Button1_Click(sender, e):<br />
    pass<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
In the Global.py I have made following configuration:</p>
<p>def Application_Start():<br />
    &#8216; Code that runs on application startup&#8217;<br />
    # if you want to use stdrt-py-libs in yout iron-python app add the folder<br />
    import sys<br />
    sys.path.append(&#8216;C:\\Python25\\Lib&#8217;)<br />
    sys.path.append(&#8216;C:\\Python25\\Lib\\site-packages&#8217;)</p>
<p>Anyone here who can tell me what&#8217;s wrong?</p>
<p>And BTW does someone here tried the mongo-db with ipy and the clr-driver?</p>
<p>Thanks much for your help &amp; kind regards</p>
<p> Bernd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernd Viehmann</title>
		<link>http://dllhell.net/2010/05/27/on-using-pymongo-with-ironpython/#comment-523</link>
		<dc:creator>Bernd Viehmann</dc:creator>
		<pubDate>Sat, 22 Oct 2011 07:44:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dllhell.net/index.php/2010/05/27/on-using-pymongo-with-ironpython/#comment-523</guid>
		<description>Thanks much for this. I am going to try this oo-db. 

I have a question. What about indexes in OO DBs? Is there a need for indexing cols and if how it can be done?

thx

 Bernd</description>
		<content:encoded><![CDATA[<p>Thanks much for this. I am going to try this oo-db. </p>
<p>I have a question. What about indexes in OO DBs? Is there a need for indexing cols and if how it can be done?</p>
<p>thx</p>
<p> Bernd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DotNetShoutout</title>
		<link>http://dllhell.net/2010/05/27/on-using-pymongo-with-ironpython/#comment-37</link>
		<dc:creator>DotNetShoutout</dc:creator>
		<pubDate>Sat, 05 Jun 2010 20:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dllhell.net/index.php/2010/05/27/on-using-pymongo-with-ironpython/#comment-37</guid>
		<description>&lt;strong&gt;Using PyMongo with IronPython...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from DotNetShoutout...</description>
		<content:encoded><![CDATA[<p><strong>Using PyMongo with IronPython&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from DotNetShoutout&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

