basically this is what's going on after researching this more.
If I try to use the type returned by a certain web service method anywhere in my test web project code such as in code-behind I get namespace conflicts because now the web project sees 2 different definitions for it. One as a proxy class in my web service reference namespace and then the original class definition in the referenced project where it's defined and its namespace
So how does one get past this? I've already tried to cast to the namespace where the class is originally defined but no luck, I keep getting errors saying it can't cast to that.
I tried putting a cast on the calls also but no luck.
Check out this video of me clicking to give you more details of code: http://www.elbalazo.net/Post/WebServiceProxyClassIssue.mp4 (be sure to press play..it doesn't automatically start if using quicktime to view this mp4)