<?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 for geek#</title>
	<atom:link href="http://geeksharp.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://geeksharp.com</link>
	<description>techno-babble for the masses</description>
	<lastBuildDate>Wed, 04 Apr 2012 18:55:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Mocking Rob Conery’s ISession by Jeff</title>
		<link>http://geeksharp.com/2010/08/26/mocking-rob-conery%e2%80%99s-isession/#comment-1588</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 04 Apr 2012 18:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/?p=29#comment-1588</guid>
		<description>Awesome - this helped me through the most recent of my TDD-initiation hurdles. </description>
		<content:encoded><![CDATA[<p>Awesome &#8211; this helped me through the most recent of my TDD-initiation hurdles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionMailer.Net: Email Templates for the MVC Crowd by Cameron Bakke</title>
		<link>http://geeksharp.com/2011/01/26/actionmailer-net-email-templates-for-the-mvc-crowd/#comment-1587</link>
		<dc:creator>Cameron Bakke</dc:creator>
		<pubDate>Mon, 02 Apr 2012 03:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/2011/01/26/actionmailer-net-email-templates-for-the-mvc-crowd/#comment-1587</guid>
		<description>Hi,

This is a really helpful project! Only took about 45 min to get setup and get my first test email out from my smtp server... not bad!

I have this implemented in a separate project from my web app. Basically, I have 5 projects: Models, Repository, Web, Mobile, and now Email. I do this so that I can share functionality between Mobile and Web. It is also wrapped in a ISendEmails interface and class that calls into the controller inheriting MailerBase.

The issue that I am having is that for some reason it is not looking in the Email project for its Views/Mail/view.html.cshtml file. Instead it is looking for it in the Web project. I have worked around the issue by having two copies of my views, one in Web and one in Mobile... works, but is not ideal. Any ideas why it is doing this?

Thanks!
Cameron</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is a really helpful project! Only took about 45 min to get setup and get my first test email out from my smtp server&#8230; not bad!</p>
<p>I have this implemented in a separate project from my web app. Basically, I have 5 projects: Models, Repository, Web, Mobile, and now Email. I do this so that I can share functionality between Mobile and Web. It is also wrapped in a ISendEmails interface and class that calls into the controller inheriting MailerBase.</p>
<p>The issue that I am having is that for some reason it is not looking in the Email project for its Views/Mail/view.html.cshtml file. Instead it is looking for it in the Web project. I have worked around the issue by having two copies of my views, one in Web and one in Mobile&#8230; works, but is not ideal. Any ideas why it is doing this?</p>
<p>Thanks!<br />
Cameron</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionMailer 0.6 Released by abrudtkuhl</title>
		<link>http://geeksharp.com/2011/07/06/actionmailer-0-6-released/#comment-1586</link>
		<dc:creator>abrudtkuhl</dc:creator>
		<pubDate>Sat, 31 Mar 2012 19:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/2011/07/06/actionmailer-0-6-released/#comment-1586</guid>
		<description>Looking for help using the ActionMailer.Postmark library... Can you post an example?</description>
		<content:encoded><![CDATA[<p>Looking for help using the ActionMailer.Postmark library&#8230; Can you post an example?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bottle: A Refreshing Web Framework by ranjan</title>
		<link>http://geeksharp.com/2010/08/04/bottle-a-refreshing-web-framework/#comment-1585</link>
		<dc:creator>ranjan</dc:creator>
		<pubDate>Sat, 31 Mar 2012 05:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/?p=11#comment-1585</guid>
		<description>Again...one of the issue with the above config is that it does not passes parameters to bottle. I&#039;m including nginx config from Flask framework here which forwards all params to bottle framework, hope it helps to other people
______________________________________________________________
# In Nginx below config passes all params to bottle app

location = /bottle { rewrite ^ /bottle/ last; }
location /bottle { try_files $uri @bottle; }
location @bottle {
    include fastcgi_params;
    fastcgi_pass  localhost:4000;
    fastcgi_split_path_info ^(/bottle)(.*)$;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    fastcgi_param SCRIPT_NAME $fastcgi_script_name;
    #fastcgi_pass unix:/tmp/bottle-fcgi.sock;
} 

 # And here is my  bottle app 

from bottle import route, run,response
from bottle import FlupFCGIServer
import bottle

@route(&quot;/&quot;)
def welcome():
    return &quot;welcome&quot;
@route(&#039;/data&#039;)
def data():
    return &quot;hello world&quot;

run(server=FlupFCGIServer, port=4000, host=&#039;localhost&#039;,reloader=True,debug=True)
_________________________________________________________
Hope this helps community
</description>
		<content:encoded><![CDATA[<p>Again&#8230;one of the issue with the above config is that it does not passes parameters to bottle. I&#8217;m including nginx config from Flask framework here which forwards all params to bottle framework, hope it helps to other people<br />
______________________________________________________________<br />
# In Nginx below config passes all params to bottle app</p>
<p>location = /bottle { rewrite ^ /bottle/ last; }<br />
location /bottle { try_files $uri @bottle; }<br />
location @bottle {<br />
    include fastcgi_params;<br />
    fastcgi_pass  localhost:4000;<br />
    fastcgi_split_path_info ^(/bottle)(.*)$;<br />
    fastcgi_param PATH_INFO $fastcgi_path_info;<br />
    fastcgi_param SCRIPT_NAME $fastcgi_script_name;<br />
    #fastcgi_pass unix:/tmp/bottle-fcgi.sock;<br />
} </p>
<p> # And here is my  bottle app </p>
<p>from bottle import route, run,response<br />
from bottle import FlupFCGIServer<br />
import bottle</p>
<p>@route(&#8220;/&#8221;)<br />
def welcome():<br />
    return &#8220;welcome&#8221;<br />
@route(&#8216;/data&#8217;)<br />
def data():<br />
    return &#8220;hello world&#8221;</p>
<p>run(server=FlupFCGIServer, port=4000, host=&#8217;localhost&#8217;,reloader=True,debug=True)<br />
_________________________________________________________<br />
Hope this helps community</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bottle: A Refreshing Web Framework by ranjan</title>
		<link>http://geeksharp.com/2010/08/04/bottle-a-refreshing-web-framework/#comment-1582</link>
		<dc:creator>ranjan</dc:creator>
		<pubDate>Fri, 30 Mar 2012 13:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/?p=11#comment-1582</guid>
		<description>thanks you so much, after almost giving up i was able to get this working...unfortunately i corrupted my ubuntu and lost lot of data :(.

thanks again </description>
		<content:encoded><![CDATA[<p>thanks you so much, after almost giving up i was able to get this working&#8230;unfortunately i corrupted my ubuntu and lost lot of data <img src='http://geeksharp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionMailer.Net: Email Templates for the MVC Crowd by greg</title>
		<link>http://geeksharp.com/2011/01/26/actionmailer-net-email-templates-for-the-mvc-crowd/#comment-1581</link>
		<dc:creator>greg</dc:creator>
		<pubDate>Wed, 28 Mar 2012 19:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/2011/01/26/actionmailer-net-email-templates-for-the-mvc-crowd/#comment-1581</guid>
		<description>Hi Scott

I have just NuGeted ActionMailer and I am having an issue when trying to strongly type a view.  In my mail controller , I am getting an error when returning a my EmailModel back to the view ::: return Email(model). The error I am getting is: The best overloaded method match for &#039;ActionMailer.Net.Mvc.MailerBase.Email(string, object, string)&#039; has some invalid arguments. Any ideas? Thanks</description>
		<content:encoded><![CDATA[<p>Hi Scott</p>
<p>I have just NuGeted ActionMailer and I am having an issue when trying to strongly type a view.  In my mail controller , I am getting an error when returning a my EmailModel back to the view ::: return Email(model). The error I am getting is: The best overloaded method match for &#8216;ActionMailer.Net.Mvc.MailerBase.Email(string, object, string)&#8217; has some invalid arguments. Any ideas? Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Ruby-Debug-IDE on Windows by Khalil</title>
		<link>http://geeksharp.com/2009/12/18/installing-ruby-debug-ide-on-windows/#comment-1553</link>
		<dc:creator>Khalil</dc:creator>
		<pubDate>Wed, 07 Mar 2012 12:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/?p=21#comment-1553</guid>
		<description>I opend the config.h file but , there is no thing like those 3 lines that you talked about
also i still have the same problem</description>
		<content:encoded><![CDATA[<p>I opend the config.h file but , there is no thing like those 3 lines that you talked about<br />
also i still have the same problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionMailer 0.6 Released by Clubs Testing</title>
		<link>http://geeksharp.com/2011/07/06/actionmailer-0-6-released/#comment-1551</link>
		<dc:creator>Clubs Testing</dc:creator>
		<pubDate>Mon, 13 Feb 2012 16:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/2011/07/06/actionmailer-0-6-released/#comment-1551</guid>
		<description>I have a question about web services.  Will ActionMailer views/templates I have work for a webservice call?  Or do I have to use the Standalone version?

I want to expose our logic but don&#039;t want to port to standalone if I can avoid it.</description>
		<content:encoded><![CDATA[<p>I have a question about web services.  Will ActionMailer views/templates I have work for a webservice call?  Or do I have to use the Standalone version?</p>
<p>I want to expose our logic but don&#8217;t want to port to standalone if I can avoid it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ActionMailer.Net: Email Templates for the MVC Crowd by Clubs Testing</title>
		<link>http://geeksharp.com/2011/01/26/actionmailer-net-email-templates-for-the-mvc-crowd/#comment-1550</link>
		<dc:creator>Clubs Testing</dc:creator>
		<pubDate>Mon, 13 Feb 2012 16:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/2011/01/26/actionmailer-net-email-templates-for-the-mvc-crowd/#comment-1550</guid>
		<description>Did anyone get this to work from a webservice?  I want to expose some business logic via a websevice and one of the business rules is to send an email to the user after the call is completed.  Will ActionMailer work outside an MVC application and on a web service?</description>
		<content:encoded><![CDATA[<p>Did anyone get this to work from a webservice?  I want to expose some business logic via a websevice and one of the business rules is to send an email to the user after the call is completed.  Will ActionMailer work outside an MVC application and on a web service?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EF4: Bug in StoreGeneratedPattern SSDL by Mannus</title>
		<link>http://geeksharp.com/2010/05/27/ef4-bug-in-storegeneratedpattern-ssdl/#comment-1539</link>
		<dc:creator>Mannus</dc:creator>
		<pubDate>Fri, 27 Jan 2012 18:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://geeksharp.com/?p=17#comment-1539</guid>
		<description>this blog solved my problem and did my frustration go away :-) nasty bug....</description>
		<content:encoded><![CDATA[<p>this blog solved my problem and did my frustration go away <img src='http://geeksharp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  nasty bug&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

