c++ - Updated DLL is not picked by Web service developed in VB.NET -


i have 2 small projects - c++ (written 10 years old. having dsp file. have upgraded vs2010 project). 1 vb.net web service calling c++ dll

i trying hardcode 1 of output parameters of method searchzip() see change in web service using modified dll.

inside some.cpp

searchzip(lpstr lpstrserver, lpstr lpstrstreet, lpstr lpstrmailstop, lpstr lpstrcity, lpstr lpstrstate, lpstr lpstrzipcode, lpstr lpstrcounty, lpstr lpstrfipscounty, lpstr lpstrrtnstring) 

and add modified dll web service. below existing code import dll. still picking old dll info.

inside web service vb file

<dllimport("some.dll")> _ private shared function searchzip(byval lpstrserver stringbuilder, _    byval lpstrstreet stringbuilder, _    byval lpstrmailstop stringbuilder, _    byval lpstrcity stringbuilder, _    byval lpstrstate stringbuilder, _    byval lpstrzipcode stringbuilder, _    byval lpstrcounty stringbuilder, _    byval lpstrfipscounty stringbuilder, _    byval lpstrresult stringbuilder) integer end function 

web service project has bin folder. inside bin folder, there some.dll, some.pdb , some.xml. please let me know how can see new dll change.

  1. try stopping , restarting web service.
  2. make sure there not older copy of dll anywhere on drive. if there is, it's possible 1 being used.
  3. make sure replacing dll newer version.

Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -