public store access

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

public store access

Jim Harsh
Hi all,

I'm trying to access the public store repository. I've loaded the
StoreForPostresSQL package per
http://www.cincomsmalltalk.com/CincomSmalltalkWiki/Public+Store+Repository

When I try to use the guest access described on that page I get an error dialog

Unable to connect to ""because of the following error:
Block closure[] in Signal>>newException

Any idea what I'm doing wrong?

Thanks,
Jim

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Runar Jordahl
Below is a script that configures a connection to the Public Store
Database using a base VisualWorks 7.7.1 (commercial) image. Simply
copy the script to a workspace, and "do it".

Runar



Compiler evaluate:
'Parcel loadParcelByName: ''StoreForPostgreSQL''.

Store.StoreDevelopmentSystem reconnectAction: #reconnect.

Store.RepositoryManager addRepository: (Store.ConnectionProfile new
        name: ''Public Store Repository'';
        driverClassName: #PostgreSQLEXDIConnection;
        environment: ''store.cincomsmalltalk.com:5432_store_public'';
        userName: ''guest'';
        password: ''guest'';
        tableOwner: ''BERN'';
        yourself).

Store.DbRegistry connectTo: (Store.RepositoryManager repositories
detect: [:each | each name = ''Public Store Repository'']).'
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Jim Harsh


Thanks Runar, but I get the same error message, it has a name this time though.

Unable to connect to "Public Store Repository" because of the following error:
BlockClosure [] in Signal>>newException

Jim


At 06:28 AM 11/17/2010, Runar Jordahl wrote:

>Below is a script that configures a connection to the Public Store
>Database using a base VisualWorks 7.7.1 (commercial) image. Simply
>copy the script to a workspace, and "do it".
>
>Runar
>
>
>
>Compiler evaluate:
>'Parcel loadParcelByName: ''StoreForPostgreSQL''.
>
>Store.StoreDevelopmentSystem reconnectAction: #reconnect.
>
>Store.RepositoryManager addRepository: (Store.ConnectionProfile new
>         name: ''Public Store Repository'';
>         driverClassName: #PostgreSQLEXDIConnection;
>         environment: ''store.cincomsmalltalk.com:5432_store_public'';
>         userName: ''guest'';
>         password: ''guest'';
>         tableOwner: ''BERN'';
>         yourself).
>
>Store.DbRegistry connectTo: (Store.RepositoryManager repositories
>detect: [:each | each name = ''Public Store Repository'']).'

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Wallen, David
Have you tried Runar's script in a vanilla image (nothing loaded)?
If so, maybe it's a firewall issue.

- Dave

> -----Original Message-----
> From: [hidden email] [mailto:[hidden email]] On
Behalf
> Of Jim Harsh
> Sent: Wednesday, November 17, 2010 6:07 AM
> To: Runar Jordahl
> Cc: [hidden email]
> Subject: Re: [vwnc] public store access
>
>
>
> Thanks Runar, but I get the same error message, it has a name this
time
> though.
>
> Unable to connect to "Public Store Repository" because of the
following

> error:
> BlockClosure [] in Signal>>newException
>
> Jim
>
>
> At 06:28 AM 11/17/2010, Runar Jordahl wrote:
> >Below is a script that configures a connection to the Public Store
> >Database using a base VisualWorks 7.7.1 (commercial) image. Simply
> >copy the script to a workspace, and "do it".
> >
> >Runar
> >
> >
> >
> >Compiler evaluate:
> >'Parcel loadParcelByName: ''StoreForPostgreSQL''.
> >
> >Store.StoreDevelopmentSystem reconnectAction: #reconnect.
> >
> >Store.RepositoryManager addRepository: (Store.ConnectionProfile new
> >         name: ''Public Store Repository'';
> >         driverClassName: #PostgreSQLEXDIConnection;
> >         environment:
''store.cincomsmalltalk.com:5432_store_public'';

> >         userName: ''guest'';
> >         password: ''guest'';
> >         tableOwner: ''BERN'';
> >         yourself).
> >
> >Store.DbRegistry connectTo: (Store.RepositoryManager repositories
> >detect: [:each | each name = ''Public Store Repository'']).'
>
> _______________________________________________
> vwnc mailing list
> [hidden email]
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Jim Harsh



Yes, I tried in a vanilla image and it failed, different error
message but seam to implicate the firewall.

Thanks,
Jim


At 09:36 AM 11/17/2010, Wallen, David wrote:

>Have you tried Runar's script in a vanilla image (nothing loaded)?
>If so, maybe it's a firewall issue.
>
>- Dave
>
> > -----Original Message-----
> > From: [hidden email] [mailto:[hidden email]] On
>Behalf
> > Of Jim Harsh
> > Sent: Wednesday, November 17, 2010 6:07 AM
> > To: Runar Jordahl
> > Cc: [hidden email]
> > Subject: Re: [vwnc] public store access
> >
> >
> >
> > Thanks Runar, but I get the same error message, it has a name this
>time
> > though.
> >
> > Unable to connect to "Public Store Repository" because of the
>following
> > error:
> > BlockClosure [] in Signal>>newException
> >
> > Jim
> >
> >
> > At 06:28 AM 11/17/2010, Runar Jordahl wrote:
> > >Below is a script that configures a connection to the Public Store
> > >Database using a base VisualWorks 7.7.1 (commercial) image. Simply
> > >copy the script to a workspace, and "do it".
> > >
> > >Runar
> > >
> > >
> > >
> > >Compiler evaluate:
> > >'Parcel loadParcelByName: ''StoreForPostgreSQL''.
> > >
> > >Store.StoreDevelopmentSystem reconnectAction: #reconnect.
> > >
> > >Store.RepositoryManager addRepository: (Store.ConnectionProfile new
> > >         name: ''Public Store Repository'';
> > >         driverClassName: #PostgreSQLEXDIConnection;
> > >         environment:
>''store.cincomsmalltalk.com:5432_store_public'';
> > >         userName: ''guest'';
> > >         password: ''guest'';
> > >         tableOwner: ''BERN'';
> > >         yourself).
> > >
> > >Store.DbRegistry connectTo: (Store.RepositoryManager repositories
> > >detect: [:each | each name = ''Public Store Repository'']).'
> >
> > _______________________________________________
> > vwnc mailing list
> > [hidden email]
> > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Steven Kelly
In reply to this post by Jim Harsh
Re: [vwnc] public store access
Try replacing 5432 with 80 or 22
 
Alternatively, open a hole in your firewall for port 5432:
 
HTH,
Steve


From: [hidden email] on behalf of Jim Harsh
Sent: Wed 17/11/2010 19:01
To: Wallen, David
Cc: [hidden email]
Subject: Re: [vwnc] public store access




Yes, I tried in a vanilla image and it failed, different error
message but seam to implicate the firewall.

Thanks,
Jim


At 09:36 AM 11/17/2010, Wallen, David wrote:


>Have you tried Runar's script in a vanilla image (nothing loaded)?
>If so, maybe it's a firewall issue.
>
>- Dave
>
> > -----Original Message-----
> > From: [hidden email] [[hidden email]] On
>Behalf
> > Of Jim Harsh
> > Sent: Wednesday, November 17, 2010 6:07 AM
> > To: Runar Jordahl
> > Cc: [hidden email]
> > Subject: Re: [vwnc] public store access
> >
> >
> >
> > Thanks Runar, but I get the same error message, it has a name this
>time
> > though.
> >
> > Unable to connect to "Public Store Repository" because of the
>following
> > error:
> > BlockClosure [] in Signal>>newException
> >
> > Jim
> >
> >
> > At 06:28 AM 11/17/2010, Runar Jordahl wrote:
> > >Below is a script that configures a connection to the Public Store
> > >Database using a base VisualWorks 7.7.1 (commercial) image. Simply
> > >copy the script to a workspace, and "do it".
> > >
> > >Runar
> > >
> > >
> > >
> > >Compiler evaluate:
> > >'Parcel loadParcelByName: ''StoreForPostgreSQL''.
> > >
> > >Store.StoreDevelopmentSystem reconnectAction: #reconnect.
> > >
> > >Store.RepositoryManager addRepository: (Store.ConnectionProfile new
> > >         name: ''Public Store Repository'';
> > >         driverClassName: #PostgreSQLEXDIConnection;
> > >         environment:
>''store.cincomsmalltalk.com:5432_store_public'';
> > >         userName: ''guest'';
> > >         password: ''guest'';
> > >         tableOwner: ''BERN'';
> > >         yourself).
> > >
> > >Store.DbRegistry connectTo: (Store.RepositoryManager repositories
> > >detect: [:each | each name = ''Public Store Repository'']).'
> >
> > _______________________________________________
> > vwnc mailing list
> > [hidden email]
> > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Jim Harsh

Thanks Steve. I connected this morning using port 22.




At 04:06 PM 11/17/2010, Steven Kelly wrote:

>Try replacing 5432 with 80 or 22
>(from:
><http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page>http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page)
>
>Alternatively, open a hole in your firewall for port 5432:
><http://www.cincomsmalltalk.com/CincomSmalltalkWiki/Public+Repository+and+Proxy+Servers>http://www.cincomsmalltalk.com/CincomSmalltalkWiki/Public+Repository+and+Proxy+Servers
>
>HTH,
>Steve
>
>
>----------
>From: [hidden email] on behalf of Jim Harsh
>Sent: Wed 17/11/2010 19:01
>To: Wallen, David
>Cc: [hidden email]
>Subject: Re: [vwnc] public store access
>
>
>
>
>Yes, I tried in a vanilla image and it failed, different error
>message but seam to implicate the firewall.
>
>Thanks,
>Jim
>
>
>At 09:36 AM 11/17/2010, Wallen, David wrote:
> >Have you tried Runar's script in a vanilla image (nothing loaded)?
> >If so, maybe it's a firewall issue.
> >
> >- Dave
> >
> > > -----Original Message-----
> > > From: [hidden email]
> [<mailto:[hidden email]>mailto:[hidden email]] On
> >Behalf
> > > Of Jim Harsh
> > > Sent: Wednesday, November 17, 2010 6:07 AM
> > > To: Runar Jordahl
> > > Cc: [hidden email]
> > > Subject: Re: [vwnc] public store access
> > >
> > >
> > >
> > > Thanks Runar, but I get the same error message, it has a name this
> >time
> > > though.
> > >
> > > Unable to connect to "Public Store Repository" because of the
> >following
> > > error:
> > > BlockClosure [] in Signal>>newException
> > >
> > > Jim
> > >
> > >
> > > At 06:28 AM 11/17/2010, Runar Jordahl wrote:
> > > >Below is a script that configures a connection to the Public Store
> > > >Database using a base VisualWorks 7.7.1 (commercial) image. Simply
> > > >copy the script to a workspace, and "do it".
> > > >
> > > >Runar
> > > >
> > > >
> > > >
> > > >Compiler evaluate:
> > > >'Parcel loadParcelByName: ''StoreForPostgreSQL''.
> > > >
> > > >Store.StoreDevelopmentSystem reconnectAction: #reconnect.
> > > >
> > > >Store.RepositoryManager addRepository: (Store.ConnectionProfile new
> > > >         name: ''Public Store Repository'';
> > > >         driverClassName: #PostgreSQLEXDIConnection;
> > > >         environment:
> >''store.cincomsmalltalk.com:5432_store_public'';
> > > >         userName: ''guest'';
> > > >         password: ''guest'';
> > > >         tableOwner: ''BERN'';
> > > >         yourself).
> > > >
> > > >Store.DbRegistry connectTo: (Store.RepositoryManager repositories
> > > >detect: [:each | each name = ''Public Store Repository'']).'
> > >
> > > _______________________________________________
> > > vwnc mailing list
> > > [hidden email]
> > >
> <http://lists.cs.uiuc.edu/mailman/listinfo/vwnc>http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>
>_______________________________________________
>vwnc mailing list
>[hidden email]
><http://lists.cs.uiuc.edu/mailman/listinfo/vwnc>http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: public store access

Niall Ross
Dear Jim,
    just FYI, the very latest 7.8 dev build includes a fix for a
situation that was causing classes, not instances, of errors to be
provided in PostgreSQL, with loss of error message information.  I think
you were seeing an example.  With the connection you might have seen
'Unable to connect to Peer' or something possibly not much more helpful
but recognisable as an error message.

          Yours faithfully
             Niall Ross

>Thanks Steve. I connected this morning using port 22.
>
>
>
>
>At 04:06 PM 11/17/2010, Steven Kelly wrote:
>  
>
>>Try replacing 5432 with 80 or 22
>>(from:
>><http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page>http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page)
>>
>>Alternatively, open a hole in your firewall for port 5432:
>><http://www.cincomsmalltalk.com/CincomSmalltalkWiki/Public+Repository+and+Proxy+Servers>http://www.cincomsmalltalk.com/CincomSmalltalkWiki/Public+Repository+and+Proxy+Servers
>>
>>HTH,
>>Steve
>>
>>
>>----------
>>From: [hidden email] on behalf of Jim Harsh
>>Sent: Wed 17/11/2010 19:01
>>To: Wallen, David
>>Cc: [hidden email]
>>Subject: Re: [vwnc] public store access
>>
>>
>>
>>
>>Yes, I tried in a vanilla image and it failed, different error
>>message but seam to implicate the firewall.
>>
>>Thanks,
>>Jim
>>
>>
>>At 09:36 AM 11/17/2010, Wallen, David wrote:
>>    
>>
>>>Have you tried Runar's script in a vanilla image (nothing loaded)?
>>>If so, maybe it's a firewall issue.
>>>
>>>- Dave
>>>
>>>      
>>>
>>>>-----Original Message-----
>>>>From: [hidden email]
>>>>        
>>>>
>>[<mailto:[hidden email]>mailto:[hidden email]] On
>>    
>>
>>>Behalf
>>>      
>>>
>>>>Of Jim Harsh
>>>>Sent: Wednesday, November 17, 2010 6:07 AM
>>>>To: Runar Jordahl
>>>>Cc: [hidden email]
>>>>Subject: Re: [vwnc] public store access
>>>>
>>>>
>>>>
>>>>Thanks Runar, but I get the same error message, it has a name this
>>>>        
>>>>
>>>time
>>>      
>>>
>>>>though.
>>>>
>>>>Unable to connect to "Public Store Repository" because of the
>>>>        
>>>>
>>>following
>>>      
>>>
>>>>error:
>>>>BlockClosure [] in Signal>>newException
>>>>
>>>>Jim
>>>>
>>>>
>>>>At 06:28 AM 11/17/2010, Runar Jordahl wrote:
>>>>        
>>>>
>>>>>Below is a script that configures a connection to the Public Store
>>>>>Database using a base VisualWorks 7.7.1 (commercial) image. Simply
>>>>>copy the script to a workspace, and "do it".
>>>>>
>>>>>Runar
>>>>>
>>>>>
>>>>>
>>>>>Compiler evaluate:
>>>>>'Parcel loadParcelByName: ''StoreForPostgreSQL''.
>>>>>
>>>>>Store.StoreDevelopmentSystem reconnectAction: #reconnect.
>>>>>
>>>>>Store.RepositoryManager addRepository: (Store.ConnectionProfile new
>>>>>        name: ''Public Store Repository'';
>>>>>        driverClassName: #PostgreSQLEXDIConnection;
>>>>>        environment:
>>>>>          
>>>>>
>>>''store.cincomsmalltalk.com:5432_store_public'';
>>>      
>>>
>>>>>        userName: ''guest'';
>>>>>        password: ''guest'';
>>>>>        tableOwner: ''BERN'';
>>>>>        yourself).
>>>>>
>>>>>Store.DbRegistry connectTo: (Store.RepositoryManager repositories
>>>>>detect: [:each | each name = ''Public Store Repository'']).'
>>>>>          
>>>>>
>>>>_______________________________________________
>>>>vwnc mailing list
>>>>[hidden email]
>>>>
>>>>        
>>>>
>><http://lists.cs.uiuc.edu/mailman/listinfo/vwnc>http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>>
>>_______________________________________________
>>vwnc mailing list
>>[hidden email]
>><http://lists.cs.uiuc.edu/mailman/listinfo/vwnc>http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>>    
>>
>
>_______________________________________________
>vwnc mailing list
>[hidden email]
>http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>
>
>  
>


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc