I have a .net web service page called "Rep.asmx". There are 6 web service functions residing on this page:

1. Function PunchIn(byval sXML as string) as string
2. Function PunchOut(byval sXML as string) as string
3. Function BreakStart(byval sXML as string) as string

From a VB6 application I am doing an htto posting with the xml string to the web service.

I am having a problem figuring out how to attach the function name to the web service url.
Should it look like this:
For 1: http://localhost/repclock/repclock.asmx?PunchIn
For 2: http://localhost/repclock/repclock.asmx?PunchOut

Any help is greatly appreciated...