I have a VB.NET application partly built that produces an xml output (just a
file at present)
I have a .NET webserver and SQLserver 2000
I need to be able to send the xml to the webserver/database (some crunching
is needed before the data is stored)
The database (stored proc.) will reply with several small pieces of data
which need to be sent back to the client app.
I am thinking that all of this could be accomplished in one call to a
webservice.
I would prefer to stick with VB on the web server
So to sum:
Code needed to send the xml to the webserver (from the VB.NET app)
Code needed on the webserver to read that xml (maybe into a dataset to store
in a temporary table in the SQLserver for crunching with Tsql in a stored
procedure)
Code needed to orchestrate the reply
Any help you can give me will be very much appreciated or some hints on
direction and/or code examples.
Thanks
Andy