I've just recently built a Silverlight application that communicates with a server via WCF. The data we communicate back and forth has been seamless and to be honest, quite easy to implement (w/ SL). Unfortunately, I need the ability to request this same information from the WCF similarly to that of an ASMX web service. Right now, I'm running the service locally (http://localhost/aps.svc) but I'm not able to "Invoke" any of the methods via a web browser (similar to a asmx web service). For example: http://FooBar/Service/servic.aspx?op=GetName would return a name. I need this ability, as our 3rd party software is limited to using web asmx services and I would like to use the WCF already built.
I'm fairly new to WCF and web services in general - so any help would be greatly appreciated!
-Tom