473,396 Members | 1,864 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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: npATadhdataDOTcom

Oct 6 '08 #1
10 4501
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**********@newsgroup.nospamwrote in message
news:ei**************@TK2MSFTNGP02.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: npATadhdataDOTcom
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: npATadhdataDOTcom

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

--

AG
Email: npATadhdataDOTcom
"bruce barker" <br*********@discussions.microsoft.comwrote in message
news:DE**********************************@microsof t.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: npATadhdataDOTcom


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

--

AG
Email: npATadhdataDOTcom
"Hillbilly" <so******@somewhere.comwrote in message
news:ua**************@TK2MSFTNGP04.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**********@newsgroup.nospamwrote in message
news:ei**************@TK2MSFTNGP02.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: npATadhdataDOTcom

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****@microsoft.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**********@newsgroup.nospam>
From: "AG" <NO**********@newsgroup.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: npATadhdataDOTcom

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: npATadhdataDOTcom
""Steven Cheng"" <st*****@online.microsoft.comwrote in message
news:zm**************@TK2MSFTNGHUB02.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****@microsoft.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**********@newsgroup.nospam>
From: "AG" <NO**********@newsgroup.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: npATadhdataDOTcom


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****@microsoft.com.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Reply-To: "AG" <NO**********@newsgroup.nospam>
From: "AG" <NO**********@newsgroup.nospam>
References: <ei**************@TK2MSFTNGP02.phx.gbl>
<zm**************@TK2MSFTNGHUB02.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: npATadhdataDOTcom
""Steven Cheng"" <st*****@online.microsoft.comwrote in message
news:bU****************@TK2MSFTNGHUB02.phx.gbl...
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****@microsoft.com.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>>Reply-To: "AG" <NO**********@newsgroup.nospam>
From: "AG" <NO**********@newsgroup.nospam>
References: <ei**************@TK2MSFTNGP02.phx.gbl>
<zm**************@TK2MSFTNGHUB02.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****@microsoft.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**********@newsgroup.nospam>
From: "AG" <NO**********@newsgroup.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: npATadhdataDOTcom
""Steven Cheng"" <st*****@online.microsoft.comwrote in message
news:bU****************@TK2MSFTNGHUB02.phx.gbl. ..
>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
"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: npATadhdataDOTcom
Take a look at our MetaDraw control and also our Web Signature control

http://www.bennet-tec.com/btProducts/MetaDraw/
http://www.bennet-tec.com/btProducts/WebSignature/
Both of these ActiveX controls can be used in a web page to capture a
signature. MetaDraw is generally more flexible with more functionality,
but Web Signature is simpler and also operates over Pocket PC's ( MetaDraw
can only be used on desktop, laptop and tablet PCs )

As you are looking to save the complete image of the consent form with the
signature and you are working on a tablet PC I think MetaDraw will be the
better choice for you - you can put the entire consent form in MetaDraw and
fill in check boxes and allow the user to sign. The result can then be saved
as a single image in a variety of image formats ( a vector format such as
WMF or EMF will probably be most compact, but you can also save to bmp, gif,
jpg, or png ).


* * Please include a copy of this message with any reply on this topic

-----

Jeff Bennett
Jeff AT Bennet-Tec DOT Com
* Bennet-Tec Information Systems, Inc
* 50 Jericho Tpk, Jericho, NY 11753
* Phone 516 997 5596, Fax - 5597
* WWW.Bennet-Tec.Com

RELIABLE Component Software
and Custom Software Development Services

* Expert Systems * Text Processing
* Databases * Interactive Web Sites
* Diagramming, Drawing, Hotspot Graphics
* Data Input & Data Presentation Systems
* Desktop Windows, Tablets, Pocket PCs

TListâ„¢ / ALLTextâ„¢ / MetaDrawâ„¢ / Web Signatureâ„¢

-------------------------------------------------------------------------------

Nov 10 '08 #11

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

Similar topics

0
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...
12
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...
2
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...
0
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>...
1
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...
3
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...
0
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...
14
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
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"...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
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,...

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.