cannot find the module error

  • Thread starter Thread starter Mullin Yu
  • Start date Start date
M

Mullin Yu

my web services is reference a vb6 com dll, and if it's registered at the
local machine, the web service is working.

but, if i put the dll to a z: which is mapping to a network driver and
registered that dll and then add reference to the web service. i got the
error "cannot find the module" error.

any ideas?

thanks!
 
Hi Mullin,

Try putting the dll into either the web application ot its bin
directory or load the dll into the GAC using gacutil -i mycom.dll on
the server. You can also resolve this by creating a deployment project
and being sure to include the supporting dll as part of the content
required for the web service.

Also make sure the vb6 com has all the supporting libraries on the
server. Perhaps start the web service (if installation is not a
problem) then connect to the remote machine/application and debug it
-- using VS.NET!

~~~~~~~~~~~~~
Tommie Carter
www.premiertechnology.com
 
Back
Top