Hello,

     I just started playing with Magma, so it may be just me not knowing how to use it.  I have a server running in image A on my machine.  In image B on the same machine I have the following in a workspace:

mySession :=
(MagmaRemoteLocation
host: '10.215.90.59'
port: 51001) newSession.
mySession connectAs: 'elliot'.

myRoot := mySession root.

If I use '127.0.0.1' or 'localhost' as the host, then I get a timeout error when calling mySession>>connectAs:

It says 'ConnectionTimedOut: Cannot connect to 10.215.90.74:51001' (10.215.90.74 is an address that I've had at one time).  If I specifically use '10.215.90.59' as the host, then connectAs: works as normal, but then the following statement 'myRoot := mySession root.' fails with the 'ConnectionTimedOut: Cannot connect to 10.215.90.74:51001' error.

Has anyone seen this before?  What am I doing wrong?

Thanks in advance,
Elliot