I have a web service that has worked fine in an older Visual Studio 2003 version.
I am trying to add it an an upgraded Visual Studio 2005 Web Applicaiton and having some issues.
I can add the Web Reference and see the Service, its Disco, WSDl and what it calls the reference.map and reference.vb file all within thefolder.
I can refer to the Web reference in code with no issues... i can also right click and do a "Go To Definition" and return to associated VB file associated to the Web Refernce.
Dim
<applicationSettings>
<CMST.My.MySettings>
<setting name="DecryptTokenService_DecryptToken" serializeAs="String">
<value>https://.../DecryptTokenService/DecryptToken.asmx</value>
</setting>
</CMST.My.MySettings>
</applicationSettings>
xService As New DecryptTokenService.DecryptToken
When I go to run and compile the Web Applicaiton I get the following error.
Compiler Error Message: BC30002: Type 'DecryptTokenService.DecryptToken' is not defined.is there some compile setting or something in the Web.config I am missing?
here is the web.configs section, please ignore the (...) in the URL, its removed intentionaly.
...
why did my web.config settings just bounce up into the midle of the page....
<<eyes rolling>>