
|
| Description | Installation | Interface | Downloads | Register | ASP example code | FAQ | Links | Terms and Conditions |
Version: 1.2 (updated 2004-09-09)
Licence: shareware
Price: EURO 50
Description:
Active Server Object for use in ASP scripts.
Provides methods and properties to retrieve and cache real time currency conversions.
Currency conversion results are retreived in the background from existing real-time currency conversion web services.
These results are cached for high speed retrieval.
An administration utility allows you to manage the configuration of this component by for example adding your own web services, changing the cache latency, etc.
You may test run a trial version for a period of 30 days.
After that, if you want to keep using the product, you must register it to recieve your unique unlocking registration key.
Installation:
First of all remove any previous version (if any) by calling regsvr32 with the /U parameter like this:
C:\>regsvr32 /U c:\Windows\System32\ssCurrConv.dll
Then delete that file.
Copy your new ssCurrConv.DLL to any location, but a good place is usually your Windows system directory or a directory specially assigned for 3rd party ASP components.
Register ssCurrConv.DLL in Windows with RegSvr32.EXE. You must supply the full path to the DLL in the parameter.
Example:C:\>regsvr32 c:\Windows\System32\ssCurrConv.dll
It may be necessary to register the component as a "COM+ component service" on some Windows systems.
|
||||||||||||||||||||||||||||||||||
Downloads:
Be sure to read the TERMS AND CONDITIONS before downloading anything here.
Download ssCurrConv ASP Component. You will also need a trial activation key, request this per email from "ssCurrConv at skybound dot nl"
Third party preconfigured web services
All preconfigured web services listed here have been sent by third parties and are provided "as is".
Skybound Software holds no responsibility for the misuse or abuse of these files.
web service .reg files:
http://www.oanda.com (updated 3 Jan 2005) |
http://finance.yahoo.com/currency (updated 3 Jan 2005) |
Register:
Send an email to "ssCurrConv at skybound dot nl" for details.
ASP example code:
The ASP code below demonstrates the usage of all the properties and methods of ssCurrConv.
<HTML>
<BODY>
<TITLE>ssCurrConv example code</TITLE>
<HR>
<%
Set Obj = Server.CreateObject("ssCurrConv.Converter")
response.write "The current log level is (0 = none, 3 = max): " & Obj.logLevel & "<br>"
response.write "Current log file (if empty then no logging occurs): " & Obj.logFileName & "<br>"
response.write "Cache will be refreshed after " & Obj.refreshAfter & " seconds.<br>"
response.write "You are using version " & Obj.version & " of ssCurrConv.Converter<br>"
response.write "The last time the conversion Euros to Dollars was done was "
& Obj.sampleAge("EUR","USD") & " seconds ago.<br>"
response.write "1 Euro = " & Obj.convert("EUR","USD") & " Dollar<br>"
response.write "Copyright: " & Obj.copyright & "<br>"
response.write "Registration info: " & Obj.registrationInfo & "<br>"
'The next line is important.
Set Obj = nothing
%>
<HR>
</BODY>
</HTML>
Links:
Regular expression basics: