I'm having a weird issue problem unzipped server source and client source. Created a Solution with 
TaskVisionWS
TaskVision
Xpander
Chart
Microsoft.Application.Blocks

Compiled solution, and ran it.
IIS on Local Machine â€?nbsp;SQL on Local Machine
Runs fine it’s actually pretty good.

When I moved the DB to my Dedicated Sql Server (Windows Enterprise Server 2003) and move the Web Service to my Dedicated Web Server (Windows Standard Server 2003). I can invoke all web methods through IE and return a DS like it should.

Now I modify the App.Config to point to my web service and recompiled solution. When I try to log in I get an error remote server unavailable.

???HUMMMM 

Change the app.config back to localhost it works change to ws.XXXXXXXX.ca error. Change to 192.xxx.xxx.xxx error.

Now it cannot be the DB because I detached the DB from local machine copied the TaskVision..MDF and TaskVision.LDF to my main server and attached the db. Added MachineName\ASPNET read write permissions on the DB and manually added execute to the stored procedures.

So from the remote IIS server I invoke authservice.asmx and run GetAuthorizationTicket I use the username jdoe password welcome , I get back a huge hex string. Good. So now I use the string to invoke GetProjects from dataservice.asmx I get back a list of projects.
So that works fine.

I have also made sure the anonymous authentication is enabled on the virtual directory and root. Checked NTFS permissions, made sure there is no firewalls between me and the server.

What am I missing?