Using Microsoft.Ink in ASP.NET on Windows Server 2008

前端 未结 3 1626
暗喜
暗喜 2020-12-21 10:57

I\'m developing an ASP.NET web application. The site generates PDF files which contain images of handwritten content (signatures etc.). The bitmap images are created by some

相关标签:
3条回答
  • 2020-12-21 11:27

    Have you tried recompiling for x86 only? You may find that one of the components is 32-bit and is incompatible with 64-bit code. I had a similar experience recently when I upgraded to a new laptop with 64-bit Vista - a project that used to compile just fine wouldn't any more. It turned out that the Crystal Reports components in it were 32-bit only and would not work with 64-bit code. I changed from "Any CPU" as the active solution platform to "x86" and it worked fine. Unfortunately this means your app won't make full use of the 64-bit capabilities of the server, but it will work.

    0 讨论(0)
  • 2020-12-21 11:35

    I did a bunch of google posts and found this post in another group. I don't know if it will help you but here it is...

    In a Vista 64 bit environment, as Steve Goodwin says in his post, WISPTIS.EXE is not available in C:\Windows\SysWOW64\ but it is in c:\Windows\System32. SO I copied it, and darn it, it finally works.

    It's a long shot, but there are other comments in the thread with other ideas for various operating systems. but it won't be immediately clear why I chose to post something from this group since your error is not mentioned. here's how I got there.

    First, I googled the CLSID you posted above. I found that this brings up results indicating that the file the registry value is associated with is WISPTIS.EXE, so I googled that and came up with that fact that WISPTIS.exe is the Snipping tool... So a few more search pages brought me to this, which looks likely to me ONLY because I've had enough issues with my 64-bit Vista looking for files in the wrong place, that this seems like a likely culprit.

    Anyway, here's the link to the thread where I dug this answer out.

    http://adilhindistan.blogspot.com/2007/07/vista-snipping-tool-error.html

    0 讨论(0)
  • 2020-12-21 11:42

    It can be due to MS Office. CLSID {937C1A34-151D-4610-9CA6-A8CC9BDB5D83} is a INK CLSID which comes with MS Office. I was facing same issue but after installing MS Office my issue was fixed.

    0 讨论(0)
提交回复
热议问题