New features request for version 7.1 of VintaSoftTwain.NET

Questions, comments and suggestions concerning VintaSoft Twain .NET SDK.

Moderator: Alex

Post Reply
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

New features request for version 7.1 of VintaSoftTwain.NET

Post by Alex »

The following features are being considered for inclusion in version 7.1 of VintaSoftTwain.NET SDK:
  • Ability to access the file system of TWAIN device
  • Multi streaming (Single Document Multiple Images) support
  • WPF support
  • Ability to access raw data of acquired image
If you have some idea or suggestion, please write it here.
Almatrodi
Posts: 12
Joined: Wed Jan 07, 2009 4:23 am

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by Almatrodi »

Dear Alex

I suggest a method to save all images at once.

Regards
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by Alex »

Hello,

Thank you for suggestion, we will add ability to save all images of collection at once in next version of SDK.

Best regards, Alexander
dmitri_blinov
Posts: 5
Joined: Wed Jun 30, 2010 8:54 am

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by dmitri_blinov »

We would like to see the support for SSL client authentication while uploading images via HTTPS.
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by Alex »

Hello Dmitri,
We would like to see the support for SSL client authentication while uploading images via HTTPS.
SDK allows to upload acquired images to HTTP/HTTPS servers. What do you mean? Please explain.

Best regards, Alexander
dmitri_blinov
Posts: 5
Joined: Wed Jun 30, 2010 8:54 am

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by dmitri_blinov »

Alexander,

It is not uncommon for SSL servers to require, for security reasons, some sort of authorization of its clients to permit requests.
If SSL server is configured to use SSL client authentication, this means, during SSL negotiation, client must provide server with some X509
certificate in order to prove its own identity. Without such a certificate the following exception is thrown "Could not create SSL/TLS secure channel".

Technically, the following code snippet can illustrate how this may be achieved in client code, I found this on some site, so this is not my code,
and it can contain errors, just in case.

HttpWebRequest httprq = (HttpWebRequest)HttpWebRequest.Create(uri);
string certificateName = "SoapProxy2";
X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection certificates = store.Certificates.Find(X509FindType.FindBySubjectName, certificateName, true);
X509Certificate certificate = certificates[0];
httprq.ClientCertificates.Add(certificate);
httprq.Method = "POST";
httprq.ContentType = "text/xml; charset=utf-8";
httprq.ContentLength = 0;
HttpWebResponse httprp = (HttpWebResponse)httprq.GetResponse();

It would be great to expose some properties for HttpUpload component so that one can set store name, certificate name etc
for uploading images.

Best regards,
Dmitri

Alex wrote:Hello Dmitri,
We would like to see the support for SSL client authentication while uploading images via HTTPS.
SDK allows to upload acquired images to HTTP/HTTPS servers. What do you mean? Please explain.

Best regards, Alexander
bharate.umesh
Posts: 20
Joined: Thu Dec 31, 2009 1:27 pm

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by bharate.umesh »

Hello Alexey,

Is this current version support wireless or remote scanner?

Thanks,
Umesh
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by Alex »

Hello Umesh,
Is this current version support wireless or remote scanner?
TWAIN specification describes work between application and TWAIN device (scanner).
You need to have TWAIN driver that can work with wireless/remote/network scanner if you want to work with such scanner.

Best regards, Alexander
lazyhog
Posts: 1
Joined: Wed Dec 29, 2010 3:47 am

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by lazyhog »

Hi Alex,

Great job on VintaSoftTwain so far, Looking forward to WPF support.

Requests for V7.1:

1. Digital Stamp or Watermark, Just something simple to allow text to be stamped on the saved pages.
2. PDF Password, Allows a PDF password to be set when saving.

Cheers
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: New features request for version 7.1 of VintaSoftTwain.NET

Post by Alex »

Hello,
Great job on VintaSoftTwain so far, Looking forward to WPF support.
Thank you for good words about our work.
1. Digital Stamp or Watermark, Just something simple to allow text to be stamped on the saved pages.
Please use VintaSoftImaging.NET SDK + VintaSoftAnnotation.NET Plug-in if you want to annotate images acquired from scanner.
2. PDF Password, Allows a PDF password to be set when saving.
We will add this feature in VintaSoftPDF.NET Plug-in.

Best regards, Alexander
Post Reply