<?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: Using SugarCRM&#8217;s SOAP-API with Python and SOAPpy</title>
	<atom:link href="http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/feed/" rel="self" type="application/rss+xml" />
	<link>http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/</link>
	<description>Tuomas Rasila's blog about software and entrepreneurship</description>
	<lastBuildDate>Wed, 26 May 2010 08:57:56 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Soap Recipes</title>
		<link>http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/comment-page-1/#comment-112</link>
		<dc:creator>Soap Recipes</dc:creator>
		<pubDate>Wed, 26 May 2010 08:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://rasilagarage.com/?p=195#comment-112</guid>
		<description>its posts like this that makes me come back for more :)</description>
		<content:encoded><![CDATA[<p>its posts like this that makes me come back for more <img src='http://rasilagarage.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nancy Wise</title>
		<link>http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/comment-page-1/#comment-89</link>
		<dc:creator>Nancy Wise</dc:creator>
		<pubDate>Sat, 06 Mar 2010 23:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://rasilagarage.com/?p=195#comment-89</guid>
		<description>This is great! Thanks for your article. I am a newbie at development and this is a big help.</description>
		<content:encoded><![CDATA[<p>This is great! Thanks for your article. I am a newbie at development and this is a big help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glen</title>
		<link>http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/comment-page-1/#comment-68</link>
		<dc:creator>Glen</dc:creator>
		<pubDate>Thu, 23 Jul 2009 04:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://rasilagarage.com/?p=195#comment-68</guid>
		<description>I had trouble with SOAPpy &amp; ZSI.  I found a package in pypi called pysugar (currently ver 0.0.6).  Works well (so far).</description>
		<content:encoded><![CDATA[<p>I had trouble with SOAPpy &#038; ZSI.  I found a package in pypi called pysugar (currently ver 0.0.6).  Works well (so far).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tuomas Rasila</title>
		<link>http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/comment-page-1/#comment-62</link>
		<dc:creator>Tuomas Rasila</dc:creator>
		<pubDate>Tue, 07 Apr 2009 10:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://rasilagarage.com/?p=195#comment-62</guid>
		<description>Hi,
Just guessing here, do you have extra http-auth for your Sugarcrm installation? I so you can give the password in url like this http://user:pass@url-to-sugar... The example in the post works fine with me. My test case was without https. Are you using SSL, I haven&#039;t test SOAPpy with SSL. 

Your password is &lt;code&gt;md5.new(PASSWORD).hexdigest()&lt;/code&gt; should look like this random hex:

&lt;pre&gt;&lt;code&gt;
&gt;&gt;&gt; auth
{&#039;password&#039;: &#039;0723f458d0cb1c8675774f9be74c6d5d&#039;, &#039;user_name&#039;: &#039;user&#039;, &#039;version&#039;: &#039;1.1&#039;}
&lt;/code&gt;&lt;/pre&gt;

Tuomas</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Just guessing here, do you have extra http-auth for your Sugarcrm installation? I so you can give the password in url like this <a href="http://user:pass@url-to-sugar.." rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/user_pass_url-to-sugar..?referer=');">http://user:pass@url-to-sugar..</a>. The example in the post works fine with me. My test case was without https. Are you using SSL, I haven&#8217;t test SOAPpy with SSL. </p>
<p>Your password is <code>md5.new(PASSWORD).hexdigest()</code> should look like this random hex:</p>
<pre><code>
>>> auth
{'password': '0723f458d0cb1c8675774f9be74c6d5d', 'user_name': 'user', 'version': '1.1'}
</code></pre>
<p>Tuomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enam</title>
		<link>http://rasilagarage.com/2009/02/using-sugarcrms-soap-api-with-python-and-soappy/comment-page-1/#comment-61</link>
		<dc:creator>Enam</dc:creator>
		<pubDate>Wed, 01 Apr 2009 09:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://rasilagarage.com/?p=195#comment-61</guid>
		<description>Hi,
I followed the example, but after the session = sugar.login(auth, &quot;foobar&quot;) I get a HTTPError 403 forbidden. I checked the user/pass (it was correctly written). If I print out the auth variable, I see that the &#039;password&#039;: &#039;xxxx&#039; is the first element (?¿). Is this the problem?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I followed the example, but after the session = sugar.login(auth, &#8220;foobar&#8221;) I get a HTTPError 403 forbidden. I checked the user/pass (it was correctly written). If I print out the auth variable, I see that the &#8216;password&#8217;: &#8216;xxxx&#8217; is the first element (?¿). Is this the problem?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
