I'm trying to create a windows service that connects to a WebService from a 3rd party and then parse the reply, repeating every 10 or 15 seconds. I successfully created an example service by following this MSDN tutorial and was perfectly able to install it and run it.
How do I connect to the WebService and how do I get the response? I've seen this post and managed to add a web reference and configure the WS, which seems the right way. I also found this thread but it wasn't that enlightning. My problem is what do I do now? The WS has several functions, how do I call the correct one? The functions needs three arguments (username, password and a queue id, all of which I have), how do I add them? Where will the result be stored and how can I access it so I can parse it?
Thanks so much in advance.