I've got 3 errors in my app level that say something like:

C:\Programming\DBFTPUpload_App\DBFTPUpload_App\ConsoleApplication1\DBFTPUpload.vb(52): Value of type 'ws.si.search.User' cannot be converted to 'ConsoleApplication1.ws.si.JobManager.User'.
The first line of code responsible for two of the errors is:
Dataset = m_wsJobManager.PolicySearch(GetUser(m_User), CreatePolicySearchRequest)

GetUser creates a temporary user, populating tmpUser (a private user object) with username, password, and network credentials. It then returns tmpUser.

The next error occurs in the call to CreateSearchRequest, a function of type SearchRequest that builds a search request. That request is then sent in the above line of code in order to fill a DataSet.

The final error is in the User object as I try to pass it to our web services layer. I get the same exact error for each of the above examples.

What am I doing wrong? I'm having a terrible time trying to figure it out.

Thanks a lot,
Mike