[Q] How can I activate FastCGI Functionality?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

[Q] How can I activate FastCGI Functionality?

Chun, Sungjin
Hi,

I've read the comment on FastCGI support in recent Seaside 2.8 package. How can I
use it? Should I use additional package?

Thanks in advance.

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: [Q] How can I activate FastCGI Functionality?

Philippe Marschall
2007/7/25, "S.J.Chun" <[hidden email]>:
> Hi,
>
> I've read the comment on FastCGI support in recent Seaside 2.8 package.

I am not aware of such a comment or any changes in this regard.

> How can I
> use it? Should I use additional package?

http://www.squeaksource.com/FCGI.html
See wiki for instructions

Philippe
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Re: [Q] How can I activate FastCGI Functionality?

Chun, Sungjin
In reply to this post by Chun, Sungjin
 Hmm, it seems that I misread the news on gemstone which (will?) support
FastCGI and other connection method.

Thanks for your reply. I'll try FCGI.

----- Original Message -----
   From: Philippe Marschall <[hidden email]>
   To: Seaside - general discussion <[hidden email]>
   Sent: 07-07-25 15:34:08
   Subject: Re: Re: [Seaside] [Q] How can I activate FastCGI Functionality?

  2007/7/25, "S.J.Chun" <[hidden email]>:
> Hi,
>
> I've read the comment on FastCGI support in recent Seaside 2.8 package.

I am not aware of such a comment or any changes in this regard.

> How can I
> use it? Should I use additional package?

http://www.squeaksource.com/FCGI.html
See wiki for instructions

Philippe
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Re: [Q] How can I activate FastCGI Functionality?

Chun, Sungjin
In reply to this post by Chun, Sungjin
 Hmm, it seems that I misread the news on gemstone which (will?) support
FastCGI and other connection method.

Thanks for your reply. I'll try FCGI.

----- Original Message -----
   From: Philippe Marschall <[hidden email]>
   To: Seaside - general discussion <[hidden email]>
   Sent: 07-07-25 15:34:08
   Subject: Re: Re: [Seaside] [Q] How can I activate FastCGI Functionality?

  2007/7/25, "S.J.Chun" <[hidden email]>:
> Hi,
>
> I've read the comment on FastCGI support in recent Seaside 2.8 package.

I am not aware of such a comment or any changes in this regard.

> How can I
> use it? Should I use additional package?

http://www.squeaksource.com/FCGI.html
See wiki for instructions

Philippe
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: [Q] How can I activate FastCGI Functionality?

Dale
In reply to this post by Chun, Sungjin
We have ported a smalltalk-based FastCGI implementation to GemStone/S (I
believe we started with a Dolphin port) that we expect people to use in
production. The latest version works with Seaside2.6 and Seaside2.8. You
can view the code at on GemSource at
http://seaside.gemstone.com/ss/fastcgi.html.

There is also a 'FastCGI for Seaside' project on SqueakSource at
http://www.squeaksource.com/FCGI.html. I haven't played with it and
looking at the source there are a couple of TODO's sprinkled in the code
that may or may not be critical.

It shouldn't be necessary to change Seaside at all to use FastCGI, in
our case we had to change our FastCGI implementation a bit because the
response status changed from a String to an Integer between 2.6 and 2.8.

Dale


S.J.Chun wrote:

>Hi,
>
>I've read the comment on FastCGI support in recent Seaside 2.8 package. How can I
>use it? Should I use additional package?
>
>Thanks in advance.
>
>  
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Seaside mailing list
>[hidden email]
>http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>  
>

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: [Q] How can I activate FastCGI Functionality?

jgfoster
In reply to this post by Chun, Sungjin
S.J.Chun wrote:
>  Hmm, it seems that I misread the news on gemstone which (will?) support
> FastCGI and other connection method.
See http://seaside.gemstone.com/ss/fastcgi.html for the FastCGI project
in GemSource. You can browse the source with Monticello:

MCHttpRepository
    location: 'http://seaside.gemstone.com/ss/fastcgi'
    user: ''
    password: ''

James
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Re: [Q] How can I activate FastCGI Functionality?

Chun, Sungjin
In reply to this post by Chun, Sungjin
Thank you. I'll try the implementation at GemSource too.

----- Original Message -----
   From: Dale Henrichs <[hidden email]>
   To: "S.J.Chun" <[hidden email]>, Seaside - general discussion <[hidden email]>
   Sent: 07-07-26 00:51:51
   Subject: Re: Re: [Seaside] [Q] How can I activate FastCGI Functionality?

  We have ported a smalltalk-based FastCGI implementation to GemStone/S (I
believe we started with a Dolphin port) that we expect people to use in
production. The latest version works with Seaside2.6 and Seaside2.8. You
can view the code at on GemSource at
http://seaside.gemstone.com/ss/fastcgi.html.

There is also a 'FastCGI for Seaside' project on SqueakSource at
http://www.squeaksource.com/FCGI.html. I haven't played with it and
looking at the source there are a couple of TODO's sprinkled in the code
that may or may not be critical.

It shouldn't be necessary to change Seaside at all to use FastCGI, in
our case we had to change our FastCGI implementation a bit because the
response status changed from a String to an Integer between 2.6 and 2.8.

Dale


S.J.Chun wrote:

>Hi,
>
>I've read the comment on FastCGI support in recent Seaside 2.8 package. How can I
>use it? Should I use additional package?
>
>Thanks in advance.
>
>  
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Seaside mailing list
>[hidden email]
>http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>  
>


_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside