VB app to web service

Posted by brandon on Stack Overflow See other posts from Stack Overflow or by brandon
Published on 2009-10-26T03:22:41Z Indexed on 2010/05/13 0:04 UTC
Read the original article Hit count: 178

Filed under:
|

I know very little about web service but I assumed it would be the solution I was looking for. Basically I made an application in VB that I want to be ubiquitous for a lack of a better word. I need it to receive requests from multiple users and respond all at once. I was told "technically if you write a webservice you can provide as many results back to users as are connected."

Maybe there is another solution for me that will give me the results I want.

Here is an example of what I'm trying to do.

Lets say I make an application in VB that does math.

I now make a website. My website allows for a person to input 1 + 1 they click submit and my website then connects to my VB application running on my server listening for a request. It accepts the request from my website, and then it solves the math problem and returns the answer back to the website "1 + 1 = 2"

That is only an example of the type of thing I need. My problem is that I can't have multiple people visiting my website all connecting to that same application running on my server so somehow I need the application to be where it can be accessed by multiple users. I was told a web service would be the answer but if there is another solution I'd like to know.

If the only solution is a web service, then how can I manage to either convert the VB app to a web service? Can I have to convert the app to asp.net or some other language? Is there an easier option?

© Stack Overflow or respective owner

Related posts about web

Related posts about service