<?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"
	>
<channel>
	<title>Comments on: Running Seaside, Apache, and IIS on One Machine</title>
	<atom:link href="http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/feed/" rel="self" type="application/rss+xml" />
	<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/</link>
	<description>thoughts on Smalltalk and programming in general...</description>
	<pubDate>Sun, 20 Jul 2008 16:12:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-10043</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Sun, 03 Feb 2008 07:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-10043</guid>
		<description>You need to subclass WAApplication and do something like this..
&lt;pre&gt;
handleExpiredRequest: aRequest 
	"this makes an expired session go to / instead of /seaside/examples/counter
	Should be able to use a redirectHandler class for this, but 2.8 broke it"
	^ super handleExpiredRequest: (WARequest 
			method: aRequest nativeRequest method
			url: '/'
			headers: aRequest nativeRequest header
			fields: {   }
			cookies: aRequest nativeRequest cookies
			nativeRequest: aRequest nativeRequest)
&lt;/pre&gt;
It's a known issue with 2.8.  To install it, do this in your root component class side.
&lt;pre&gt;
applicationNamed: aString
	"plug in my custom application class"
	&#124; application &#124;
	application := MyCustomWAApplicationSubclass named: aString.
	application configuration addAncestor: WARenderLoopConfiguration new.
	application preferenceAt: #rootComponent put: self.
	^ application
&lt;/pre&gt;
Then your root component can set itself up normally...
&lt;pre&gt;
initialize
	"self initialize"
	&#124; app &#124;
	app := self registerAsApplication: 'myApp'.
	app 
		preferenceAt: #sessionClass
		put: MySessionClass.
	app libraries add: SULibrary
&lt;/pre&gt;
It'll be fixed in 2.9.  This area was due for a refactoring, there was a redirect handler in 2.7 but it got broken somehow.</description>
		<content:encoded><![CDATA[<p>You need to subclass WAApplication and do something like this..</p>
<pre>
handleExpiredRequest: aRequest
	"this makes an expired session go to / instead of /seaside/examples/counter
	Should be able to use a redirectHandler class for this, but 2.8 broke it"
	^ super handleExpiredRequest: (WARequest
			method: aRequest nativeRequest method
			url: '/'
			headers: aRequest nativeRequest header
			fields: {   }
			cookies: aRequest nativeRequest cookies
			nativeRequest: aRequest nativeRequest)
</pre>
<p>It&#8217;s a known issue with 2.8.  To install it, do this in your root component class side.</p>
<pre>
applicationNamed: aString
	"plug in my custom application class"
	| application |
	application := MyCustomWAApplicationSubclass named: aString.
	application configuration addAncestor: WARenderLoopConfiguration new.
	application preferenceAt: #rootComponent put: self.
	^ application
</pre>
<p>Then your root component can set itself up normally&#8230;</p>
<pre>
initialize
	"self initialize"
	| app |
	app := self registerAsApplication: 'myApp'.
	app
		preferenceAt: #sessionClass
		put: MySessionClass.
	app libraries add: SULibrary
</pre>
<p>It&#8217;ll be fixed in 2.9.  This area was due for a refactoring, there was a redirect handler in 2.7 but it got broken somehow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-10018</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Sat, 02 Feb 2008 21:55:22 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-10018</guid>
		<description>I meet minor problem with configuration above.

When seaside session expires I'm being redirected to /seaside/go/trends (which is not found through httpd) instead of /trends.

Quick fix for me is to add:
Redirect /seaside/go/trends /trends.

But I'm looking for right solution.

Ramon, did you meet the same problem?</description>
		<content:encoded><![CDATA[<p>I meet minor problem with configuration above.</p>
<p>When seaside session expires I&#8217;m being redirected to /seaside/go/trends (which is not found through httpd) instead of /trends.</p>
<p>Quick fix for me is to add:<br />
Redirect /seaside/go/trends /trends.</p>
<p>But I&#8217;m looking for right solution.</p>
<p>Ramon, did you meet the same problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9912</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Wed, 30 Jan 2008 21:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9912</guid>
		<description>Thanks, Ramon!

I've just successfully configured it as I want. Excellent!</description>
		<content:encoded><![CDATA[<p>Thanks, Ramon!</p>
<p>I&#8217;ve just successfully configured it as I want. Excellent!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9908</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Wed, 30 Jan 2008 19:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9908</guid>
		<description>You need to set the #serverPath in your config to / on the configuration page.  This'll make Seaside generate the links correctly.</description>
		<content:encoded><![CDATA[<p>You need to set the #serverPath in your config to / on the configuration page.  This&#8217;ll make Seaside generate the links correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9898</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Wed, 30 Jan 2008 12:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9898</guid>
		<description>Hi!

I have just configured Apache as mentioned above for my trends app:


    ServerName localhost
    RewriteEngine On
    ProxyVia Block
    ProxyPreserveHost On
    RewriteRule ^/(.*)$ http://localhost:8008/seaside/go/trends/$1 [P,L]


And I expected to work in following way:
1. When I enter http://localhost/ the trends apps shows up.
2. All links on the page of trends app have names like http://localhost/?_s=xCYFCgzFbYbbMTrr&#38;_k=rrgJHMRr

1. is ok, but 2. is not working as I expected, instead I have link names like http://localhost/seaside/go/trends?_s=xCYFCgzFbYbbMTrr&#38;_k=rrgJHMRr.


As additional question: how could I configure to transparent proxy http://localhost/trends to http://localhost:8008/trends, the way that all urls have http://localhost/trends for outside users, I've tried
RewriteRule ^/trends/(.*)$ http://localhost:8008/seaside/go/trends/$1 [P,L] but it's not working as expected again.</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I have just configured Apache as mentioned above for my trends app:</p>
<p>    ServerName localhost<br />
    RewriteEngine On<br />
    ProxyVia Block<br />
    ProxyPreserveHost On<br />
    RewriteRule ^/(.*)$ <a href="http://localhost:8008/seaside/go/trends/1" rel="nofollow">http://localhost:8008/seaside/go/trends/1</a> [P,L]</p>
<p>And I expected to work in following way:<br />
1. When I enter <a href="http://localhost/" rel="nofollow">http://localhost/</a> the trends apps shows up.<br />
2. All links on the page of trends app have names like <a href="http://localhost/?_s=xCYFCgzFbYbbMTrr&amp;_k=rrgJHMRr" rel="nofollow">http://localhost/?_s=xCYFCgzFbYbbMTrr&amp;_k=rrgJHMRr</a></p>
<p>1. is ok, but 2. is not working as I expected, instead I have link names like <a href="http://localhost/seaside/go/trends?_s=xCYFCgzFbYbbMTrr&amp;_k=rrgJHMRr" rel="nofollow">http://localhost/seaside/go/trends?_s=xCYFCgzFbYbbMTrr&amp;_k=rrgJHMRr</a>.</p>
<p>As additional question: how could I configure to transparent proxy <a href="http://localhost/trends" rel="nofollow">http://localhost/trends</a> to <a href="http://localhost:8008/trends" rel="nofollow">http://localhost:8008/trends</a>, the way that all urls have <a href="http://localhost/trends" rel="nofollow">http://localhost/trends</a> for outside users, I&#8217;ve tried<br />
RewriteRule ^/trends/(.*)$ <a href="http://localhost:8008/seaside/go/trends/1" rel="nofollow">http://localhost:8008/seaside/go/trends/1</a> [P,L] but it&#8217;s not working as expected again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9731</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Wed, 16 Jan 2008 02:06:22 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9731</guid>
		<description>You should probably put the rewriteCond before the rule, so apache can serve up pages if they exist, otherwise proxy to Apache.</description>
		<content:encoded><![CDATA[<p>You should probably put the rewriteCond before the rule, so apache can serve up pages if they exist, otherwise proxy to Apache.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mesh</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9724</link>
		<dc:creator>Mesh</dc:creator>
		<pubDate>Tue, 15 Jan 2008 20:41:31 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9724</guid>
		<description>worked at last , didnt know where is the problem , thanx any way , as a noob , i noticed that the rewrite is a mod for url modification ..

here is the conf of the virtual host 


 
    RewriteEngine On
    ProxyVia Full
    ProxyPreserveHost On
    RewriteRule ^/(.*)$ http://localhost:8888/ASP/$1 [P,L]
    RewriteCond C:/Inetpub/websites/%{REQUEST_FILENAME} !-f
    ServerName localhost
</description>
		<content:encoded><![CDATA[<p>worked at last , didnt know where is the problem , thanx any way , as a noob , i noticed that the rewrite is a mod for url modification ..</p>
<p>here is the conf of the virtual host </p>
<p>    RewriteEngine On<br />
    ProxyVia Full<br />
    ProxyPreserveHost On<br />
    RewriteRule ^/(.*)$ <a href="http://localhost:8888/ASP/1" rel="nofollow">http://localhost:8888/ASP/1</a> [P,L]<br />
    RewriteCond C:/Inetpub/websites/%{REQUEST_FILENAME} !-f<br />
    ServerName localhost</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mesh</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9720</link>
		<dc:creator>Mesh</dc:creator>
		<pubDate>Tue, 15 Jan 2008 17:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9720</guid>
		<description>forget to say that , my asp files are on c:\ASP\

i intend that the forward occures what ever typed in the borwser from my localhost , to an ip from the network for example ( 192.168.1.100) or from a computer that is out side the network through a Dyndns serveice (http://mesh.homelinux.org)

how i can accomplish that ?

thank u</description>
		<content:encoded><![CDATA[<p>forget to say that , my asp files are on c:\ASP\</p>
<p>i intend that the forward occures what ever typed in the borwser from my localhost , to an ip from the network for example ( 192.168.1.100) or from a computer that is out side the network through a Dyndns serveice (http://mesh.homelinux.org)</p>
<p>how i can accomplish that ?</p>
<p>thank u</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mesh</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9719</link>
		<dc:creator>Mesh</dc:creator>
		<pubDate>Tue, 15 Jan 2008 16:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-9719</guid>
		<description>Hello , i want to use Apache as main webserver , to host ASP,ASPX , i setup IIS and its running perfectly on port 8888

so when i type http://localhost i get apache page ,
 when i type  http://localhost:8888/ASP i get my asp page , 

how shall i configure apache ??
i loaded mod_proxy,mod_http_proxy,mod_rewrite successfully

shall i enable the #Include conf/extra/httpd-vhosts.conf ?

then what ? , plz help me 

thanx !</description>
		<content:encoded><![CDATA[<p>Hello , i want to use Apache as main webserver , to host ASP,ASPX , i setup IIS and its running perfectly on port 8888</p>
<p>so when i type <a href="http://localhost" rel="nofollow">http://localhost</a> i get apache page ,<br />
 when i type  <a href="http://localhost:8888/ASP" rel="nofollow">http://localhost:8888/ASP</a> i get my asp page , </p>
<p>how shall i configure apache ??<br />
i loaded mod_proxy,mod_http_proxy,mod_rewrite successfully</p>
<p>shall i enable the #Include conf/extra/httpd-vhosts.conf ?</p>
<p>then what ? , plz help me </p>
<p>thanx !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-8733</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Thu, 22 Nov 2007 02:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-8733</guid>
		<description>I guess it'd depend on the Ajax framework, and what the server expects.  You don't really give enough information, but it's possible the Ajax framework is aware of the port it's being served and needs some setting or something to work behind a proxy.</description>
		<content:encoded><![CDATA[<p>I guess it&#8217;d depend on the Ajax framework, and what the server expects.  You don&#8217;t really give enough information, but it&#8217;s possible the Ajax framework is aware of the port it&#8217;s being served and needs some setting or something to work behind a proxy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisandro B.</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-8696</link>
		<dc:creator>Lisandro B.</dc:creator>
		<pubDate>Wed, 21 Nov 2007 12:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-8696</guid>
		<description>This almost works for me, except for one thing: the .net site is based in ajax, and it seems it is unable to get the data it is supossed to receive from the database. When you click in a link, it grabs some data from the db and outputs it in a div. It works ok when I do http://localhost:81/file.aspx, but it does not work with the proxy thing. What can i do?</description>
		<content:encoded><![CDATA[<p>This almost works for me, except for one thing: the .net site is based in ajax, and it seems it is unable to get the data it is supossed to receive from the database. When you click in a link, it grabs some data from the db and outputs it in a div. It works ok when I do <a href="http://localhost:81/file.aspx" rel="nofollow">http://localhost:81/file.aspx</a>, but it does not work with the proxy thing. What can i do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-6080</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Fri, 05 Oct 2007 16:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-6080</guid>
		<description>No, the port 81 traffic will be totally local between Apache and IIS.</description>
		<content:encoded><![CDATA[<p>No, the port 81 traffic will be totally local between Apache and IIS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John M.</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-6077</link>
		<dc:creator>John M.</dc:creator>
		<pubDate>Fri, 05 Oct 2007 13:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-6077</guid>
		<description>If I set up my IIS site on port 81 and reverse proxy as in your example, do I still need to open up port 81 on my firewall?</description>
		<content:encoded><![CDATA[<p>If I set up my IIS site on port 81 and reverse proxy as in your example, do I still need to open up port 81 on my firewall?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aatish</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-3627</link>
		<dc:creator>Aatish</dc:creator>
		<pubDate>Mon, 16 Jul 2007 20:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-3627</guid>
		<description>I am trying to redirect all requests for *.asp that come to apache server to an iis server located elsewhere. I read your instructions, but i am still not able to get it working. can you shed some light no that ?</description>
		<content:encoded><![CDATA[<p>I am trying to redirect all requests for *.asp that come to apache server to an iis server located elsewhere. I read your instructions, but i am still not able to get it working. can you shed some light no that ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-3369</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Wed, 11 Jul 2007 16:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-3369</guid>
		<description>Break it up into two steps.  Get Apache working first with IIS completely shutdown, i.e. "net stop w3svc".

Only after Apache is working should you bother with IIS.  IIS has a bad habit of grabbing port 80 even when it shouldn't.</description>
		<content:encoded><![CDATA[<p>Break it up into two steps.  Get Apache working first with IIS completely shutdown, i.e. &#8220;net stop w3svc&#8221;.</p>
<p>Only after Apache is working should you bother with IIS.  IIS has a bad habit of grabbing port 80 even when it shouldn&#8217;t.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-3355</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 11 Jul 2007 07:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-3355</guid>
		<description>Hi,
This is what I'm trying to achieve on a Win2K server.

Apache
-will be hosting www.domain.com on port 80

IIS
-will be hosting office.domain.com/address on 8080

I've followed u'r instructions but Apache refuses to start..so I must be doing something wrong.

Do i have to put virtual host for both www and office  in the httpd.conf ?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
This is what I&#8217;m trying to achieve on a Win2K server.</p>
<p>Apache<br />
-will be hosting <a href="http://www.domain.com" rel="nofollow">http://www.domain.com</a> on port 80</p>
<p>IIS<br />
-will be hosting office.domain.com/address on 8080</p>
<p>I&#8217;ve followed u&#8217;r instructions but Apache refuses to start..so I must be doing something wrong.</p>
<p>Do i have to put virtual host for both www and office  in the httpd.conf ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2901</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Wed, 30 May 2007 23:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2901</guid>
		<description>Yes it is, and you're welcome.</description>
		<content:encoded><![CDATA[<p>Yes it is, and you&#8217;re welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2900</link>
		<dc:creator>Curtis</dc:creator>
		<pubDate>Wed, 30 May 2007 20:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2900</guid>
		<description>I was able to use your RewriteRule to get IIS running with Apache to use some classic ASP and just wanted to say thanks.  Apache is quite impressive.</description>
		<content:encoded><![CDATA[<p>I was able to use your RewriteRule to get IIS running with Apache to use some classic ASP and just wanted to say thanks.  Apache is quite impressive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2807</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Mon, 14 May 2007 20:45:03 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2807</guid>
		<description>Send me your config and I'll take a look.</description>
		<content:encoded><![CDATA[<p>Send me your config and I&#8217;ll take a look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: isaiah</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2803</link>
		<dc:creator>isaiah</dc:creator>
		<pubDate>Mon, 14 May 2007 15:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-2803</guid>
		<description>hey ramon, i tried the configuration you suggested, not very familiar with apache. everytime i put a url pointing to one of my .NET apps i get a 503 error from apache. the .NET app work fine from port 81 any ideas why this may be have i missed something</description>
		<content:encoded><![CDATA[<p>hey ramon, i tried the configuration you suggested, not very familiar with apache. everytime i put a url pointing to one of my .NET apps i get a 503 error from apache. the .NET app work fine from port 81 any ideas why this may be have i missed something</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Configuring and Managing Seaside &#171; Tekkie</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-53</link>
		<dc:creator>Configuring and Managing Seaside &#171; Tekkie</dc:creator>
		<pubDate>Tue, 24 Oct 2006 06:30:17 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-53</guid>
		<description>[...] Ramon Leon of OnSmalltalk put up a post recently that also talks about how to configure Apache so it works with Seaside and IIS! [...]</description>
		<content:encoded><![CDATA[<p>[...] Ramon Leon of OnSmalltalk put up a post recently that also talks about how to configure Apache so it works with Seaside and IIS! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2006-10-22 at He&#8217;s Just Had Coffee</title>
		<link>http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-50</link>
		<dc:creator>links for 2006-10-22 at He&#8217;s Just Had Coffee</dc:creator>
		<pubDate>Sun, 22 Oct 2006 22:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/running-seaside-apache-and-iis-on-windowsxp/#comment-50</guid>
		<description>[...] Running Seaside, Apache, and IIS on One Machine &#124; OnSmalltalk: A Squeak, Smalltalk, Seaside, Web Development Blog Smart setup to run Seaside and Apache on the same webserver, use Apache to proxy on to Seaside. (tags: squeak seaside apache) [...]</description>
		<content:encoded><![CDATA[<p>[...] Running Seaside, Apache, and IIS on One Machine | OnSmalltalk: A Squeak, Smalltalk, Seaside, Web Development Blog Smart setup to run Seaside and Apache on the same webserver, use Apache to proxy on to Seaside. (tags: squeak seaside apache) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
