Configuration of IIS in Amazon EC2 (Windows AMI)

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

Configuration of IIS in Amazon EC2 (Windows AMI)

Sabine Manaa
Hi,

I succeeded in reducing my image for deployment and running it in Amazon EC2 (Windows AMI).
Now I need some hints for configuring IIS.

Has anyone a list of steps to do in IIS for Seaside/Pharo?


Thank you

Sabine


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

Re: Configuration of IIS in Amazon EC2 (Windows AMI)

Louis LaBrunda
Hi Sabine,

>I succeeded in reducing my image for deployment and running it in Amazon
>EC2 (Windows AMI).
>Now I need some hints for configuring IIS.
>Has anyone a list of steps to do in IIS for Seaside/Pharo?

You should think about using Apache instead of IIS.  I'm no expert in
either but I was able to setup Apache for both Windows and Ubuntu in about
an hour.  It took three of us on and off for a month to set up IIS and I
have to modify Seaside (VA Smalltalk) base code to get it to work right.

I wanted IIS/Apache to handle most of the file downloads and not have them
come from Seaside.  This took some rewrite rules that were very easy with
Apache and almost impossible with IIS (this was 2 years ago so maybe it is
better now but I wouldn't hold my breath).

Lou
-----------------------------------------------------------
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon
mailto:[hidden email] http://www.Keystone-Software.com

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

Re: Configuration of IIS in Amazon EC2 (Windows AMI)

John McKeon
In reply to this post by Sabine Manaa
Hi Sabine,
You might want to look at Ramon Leon's blog regarding IIS and Apache and getting them to at least coexisit.
 
On Wed, Aug 22, 2012 at 9:50 AM, Sabine Knöfel <[hidden email]> wrote:
Hi,

I succeeded in reducing my image for deployment and running it in Amazon EC2 (Windows AMI).
Now I need some hints for configuring IIS.

Has anyone a list of steps to do in IIS for Seaside/Pharo?


Thank you

Sabine


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




--
jmck.seasidehosting.st

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

Installing seaside fresh squeak 4.3 image

CdAB63
Hello,

Yesterday I tried to install (for didactic purposes) seaside in a fresh squeak 4.3 image. The following script was used:

Installer ss project: 'MetacelloRepository';
    install: 'ConfigurationOfSeaside30'.

(Smalltalk at: #ConfigurationOfSeaside30) load.

And, to my surprise, no ZnServer neither WAKom or other server was installed. Interesting enough, installation went smooth (no errors or other weird stuff except by the traditional 'version not found'). Guess some dependency went to limbo. In order to proceed I used a backup image some six months old for which installation went OK.

CdAB

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

signature.asc (270 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Installing seaside fresh squeak 4.3 image

Dale Henrichs
Casimiro,

If I look at the ConfigurationOfSeaside30 I am also surprised that you didn't get the zinc adaptor or Kom loaded by default...

I'd be interested to see the results of printing record in your image:

  ConfigurationOfSeaside30 project latestVersion record.

this might give us some clues as to what is going on ...

BTW, I'll be flying to ESUG tomorrow, so I might not get back to the list until Saturday ...

Dale


----- Original Message -----
| From: "Casimiro de Almeida Barreto" <[hidden email]>
| To: "Seaside - general discussion" <[hidden email]>
| Sent: Wednesday, August 22, 2012 12:47:38 PM
| Subject: [Seaside] Installing seaside fresh squeak 4.3 image
|
|
| Hello,
|
| Yesterday I tried to install (for didactic purposes) seaside in a
| fresh squeak 4.3 image. The following script was used:
|
|
|
| Installer ss project: 'MetacelloRepository';
| install: 'ConfigurationOfSeaside30'.
|
| (Smalltalk at: #ConfigurationOfSeaside30) load.
|
| And, to my surprise, no ZnServer neither WAKom or other server was
| installed. Interesting enough, installation went smooth (no errors
| or other weird stuff except by the traditional 'version not found').
| Guess some dependency went to limbo. In order to proceed I used a
| backup image some six months old for which installation went OK.
|
| CdAB
|
| _______________________________________________
| 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: Installing seaside fresh squeak 4.3 image

Philippe Marschall
In reply to this post by CdAB63
On Wed, Aug 22, 2012 at 9:47 PM, Casimiro de Almeida Barreto
<[hidden email]> wrote:

> Hello,
>
> Yesterday I tried to install (for didactic purposes) seaside in a fresh
> squeak 4.3 image. The following script was used:
>
> Installer ss project: 'MetacelloRepository';
>     install: 'ConfigurationOfSeaside30'.
>
> (Smalltalk at: #ConfigurationOfSeaside30) load.
>
>
> And, to my surprise, no ZnServer neither WAKom or other server was
> installed. Interesting enough, installation went smooth (no errors or other
> weird stuff except by the traditional 'version not found'). Guess some
> dependency went to limbo. In order to proceed I used a backup image some six
> months old for which installation went OK.

I don't know whether this is intentional or not, but is doesn't look
so bad. ZnServer AFAIK doesn't work on Squeak so it's correct that it
isn't loaded. There isn't really a need to backup, just manually
loading WebClient [1]  should do the trick.

 [1] http://www.squeaksource.com/WebClient.html

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

Re: Configuration of IIS in Amazon EC2 (Windows AMI)

Philippe Marschall
In reply to this post by John McKeon
On Wed, Aug 22, 2012 at 6:53 PM, John McKeon <[hidden email]> wrote:
> Hi Sabine,
> You might want to look at Ramon Leon's blog regarding IIS and Apache and
> getting them to at least coexisit.

Out of curiosity, does anybody know how IIS communicates with ASP.Net?
Does it just run in process?

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

Re: Installing seaside fresh squeak 4.3 image

CdAB63
In reply to this post by Dale Henrichs
On 22-08-2012 17:17, Dale Henrichs wrote:
ConfigurationOfSeaside30 project latestVersion record.
Results in:

Recording 3.0.7 of ConfigurationOfSeaside30...
Project: Zinc stable
Project: OB stable
...finished 3.0.7


No web server after seaside 3.0 install

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

signature.asc (270 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Installing seaside fresh squeak 4.3 image

CdAB63
In reply to this post by Philippe Marschall
On 22-08-2012 17:22, Philippe Marschall wrote:

> On Wed, Aug 22, 2012 at 9:47 PM, Casimiro de Almeida Barreto
> <[hidden email]> wrote:
>> Hello,
>>
>> Yesterday I tried to install (for didactic purposes) seaside in a fresh
>> squeak 4.3 image. The following script was used:
>>
>> Installer ss project: 'MetacelloRepository';
>>     install: 'ConfigurationOfSeaside30'.
>>
>> (Smalltalk at: #ConfigurationOfSeaside30) load.
>>
>>
>> And, to my surprise, no ZnServer neither WAKom or other server was
>> installed. Interesting enough, installation went smooth (no errors or other
>> weird stuff except by the traditional 'version not found'). Guess some
>> dependency went to limbo. In order to proceed I used a backup image some six
>> months old for which installation went OK.
> I don't know whether this is intentional or not, but is doesn't look
> so bad. ZnServer AFAIK doesn't work on Squeak so it's correct that it
> isn't loaded. There isn't really a need to backup, just manually
> loading WebClient [1]  should do the trick.
>
>  [1] http://www.squeaksource.com/WebClient.html
What happened to good old Comanche (WAKom) ?

BTW, WebClient is installed but WAServerAdaptor startOn: 8081 (or
anything else) won't work.
>
> Cheers
> 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

signature.asc (270 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Installing seaside fresh squeak 4.3 image

John McKeon


On Wed, Aug 22, 2012 at 4:43 PM, Casimiro de Almeida Barreto <[hidden email]> wrote:

BTW, WebClient is installed but WAServerAdaptor startOn: 8081 (or
anything else) won't work.

Use WAWebServerAdaptor startOn: 8081 


>
> Cheers
> 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




--
jmck.seasidehosting.st

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

Re: Installing seaside fresh squeak 4.3 image

John McKeon
Sorry, you have to load WebClient-Seaside first. 
Happy Trails

On Wed, Aug 22, 2012 at 5:44 PM, John McKeon <[hidden email]> wrote:


On Wed, Aug 22, 2012 at 4:43 PM, Casimiro de Almeida Barreto <[hidden email]> wrote:

BTW, WebClient is installed but WAServerAdaptor startOn: 8081 (or
anything else) won't work.

Use WAWebServerAdaptor startOn: 8081 


>
> Cheers
> 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




--
jmck.seasidehosting.st



--
jmck.seasidehosting.st

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

Re: Installing seaside fresh squeak 4.3 image

Philippe Marschall
In reply to this post by CdAB63
On Wed, Aug 22, 2012 at 10:43 PM, Casimiro de Almeida Barreto
<[hidden email]> wrote:

> On 22-08-2012 17:22, Philippe Marschall wrote:
>> On Wed, Aug 22, 2012 at 9:47 PM, Casimiro de Almeida Barreto
>> <[hidden email]> wrote:
>>> Hello,
>>>
>>> Yesterday I tried to install (for didactic purposes) seaside in a fresh
>>> squeak 4.3 image. The following script was used:
>>>
>>> Installer ss project: 'MetacelloRepository';
>>>     install: 'ConfigurationOfSeaside30'.
>>>
>>> (Smalltalk at: #ConfigurationOfSeaside30) load.
>>>
>>>
>>> And, to my surprise, no ZnServer neither WAKom or other server was
>>> installed. Interesting enough, installation went smooth (no errors or other
>>> weird stuff except by the traditional 'version not found'). Guess some
>>> dependency went to limbo. In order to proceed I used a backup image some six
>>> months old for which installation went OK.
>> I don't know whether this is intentional or not, but is doesn't look
>> so bad. ZnServer AFAIK doesn't work on Squeak so it's correct that it
>> isn't loaded. There isn't really a need to backup, just manually
>> loading WebClient [1]  should do the trick.
>>
>>  [1] http://www.squeaksource.com/WebClient.html
>
> What happened to good old Comanche (WAKom) ?

It's unmaintained. We'd rather like people to switch to something
something maintained like Zinc on Pharo or WebClient on Squeak than
having to maintain our own web server.

> BTW, WebClient is installed but WAServerAdaptor startOn: 8081 (or
> anything else) won't work.

Likely because no server adaptor has yet been registered. See the
answer of John McKeon or do the following first (after loading
WebClient-Seaside). Then it should work.

WAWebServerAdaptor port: 8081

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

Re: Configuration of IIS in Amazon EC2 (Windows AMI)

Sabine Manaa
In reply to this post by Louis LaBrunda
Thanks - I have it running - with Apache;-)
Sabine
Reply | Threaded
Open this post in threaded view
|

Re: Installing seaside fresh squeak 4.3 image

Hannes Hirzel
In reply to this post by Dale Henrichs
On 8/22/12, Dale Henrichs <[hidden email]> wrote:

> Casimiro,
>
> If I look at the ConfigurationOfSeaside30 I am also surprised that you
> didn't get the zinc adaptor or Kom loaded by default...
>
> I'd be interested to see the results of printing record in your image:
>
>   ConfigurationOfSeaside30 project latestVersion record.
>
> this might give us some clues as to what is going on ...
>
> BTW, I'll be flying to ESUG tomorrow, so I might not get back to the list
> until Saturday ...
>
> Dale

Hello Dale and Casimiro

I did the test as well with a pristine Squeak 4.3 All-in-One image
from www.squeak.org
http://ftp.squeak.org/4.3/Squeak-4.3-All-in-One.zip
(just the release, no updates applied)

The my activity log and the results from the Transcript window are below.

HTH
--Hannes



"ACTIVITIES HJH"
Open Monticello Browser, click on '+Repository' / Http repository


MCHttpRepository
    location: 'http://www.squeaksource.com/Seaside30'
    user: ''
    password: ''


Manually load

ConfigurationOfSeaside30-dkh.375
Author: dkh
Time: 24 May 2012, 2:52:57 pm


Open Transcript window

Execute:

ConfigurationOfSeaside30 project latestVersion record.



A DEBUGGER WINDOW appearswith the message

No version found for #stable of ConfigurationOfZincHTTPComponents

'Proceed' key was pressed ...







^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Content of Transcript
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

ConfigurationOfMetacello>>project (MetacelloMCProject is Undeclared)
Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
Fetched -> ConfigurationOfGofer-dkh.36 ---
http://www.squeaksource.com/MetacelloRepository ---
http://seaside.gemstone.com/ss/metacello
Loaded -> ConfigurationOfGofer-dkh.36 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Project: Gofer Core 1.0.5.1
Fetched -> Gofer-Core.squeak-dkh.135 ---
http://seaside.gemstone.com/ss/metacello ---
http://seaside.gemstone.com/ss/metacello
Loaded -> Gofer-Core.squeak-dkh.135 ---
http://seaside.gemstone.com/ss/metacello --- cache
...finished 1.0-beta.31.1.4
Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
...RETRY->ConfigurationOfGofer
Project: Gofer Core 1.0.5.1
...finished 1.0-beta.31.1.4
Recording 3.0.7 of ConfigurationOfSeaside30...
Project: Grease Core 1.0.7
Fetched -> ConfigurationOfGrease-dkh.187 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Loaded -> ConfigurationOfGrease-dkh.187 ---
http://www.squeaksource.com/MetacelloRepository ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
Project: Grease Core Tests 1.0.7
Project: Zinc stable
Fetched -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
http://www.squeaksource.com/ZincHTTPComponents ---
http://www.squeaksource.com/ZincHTTPComponents
Loaded -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
http://www.squeaksource.com/ZincHTTPComponents ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache



" Note by Hannes: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
" Debugger window with
" No version found for #stable of ConfigurationOfZincHTTPComponents "
" Hannes hits the 'proceed' key"




Project: OB stable
Fetched -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Loaded -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
http://www.squeaksource.com/MetacelloRepository ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
Project: SPort2 2.31
Fetched -> ConfigurationOfSPort2-DaleHenrichs.4 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Loaded -> ConfigurationOfSPort2-DaleHenrichs.4 ---
http://www.squeaksource.com/MetacelloRepository ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
...finished 3.0.7







>
> ----- Original Message -----
> | From: "Casimiro de Almeida Barreto" <[hidden email]>
> | To: "Seaside - general discussion" <[hidden email]>
> | Sent: Wednesday, August 22, 2012 12:47:38 PM
> | Subject: [Seaside] Installing seaside fresh squeak 4.3 image
> |
> |
> | Hello,
> |
> | Yesterday I tried to install (for didactic purposes) seaside in a
> | fresh squeak 4.3 image. The following script was used:
> |
> |
> |
> | Installer ss project: 'MetacelloRepository';
> | install: 'ConfigurationOfSeaside30'.
> |
> | (Smalltalk at: #ConfigurationOfSeaside30) load.
> |
> | And, to my surprise, no ZnServer neither WAKom or other server was
> | installed. Interesting enough, installation went smooth (no errors
> | or other weird stuff except by the traditional 'version not found').
> | Guess some dependency went to limbo. In order to proceed I used a
> | backup image some six months old for which installation went OK.
> |
> | CdAB
> |
> | _______________________________________________
> | 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
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Installing seaside fresh squeak 4.3 image

Hannes Hirzel
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
I did the test with a pristine image another time.
http://ftp.squeak.org/4.3/Squeak-4.3-All-in-One.zip (used as is; NO
updates applied)

This time instead of manually loading
   ConfigurationOfSeaside30-dkh.375

I used the command which Casimiro used

and again with the logging info Dale recommended



Installer ss project: 'MetacelloRepository';
    install: 'ConfigurationOfSeaside30'.

(Smalltalk at: #ConfigurationOfSeaside30) project latestVersion record.


The same MetaCello Spec error came up
No version found for #stable of ConfigurationOfZincHTTPComponents


-- Hannes

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
The Transcript log follows
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

reading http://www.squeaksource.com/MetacelloRepository...
 found ConfigurationOfSeaside30-dkh.375.mcz...
loaded

ConfigurationOfMetacello>>project (MetacelloMCProject is Undeclared)
Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
Fetched -> ConfigurationOfGofer-dkh.36 ---
http://www.squeaksource.com/MetacelloRepository ---
http://seaside.gemstone.com/ss/metacello
Loaded -> ConfigurationOfGofer-dkh.36 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Project: Gofer Core 1.0.5.1
Fetched -> Gofer-Core.squeak-dkh.135 ---
http://seaside.gemstone.com/ss/metacello ---
http://seaside.gemstone.com/ss/metacello
Loaded -> Gofer-Core.squeak-dkh.135 ---
http://seaside.gemstone.com/ss/metacello --- cache
...finished 1.0-beta.31.1.4
Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
Project: Gofer Core 1.0.5.1
...finished 1.0-beta.31.1.4
Recording 3.0.7 of ConfigurationOfSeaside30...
Project: Grease Core 1.0.7
Fetched -> ConfigurationOfGrease-dkh.187 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Loaded -> ConfigurationOfGrease-dkh.187 ---
http://www.squeaksource.com/MetacelloRepository ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test5\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
Project: Grease Core Tests 1.0.7
Project: Zinc stable
Fetched -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
http://www.squeaksource.com/ZincHTTPComponents ---
http://www.squeaksource.com/ZincHTTPComponents
Loaded -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
http://www.squeaksource.com/ZincHTTPComponents ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test5\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
Project: OB stable
Fetched -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Loaded -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
http://www.squeaksource.com/MetacelloRepository ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test5\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
Project: SPort2 2.31
Fetched -> ConfigurationOfSPort2-DaleHenrichs.4 ---
http://www.squeaksource.com/MetacelloRepository ---
http://www.squeaksource.com/MetacelloRepository
Loaded -> ConfigurationOfSPort2-DaleHenrichs.4 ---
http://www.squeaksource.com/MetacelloRepository ---
C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test5\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
...finished 3.0.7

On 8/25/12, H. Hirzel <[hidden email]> wrote:

> On 8/22/12, Dale Henrichs <[hidden email]> wrote:
>> Casimiro,
>>
>> If I look at the ConfigurationOfSeaside30 I am also surprised that you
>> didn't get the zinc adaptor or Kom loaded by default...
>>
>> I'd be interested to see the results of printing record in your image:
>>
>>   ConfigurationOfSeaside30 project latestVersion record.
>>
>> this might give us some clues as to what is going on ...
>>
>> BTW, I'll be flying to ESUG tomorrow, so I might not get back to the list
>> until Saturday ...
>>
>> Dale
>
> Hello Dale and Casimiro
>
> I did the test as well with a pristine Squeak 4.3 All-in-One image
> from www.squeak.org
> http://ftp.squeak.org/4.3/Squeak-4.3-All-in-One.zip
> (just the release, no updates applied)
>
> The my activity log and the results from the Transcript window are below.
>
> HTH
> --Hannes
>
>
>
> "ACTIVITIES HJH"
> Open Monticello Browser, click on '+Repository' / Http repository
>
>
> MCHttpRepository
>     location: 'http://www.squeaksource.com/Seaside30'
>     user: ''
>     password: ''
>
>
> Manually load
>
> ConfigurationOfSeaside30-dkh.375
> Author: dkh
> Time: 24 May 2012, 2:52:57 pm
>
>
> Open Transcript window
>
> Execute:
>
> ConfigurationOfSeaside30 project latestVersion record.
>
>
>
> A DEBUGGER WINDOW appearswith the message
>
> No version found for #stable of ConfigurationOfZincHTTPComponents
>
> 'Proceed' key was pressed ...
>
>
>
>
>
>
>
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Content of Transcript
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>
> ConfigurationOfMetacello>>project (MetacelloMCProject is Undeclared)
> Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
> Fetched -> ConfigurationOfGofer-dkh.36 ---
> http://www.squeaksource.com/MetacelloRepository ---
> http://seaside.gemstone.com/ss/metacello
> Loaded -> ConfigurationOfGofer-dkh.36 ---
> http://www.squeaksource.com/MetacelloRepository ---
> http://www.squeaksource.com/MetacelloRepository
> Project: Gofer Core 1.0.5.1
> Fetched -> Gofer-Core.squeak-dkh.135 ---
> http://seaside.gemstone.com/ss/metacello ---
> http://seaside.gemstone.com/ss/metacello
> Loaded -> Gofer-Core.squeak-dkh.135 ---
> http://seaside.gemstone.com/ss/metacello --- cache
> ...finished 1.0-beta.31.1.4
> Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
> ...RETRY->ConfigurationOfGofer
> Project: Gofer Core 1.0.5.1
> ...finished 1.0-beta.31.1.4
> Recording 3.0.7 of ConfigurationOfSeaside30...
> Project: Grease Core 1.0.7
> Fetched -> ConfigurationOfGrease-dkh.187 ---
> http://www.squeaksource.com/MetacelloRepository ---
> http://www.squeaksource.com/MetacelloRepository
> Loaded -> ConfigurationOfGrease-dkh.187 ---
> http://www.squeaksource.com/MetacelloRepository ---
> C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
> Project: Grease Core Tests 1.0.7
> Project: Zinc stable
> Fetched -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
> http://www.squeaksource.com/ZincHTTPComponents ---
> http://www.squeaksource.com/ZincHTTPComponents
> Loaded -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
> http://www.squeaksource.com/ZincHTTPComponents ---
> C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
>
>
>
> " Note by Hannes:
> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
> " Debugger window with
> " No version found for #stable of ConfigurationOfZincHTTPComponents "
> " Hannes hits the 'proceed' key"
>
>
>
>
> Project: OB stable
> Fetched -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
> http://www.squeaksource.com/MetacelloRepository ---
> http://www.squeaksource.com/MetacelloRepository
> Loaded -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
> http://www.squeaksource.com/MetacelloRepository ---
> C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
> Project: SPort2 2.31
> Fetched -> ConfigurationOfSPort2-DaleHenrichs.4 ---
> http://www.squeaksource.com/MetacelloRepository ---
> http://www.squeaksource.com/MetacelloRepository
> Loaded -> ConfigurationOfSPort2-DaleHenrichs.4 ---
> http://www.squeaksource.com/MetacelloRepository ---
> C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
> ...finished 3.0.7
>
>
>
>
>
>
>
>>
>> ----- Original Message -----
>> | From: "Casimiro de Almeida Barreto" <[hidden email]>
>> | To: "Seaside - general discussion" <[hidden email]>
>> | Sent: Wednesday, August 22, 2012 12:47:38 PM
>> | Subject: [Seaside] Installing seaside fresh squeak 4.3 image
>> |
>> |
>> | Hello,
>> |
>> | Yesterday I tried to install (for didactic purposes) seaside in a
>> | fresh squeak 4.3 image. The following script was used:
>> |
>> |
>> |
>> | Installer ss project: 'MetacelloRepository';
>> | install: 'ConfigurationOfSeaside30'.
>> |
>> | (Smalltalk at: #ConfigurationOfSeaside30) load.
>> |
>> | And, to my surprise, no ZnServer neither WAKom or other server was
>> | installed. Interesting enough, installation went smooth (no errors
>> | or other weird stuff except by the traditional 'version not found').
>> | Guess some dependency went to limbo. In order to proceed I used a
>> | backup image some six months old for which installation went OK.
>> |
>> | CdAB
>> |
>> | _______________________________________________
>> | 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
>>
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Configuration of IIS in Amazon EC2 (Windows AMI)

mozillanerd
In reply to this post by Sabine Manaa
Sabine Knöfel <sabine.knoefel <at> gmail.com> writes:

>
> Thanks - I have it running - with Apache
> Sabine
>
> --
> View this message in context: http://forum.world.st/Configuration-of-IIS-in-
Amazon-EC2-Windows-AMI-tp4644977p4645162.html
> Sent from the Seaside General mailing list archive at Nabble.com.
>
Would mind describing your configuration better; I would like to do the same
here.



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

Re: Configuration of IIS in Amazon EC2 (Windows AMI)

Sabine Manaa
I was asked about configuration for EC2, Windows, Apache, Seaside and Pharo

1.) Install apache in your ec2 instance
2.) Add port (e.g. 80) to the security group you used for your instance in aws
3.) stop IIS
4.) In "Windows Firewall with Advanced Security", add an "inbound Rule" which allows the connection to port 80
5.) edit httpd.conf:
a) enter port e.g.
"Listen 80"
b) enable those modules:
"LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule rewrite_module modules/mod_rewrite.so"
c) enable  Virtual hosts
"Include conf/extra/httpd-vhosts.conf"
d) edit httpd-vhosts.conf:
 "NameVirtualHost *:80
 <VirtualHost *:80>
   # set server name
    ProxyPreserveHost On
    ServerName www.yourURL.de

    DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/www/NAMEOFYOURAPPLICATION"
    RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f

<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/www/NAMEOFYOURAPPLICATION">
    Options FollowSymLinks
    AllowOverride None
     Order allow,deny
    Allow from all
</Directory>

    # rewrite incoming requests
    RewriteEngine On
    RewriteRule ^/(.*)$ http://localhost:8080/NAMEOFYOURAPPLICATION/$1 [proxy,last]
</VirtualHost>"

e) restart apache

this is how it works for me now for development and testing purposes

QUESTIONS
A) I had to replicate my FileLibrary on hard-disk of Server.
Anyone knowing how I could avoid this (and serve css from pharo)?
I would like to make a part of my css editable by browser, so I want to configure Apache allowing this.

B) comments welcome especially for security issues

 
Reply | Threaded
Open this post in threaded view
|

Re: Installing seaside fresh squeak 4.3 image

Dale Henrichs
In reply to this post by Hannes Hirzel
The ConfigurationOfZincHTTPComponents does not specify a #stable version for Squeak4.3:


  stable: spec
        <symbolicVersion: #stable>
        spec for: #pharo version: '1.8.1'.
        spec for: #gemstone version: '1.1'

So the Seaside30 config should be edited to remove Zinc for the Squeak platform (Zinc is not porte AFAIK) and supply a suitable default.

Hannes, I would have expected the error that you got for the load, but silently not loading an adaptor is a surprise...

Dale

----- Original Message -----
| From: "H. Hirzel" <[hidden email]>
| To: "Seaside - general discussion" <[hidden email]>
| Sent: Saturday, August 25, 2012 12:31:03 AM
| Subject: Re: [Seaside] Installing seaside fresh squeak 4.3 image
|
| On 8/22/12, Dale Henrichs <[hidden email]> wrote:
| > Casimiro,
| >
| > If I look at the ConfigurationOfSeaside30 I am also surprised that
| > you
| > didn't get the zinc adaptor or Kom loaded by default...
| >
| > I'd be interested to see the results of printing record in your
| > image:
| >
| >   ConfigurationOfSeaside30 project latestVersion record.
| >
| > this might give us some clues as to what is going on ...
| >
| > BTW, I'll be flying to ESUG tomorrow, so I might not get back to
| > the list
| > until Saturday ...
| >
| > Dale
|
| Hello Dale and Casimiro
|
| I did the test as well with a pristine Squeak 4.3 All-in-One image
| from www.squeak.org
| http://ftp.squeak.org/4.3/Squeak-4.3-All-in-One.zip
| (just the release, no updates applied)
|
| The my activity log and the results from the Transcript window are
| below.
|
| HTH
| --Hannes
|
|
|
| "ACTIVITIES HJH"
| Open Monticello Browser, click on '+Repository' / Http repository
|
|
| MCHttpRepository
|     location: 'http://www.squeaksource.com/Seaside30'
|     user: ''
|     password: ''
|
|
| Manually load
|
| ConfigurationOfSeaside30-dkh.375
| Author: dkh
| Time: 24 May 2012, 2:52:57 pm
|
|
| Open Transcript window
|
| Execute:
|
| ConfigurationOfSeaside30 project latestVersion record.
|
|
|
| A DEBUGGER WINDOW appearswith the message
|
| No version found for #stable of ConfigurationOfZincHTTPComponents
|
| 'Proceed' key was pressed ...
|
|
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| Content of Transcript
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ConfigurationOfMetacello>>project (MetacelloMCProject is Undeclared)
| Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
| Fetched -> ConfigurationOfGofer-dkh.36 ---
| http://www.squeaksource.com/MetacelloRepository ---
| http://seaside.gemstone.com/ss/metacello
| Loaded -> ConfigurationOfGofer-dkh.36 ---
| http://www.squeaksource.com/MetacelloRepository ---
| http://www.squeaksource.com/MetacelloRepository
| Project: Gofer Core 1.0.5.1
| Fetched -> Gofer-Core.squeak-dkh.135 ---
| http://seaside.gemstone.com/ss/metacello ---
| http://seaside.gemstone.com/ss/metacello
| Loaded -> Gofer-Core.squeak-dkh.135 ---
| http://seaside.gemstone.com/ss/metacello --- cache
| ...finished 1.0-beta.31.1.4
| Loading 1.0-beta.31.1.4 of ConfigurationOfMetacello...
| ...RETRY->ConfigurationOfGofer
| Project: Gofer Core 1.0.5.1
| ...finished 1.0-beta.31.1.4
| Recording 3.0.7 of ConfigurationOfSeaside30...
| Project: Grease Core 1.0.7
| Fetched -> ConfigurationOfGrease-dkh.187 ---
| http://www.squeaksource.com/MetacelloRepository ---
| http://www.squeaksource.com/MetacelloRepository
| Loaded -> ConfigurationOfGrease-dkh.187 ---
| http://www.squeaksource.com/MetacelloRepository ---
| C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
| Project: Grease Core Tests 1.0.7
| Project: Zinc stable
| Fetched -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
| http://www.squeaksource.com/ZincHTTPComponents ---
| http://www.squeaksource.com/ZincHTTPComponents
| Loaded -> ConfigurationOfZincHTTPComponents-SeanDeNigris.26 ---
| http://www.squeaksource.com/ZincHTTPComponents ---
| C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
|
|
|
| " Note by Hannes:
| xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
| " Debugger window with
| " No version found for #stable of ConfigurationOfZincHTTPComponents "
| " Hannes hits the 'proceed' key"
|
|
|
|
| Project: OB stable
| Fetched -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
| http://www.squeaksource.com/MetacelloRepository ---
| http://www.squeaksource.com/MetacelloRepository
| Loaded -> ConfigurationOfOmniBrowser-EstebanLorenzano.163 ---
| http://www.squeaksource.com/MetacelloRepository ---
| C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
| Project: SPort2 2.31
| Fetched -> ConfigurationOfSPort2-DaleHenrichs.4 ---
| http://www.squeaksource.com/MetacelloRepository ---
| http://www.squeaksource.com/MetacelloRepository
| Loaded -> ConfigurationOfSPort2-DaleHenrichs.4 ---
| http://www.squeaksource.com/MetacelloRepository ---
| C:\Users\Hannes\Documents\Squeak4.3Test\Squeak-4.3-All-in-One-Seaside-Test4\Squeak-4.3-All-in-One.app\Contents\Resources\package-cache
| ...finished 3.0.7
|
|
|
|
|
|
|
| >
| > ----- Original Message -----
| > | From: "Casimiro de Almeida Barreto" <[hidden email]>
| > | To: "Seaside - general discussion"
| > | <[hidden email]>
| > | Sent: Wednesday, August 22, 2012 12:47:38 PM
| > | Subject: [Seaside] Installing seaside fresh squeak 4.3 image
| > |
| > |
| > | Hello,
| > |
| > | Yesterday I tried to install (for didactic purposes) seaside in a
| > | fresh squeak 4.3 image. The following script was used:
| > |
| > |
| > |
| > | Installer ss project: 'MetacelloRepository';
| > | install: 'ConfigurationOfSeaside30'.
| > |
| > | (Smalltalk at: #ConfigurationOfSeaside30) load.
| > |
| > | And, to my surprise, no ZnServer neither WAKom or other server
| > | was
| > | installed. Interesting enough, installation went smooth (no
| > | errors
| > | or other weird stuff except by the traditional 'version not
| > | found').
| > | Guess some dependency went to limbo. In order to proceed I used a
| > | backup image some six months old for which installation went OK.
| > |
| > | CdAB
| > |
| > | _______________________________________________
| > | 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
| >
| _______________________________________________
| 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: Installing seaside fresh squeak 4.3 image

Tobias Pape
In reply to this post by CdAB63
Am 22.08.2012 um 22:40 schrieb Casimiro de Almeida Barreto <[hidden email]>:

> On 22-08-2012 17:17, Dale Henrichs wrote:
>> ConfigurationOfSeaside30 project latestVersion record.
> Results in:
>
> Recording 3.0.7 of ConfigurationOfSeaside30...
> Project: Zinc stable
> Project: OB stable
> ...finished 3.0.7
>


Hi, #record, to my knowledge, does not actually
retrieve the configuration and, hence cannot infer that
Zinc, in fact, cannot be loaded in Squeak :/

Best
        -Tobias

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

Re: Installing seaside fresh squeak 4.3 image

Johan Brichau-2
I have the impression that Philippe found a lot of waiting emails in the moderator interface.

:-)

On 24 Mar 2013, at 16:23, Tobias Pape <[hidden email]> wrote:

> Am 22.08.2012 um 22:40 schrieb Casimiro de Almeida Barreto <[hidden email]>:
>
>> On 22-08-2012 17:17, Dale Henrichs wrote:
>>> ConfigurationOfSeaside30 project latestVersion record.
>> Results in:
>>
>> Recording 3.0.7 of ConfigurationOfSeaside30...
>> Project: Zinc stable
>> Project: OB stable
>> ...finished 3.0.7
>>
>
>
> Hi, #record, to my knowledge, does not actually
> retrieve the configuration and, hence cannot infer that
> Zinc, in fact, cannot be loaded in Squeak :/
>
> Best
> -Tobias
>
> _______________________________________________
> 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
12