I've got a problem with ActiveX component on ASP page. When I try to show an .JP2 file I got an error message:
As I understand jp2 plugin is not functioningGflAx.GflAx.1 error '80004005'
Unknown format

ASP code is very simple
Dim oConvert
Set oConvert=Server.CreateObject( "GflAx.GflAx" )
with oConvert
.LoadBitmap( "C:\test.jp2" )
.SaveformatName = "jpeg"
response.contenttype = "image/jpeg"
response.binarywrite .SendBinary
end with
File C:\Program Files\GflSDK\GflAx\Lib\plugins\Xjp2.dll I've had to copy manually 'cose installation program GflAxSetup.exe did not cteate it.
Thank You in advance
