473,805 Members | 1,978 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web App With Signature

AG
I need to create a ASP.NET (3.5) web app where the client machine will be a
tablet pc.
The app will have a patient consent form that the patient would sign using
the stylus.
I would need to save the complete image of the signed form with signature,
for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om

Oct 6 '08 #1
10 4540
I was involved in this type of project that went nowhere. Gee, the customer
didn't realize he would have to pay me to write software for him %-) I did a
lot of research and after weaning out the many so-called digital signature
"solutions" I took the following vendor very seriously:
http://topazsystems.com/


"AG" <NO**********@n ewsgroup.nospam wrote in message
news:ei******** ******@TK2MSFTN GP02.phx.gbl...
>I need to create a ASP.NET (3.5) web app where the client machine will be a
tablet pc.
The app will have a patient consent form that the patient would sign using
the stylus.
I would need to save the complete image of the signed form with signature,
for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om
Oct 6 '08 #2
while this can be written in javascript, you'd need a modern browser like
safari with canvas support to do a good job. I'd look at either a flash or
silverlight solution.

-- bruce (sqlwork.com)
"AG" wrote:
I need to create a ASP.NET (3.5) web app where the client machine will be a
tablet pc.
The app will have a patient consent form that the patient would sign using
the stylus.
I would need to save the complete image of the signed form with signature,
for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om

Oct 6 '08 #3
AG
Thanks Bruce.
What about an activeX control? The app would not be for general public use
anyway.

--

AG
Email: npATadhdataDOTc om
"bruce barker" <br*********@di scussions.micro soft.comwrote in message
news:DE******** *************** ***********@mic rosoft.com...
while this can be written in javascript, you'd need a modern browser like
safari with canvas support to do a good job. I'd look at either a flash or
silverlight solution.

-- bruce (sqlwork.com)
"AG" wrote:
>I need to create a ASP.NET (3.5) web app where the client machine will be
a
tablet pc.
The app will have a patient consent form that the patient would sign
using
the stylus.
I would need to save the complete image of the signed form with
signature,
for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om


Oct 7 '08 #4
AG
Thanks. I don't know if their products will fit, but they do have some good
info.

--

AG
Email: npATadhdataDOTc om
"Hillbilly" <so******@somew here.comwrote in message
news:ua******** ******@TK2MSFTN GP04.phx.gbl...
>I was involved in this type of project that went nowhere. Gee, the customer
didn't realize he would have to pay me to write software for him %-) I did
a lot of research and after weaning out the many so-called digital
signature "solutions" I took the following vendor very seriously:
http://topazsystems.com/


"AG" <NO**********@n ewsgroup.nospam wrote in message
news:ei******** ******@TK2MSFTN GP02.phx.gbl...
>>I need to create a ASP.NET (3.5) web app where the client machine will be
a tablet pc.
The app will have a patient consent form that the patient would sign
using the stylus.
I would need to save the complete image of the signed form with
signature, for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om

Oct 7 '08 #5
Hi AG,

Regarding on your application scenario, I think what approach to use depend
on how is the digital sigining key(certificate ) retrieved, is it a
certificate at client or on server( a single cert)?

If all the forms will be signed with the same server-side certi key, I
think you can just create a server-side GDI+ component which will always
accept the given parameters(from the submit form fields) and compose an
Image (render it out in browser if necessary).

If the certifcate is at client-side, I'm afraid it would be necessary to
use some rich client approach such as ACTIVEX control. ActiveX control is
very common for such scenario which will require browser application to
retrieve protect resource on client(such as file system or certificate
store...).

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/...tance&ln=en-us.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>Reply-To: "AG" <NO**********@n ewsgroup.nospam >
From: "AG" <NO**********@n ewsgroup.nospam >
Subject: Web App With Signature
Date: Mon, 6 Oct 2008 08:36:05 -0400
>
I need to create a ASP.NET (3.5) web app where the client machine will be
a
>tablet pc.
The app will have a patient consent form that the patient would sign using
the stylus.
I would need to save the complete image of the signed form with signature,
for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om

Oct 7 '08 #6
AG
Steven,

Maybe I am missing something, but I don't see where I would need a digital
signing cert.
The app would run under https, so a server cert will be necessary.
The 'signing' is to be done using a stylus. The idea is to replace paper
forms.
Instead of a paper form, a patient would be handed a tablet pc with the
'form' on screen in a browser.
Patient would fill out the info and actually sign using a stylus.
I need a way to capture the signature on the web form and validate that it
is not left empty.
Although I am open to suggestion, I thought that the best way to insure
nothing changes after signing, would be to somehow create an image of the
completed form with signature and store that, in addition to storing the
form data in a database.
Since the app is not for general public use, requiring an ACTEVEX is
acceptable.
The main question is how to go about collecting and validating the
signature?

--

AG
Email: npATadhdataDOTc om
""Steven Cheng"" <st*****@online .microsoft.comw rote in message
news:zm******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Hi AG,

Regarding on your application scenario, I think what approach to use
depend
on how is the digital sigining key(certificate ) retrieved, is it a
certificate at client or on server( a single cert)?

If all the forms will be signed with the same server-side certi key, I
think you can just create a server-side GDI+ component which will always
accept the given parameters(from the submit form fields) and compose an
Image (render it out in browser if necessary).

If the certifcate is at client-side, I'm afraid it would be necessary to
use some rich client approach such as ACTIVEX control. ActiveX control is
very common for such scenario which will require browser application to
retrieve protect resource on client(such as file system or certificate
store...).

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/...tance&ln=en-us.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
>>Reply-To: "AG" <NO**********@n ewsgroup.nospam >
From: "AG" <NO**********@n ewsgroup.nospam >
Subject: Web App With Signature
Date: Mon, 6 Oct 2008 08:36:05 -0400
>>
I need to create a ASP.NET (3.5) web app where the client machine will be
a
>>tablet pc.
The app will have a patient consent form that the patient would sign using
the stylus.
I would need to save the complete image of the signed form with signature,
for future reference.

Any suggestions on how to accomplish this would be appreciated.

--

AG
Email: npATadhdataDOTc om


Oct 7 '08 #7
Thanks for your reply AG,

Seems I missed the "stylus" part. I agree with you that cert if not
necessary if the signature is just to capture a image version of thet form
the user fill in browser. And I do think ActiveX is the reasonable
approach here.

As you said that "you need a way to capture the signature on the web form",
I think one approach is let the activeX control do the following task:

1. You can put the form in the activeX control(instead of the web html
page) , then the activex control can use some windows print API(print
message) to capture the screen of the activex control window.

2. If you do not put the form in ActiveX control, but leave it in html page
markup. You may need to capture the screen of the entire browser window.

#How To Copy the Screen or Active Window to the Clipboard from Visual Basic
http://support.microsoft.com/kb/240653

For the validation part, I'm not sure whether the stylus generated
signature has some particular format that can be validated? Otherwise,
image format data is really quite difficult to validate.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Reply-To: "AG" <NO**********@n ewsgroup.nospam >
From: "AG" <NO**********@n ewsgroup.nospam >
References: <ei************ **@TK2MSFTNGP02 .phx.gbl>
<zm************ **@TK2MSFTNGHUB 02.phx.gbl>
>Subject: Re: Web App With Signature
Date: Tue, 7 Oct 2008 08:30:27 -0400
>
Steven,

Maybe I am missing something, but I don't see where I would need a digital
signing cert.
The app would run under https, so a server cert will be necessary.
The 'signing' is to be done using a stylus. The idea is to replace paper
forms.
Instead of a paper form, a patient would be handed a tablet pc with the
'form' on screen in a browser.
Patient would fill out the info and actually sign using a stylus.
I need a way to capture the signature on the web form and validate that it
is not left empty.
Although I am open to suggestion, I thought that the best way to insure
nothing changes after signing, would be to somehow create an image of the
completed form with signature and store that, in addition to storing the
form data in a database.
Since the app is not for general public use, requiring an ACTEVEX is
acceptable.
The main question is how to go about collecting and validating the
signature?

--

AG
Oct 8 '08 #8
AG
Thanks Steven,

Would questions regarding the details of the ActiveX, would be better posted
in a windowsforms group?
--

AG
Email: npATadhdataDOTc om
""Steven Cheng"" <st*****@online .microsoft.comw rote in message
news:bU******** ********@TK2MSF TNGHUB02.phx.gb l...
Thanks for your reply AG,

Seems I missed the "stylus" part. I agree with you that cert if not
necessary if the signature is just to capture a image version of thet form
the user fill in browser. And I do think ActiveX is the reasonable
approach here.

As you said that "you need a way to capture the signature on the web
form",
I think one approach is let the activeX control do the following task:

1. You can put the form in the activeX control(instead of the web html
page) , then the activex control can use some windows print API(print
message) to capture the screen of the activex control window.

2. If you do not put the form in ActiveX control, but leave it in html
page
markup. You may need to capture the screen of the entire browser window.

#How To Copy the Screen or Active Window to the Clipboard from Visual
Basic
http://support.microsoft.com/kb/240653

For the validation part, I'm not sure whether the stylus generated
signature has some particular format that can be validated? Otherwise,
image format data is really quite difficult to validate.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>>Reply-To: "AG" <NO**********@n ewsgroup.nospam >
From: "AG" <NO**********@n ewsgroup.nospam >
References: <ei************ **@TK2MSFTNGP02 .phx.gbl>
<zm************ **@TK2MSFTNGHUB 02.phx.gbl>
>>Subject: Re: Web App With Signature
Date: Tue, 7 Oct 2008 08:30:27 -0400
>>
Steven,

Maybe I am missing something, but I don't see where I would need a digital
signing cert.
The app would run under https, so a server cert will be necessary.
The 'signing' is to be done using a stylus. The idea is to replace paper
forms.
Instead of a paper form, a patient would be handed a tablet pc with the
'form' on screen in a browser.
Patient would fill out the info and actually sign using a stylus.
I need a way to capture the signature on the web form and validate that it
is not left empty.
Although I am open to suggestion, I thought that the best way to insure
nothing changes after signing, would be to somehow create an image of the
completed form with signature and store that, in addition to storing the
form data in a database.
Since the app is not for general public use, requiring an ACTEVEX is
acceptable.
The main question is how to go about collecting and validating the
signature?

--

AG

Oct 8 '08 #9
Thanks for your reply AG,

Yes, if you have some further question about graphics or ActiveX UI
programming, I suggest you post in some winform(for .NET) or windows GDI
newsgroup(for unmanaged API) programming.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Reply-To: "AG" <NO**********@n ewsgroup.nospam >
From: "AG" <NO**********@n ewsgroup.nospam >
Subject: Re: Web App With Signature
Date: Wed, 8 Oct 2008 08:11:56 -0400
>
Thanks Steven,

Would questions regarding the details of the ActiveX, would be better
posted
>in a windowsforms group?
--

AG
Email: npATadhdataDOTc om
""Steven Cheng"" <st*****@online .microsoft.comw rote in message
news:bU******* *********@TK2MS FTNGHUB02.phx.g bl...
>Thanks for your reply AG,

Seems I missed the "stylus" part. I agree with you that cert if not
necessary if the signature is just to capture a image version of thet
form
>the user fill in browser. And I do think ActiveX is the reasonable
approach here.

As you said that "you need a way to capture the signature on the web
form",
I think one approach is let the activeX control do the following task:

1. You can put the form in the activeX control(instead of the web html
page) , then the activex control can use some windows print API(print
message) to capture the screen of the activex control window.

2. If you do not put the form in ActiveX control, but leave it in html
page
markup. You may need to capture the screen of the entire browser window.

#How To Copy the Screen or Active Window to the Clipboard from Visual
Basic
http://support.microsoft.com/kb/240653

For the validation part, I'm not sure whether the stylus generated
signature has some particular format that can be validated? Otherwise,
image format data is really quite difficult to validate.

Sincerely,

Oct 9 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1784
by: Geir S Eidissen | last post by:
Task: Removing the Signature element from an enveloped-signature xml file. The signed xml file is like this (SP=space, LF=line feed (ascii 10)), signature contents is not shown here <doc>LF SPSP<data>this is the data</data>LF SPSP<Signature>... SPSP</Signature>LF </doc>LF
12
10703
by: Kim | last post by:
I have a .NET service sending mails using CDOEX. These mails I need to sign. I got a tip that I should use CAPICOM. That worked fine sending a mail with signature. BUT the problem is that I have to type the password for my certificate every time my program signs a mail :o( My program is a windows service running on a server so typing passwords is
2
10312
by: S. Baumann | last post by:
Hello, I use a code very similar to that found in the MSDN sample attached to the class XmlDsigEnvelopedSignatureTransform (code attached below). The code works fine and produces somethink like <Signature xmlns="http://www.w3.org/2000/09/xmldsig#"> <SignedInfo> <CanonicalizationMethod
0
1528
by: David Mediavilla | last post by:
I am trying to check a SOAP signature with WSE 1.0 SP1, but with a certain transform I only get an "Unknown tranform" exception. The SOAP signature is like this: <ds:Signature> <ds:SignedInfo> <ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/> <ds:SignatureMethod
1
6162
by: JJBW | last post by:
Hi I am creating some aspx files in Visual Studio 2003 for a Danish web site. The page is encoded as UTF-8 - However, when I save the the aspx file as "UTF-8 without signature" the Danish characters Å Æ Ø are not displayed correctly, when I choose to save the file as "UTF-8 with signature" the characters are displayed correctly.
3
7227
by: DJTN | last post by:
I'm getting the following error when I try to compile my setup project in VS 2002. I have re-installed the .net framework 1.1 and it didnt solve the problem. WARNING: Unable to find dependency 'mscorlib' (Signature='B77A5C561934E089' Version='1.0.5000.0') of assembly 'System.dll' WARNING: Unable to find dependency 'mscorlib' (Signature='B77A5C561934E089' Version='1.0.5000.0') of assembly 'System.Windows.Forms.dll' WARNING: Unable to...
0
2596
by: Geagleeye | last post by:
Hi everyone. I have some vba code to generate a pdf document through word, and add also digital signature. My problem is : how can i change the way the signature layout, it always show the same standard signature image look. I have tryed to change my signature field whit my own logo and so on in acrobat, and named it as signtaure 2, but how can i use that
14
4631
by: =?Utf-8?B?QUEyZTcyRQ==?= | last post by:
Am I correct in thinking that the <signatureof a function is its <syntax> i.e. the arguments and the order in which they are specified when calling the function?
0
1204
by: vituperio | last post by:
In a xml signature I have .... ... <Transform Algorithm="http://www.w3.org/2002/06/xmldsig-filter2"> <XPath Filter="intersect" xmlns="http://www.w3.org/2002/06/xmldsig-filter2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"> here()/ancestor::dsig:Signature/../../form1//. | here()/ancestor::dsig:Signature/../../form1//@* | here()/ancestor::dsig:Signature/../../form1//namespace::*</XPath>
0
9596
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10607
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10364
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10104
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9182
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7645
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6875
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5541
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3843
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.