Webclient W5100 shield works only on port 80? [SOLVED]

johnwasser:
Are you using Arduino 1.0? Are you using Files->Examples->Ethernet->WebClient?

Yes, that is the one I'm using - sorry if that was not clear.

johnwasser:
When you changed the IP address to the server on your local network did you also change the line:

  if (client.connect(server, 80)) {

to

  if (client.connect(server, 81)) {

That is what I did - first I tried the google example (outside ip, port 80) - then a server on port 80 on the host on the internal network and then on the same host on port 81 (internal ip, port 80 and then internal ip port 81). The first two combinations worked but the last one does not.

There is some serial logging - and it says connected after the "if (client.connect(server, 81))" line but when I look in the log of the webserver (the one on port 81) I don't see anything at all?

Thanks!
jhh