SurferTim:
Then you should be able to access your site using client code. Use the ip address of the server (ifastnet.com) to connect, then put a "Host: mydomain.com" parameter in the request header. Here is the wifi shield example I use:client.println("GET /mypage.php HTTP/1.1");
client.println("Host: mydomain.com");
client.println("Connection: close\r\n");
edit: Actually, if you have your domain name registered correctly, it should resolve to the ifastnet server anyway.
I'm new to all this internet code. This is what I have: ZG2100BasedWiFiShield/examples/WebClient/WebClient.pde at master · linksprite/ZG2100BasedWiFiShield · GitHub
Could you edit that code in someway to add your code in?