This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- How can we validate serial number by using webservice.
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 11, 2008
10:38 AM
How can we validate serial number by using webservice.
Hi
I am new to this forumn.
Actually we are creating setup project (.net c# .exe) using installshield11 professional edition.
In this installshield software I added customer information dialog and enabled the serial number textbox.
Here I need a help how to validate the serial number by using web service methods.
In this web service method I am validation with my database.
If it is available then i return true or false.
Can u please tell me how to validate serial number with webservice methods
Thanks advance.
I am new to this forumn.
Actually we are creating setup project (.net c# .exe) using installshield11 professional edition.
In this installshield software I added customer information dialog and enabled the serial number textbox.
Here I need a help how to validate the serial number by using web service methods.
In this web service method I am validation with my database.
If it is available then i return true or false.
Can u please tell me how to validate serial number with webservice methods
Thanks advance.
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 11, 2008
01:09 PM
In general, I would leave this sort of logic out of the installer. It's better to have a first-run pattern in the application that can handle license activation.
However, if you really want it in the installer, it's possible to write a webservice, deploy it to a production website, and then write client side .NET code to consume it and expose it as a Custom Action to the installer. It just depends on your C# skill level.
If you already have a dependency on .NET 2.0, I'd look into WiX's DTF. This will output a dll with an exported function that can be consumed as a Windows Installer custom action using practically any tool that authors MSI databases.
However, if you really want it in the installer, it's possible to write a webservice, deploy it to a production website, and then write client side .NET code to consume it and expose it as a Custom Action to the installer. It just depends on your C# skill level.
If you already have a dependency on .NET 2.0, I'd look into WiX's DTF. This will output a dll with an exported function that can be consumed as a Windows Installer custom action using practically any tool that authors MSI databases.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 11, 2008
11:16 PM
Thanks Painter,
Here I created a dll to validate serial number.
How can I include this function in IS11 Professional edition.
I am unable to find this one.
Here I created a dll to validate serial number.
How can I include this function in IS11 Professional edition.
I am unable to find this one.