This is the first time I've used a webservice for anything so the question may be a little basic. Anyhow, I have a webservice that acts as a proxy to our vendors site. It simplifies the "screen scrape" that we would usually have to do. The webservice function looks like this:
namespace foo { public class MyService : WebService { [WebMethod] public string UploadFile(System.IO.FileStream fileToUpload) { return _obj.Upload(fileToUpload); } } }
The client throws an error when you try to give it the FileStream that the method asks for. In compilation somewhere, the webservice changed the type of the parameter from System.IO.FileStream to foo.FileStream. Does anyone have any ideas as to how I did this to myself?
Thanks in advance!