have you encounterd an error as "The test form is only available for requests from the local machine" on web your services.
If so, simply open the web config file and add the following, you will be able to access the test form outside of the localhost:
<configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
that's it!!!! ;-)
<configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
that's it!!!! ;-)