Setting Up Local OECGI (OpenInsight 32-Bit)
At 19 DEC 2007 12:03:27PM Paulo wrote:
I keep getting this error which tells me the engine is running but not sure what's causing this error?
OpenInsight – Server Error
Fatal error while processing request
Illegal method "READO" passed to the REGISTRY_METHOD procedure
I'm running XP-PRO with IIS5.1 and OI 8.03 and my OECGI registry has the following setup:
CreateFlags 1
DatabaseName EXAMPLES
ProcedureName RUN_OECGI_REQUEST
QueueName blank
ServerName blank
ShutdownSessions 1
UserName EXAMPLES
UserPassword blank
WorkingDirectory c:\revsoft\openinsight80
Any ideas?
Thanks
Paulo
At 19 DEC 2007 12:11PM S Mecklenberg wrote:
is this Paulo from PGE?
At 19 DEC 2007 01:22PM Sean FitzSimons wrote:
Paulo,
If you try running INET_TRACE from your browser do you receive the same results?
Sean
At 19 DEC 2007 01:25PM Paulo Mendes wrote:
INET_TRACE is what i'm running that is returning that error…
At 19 DEC 2007 01:26PM Paulo wrote:
Yes… how are you stacy?
At 19 DEC 2007 03:28PM S Mecklenberg wrote:
Hey Paulo - doing well, an yourself? are you running your IIS locally versus server? if have you setup your local workstation to accept the requests?
At 19 DEC 2007 03:30PM Mike Ruane wrote:
Paulo-
Per our phone conversation, other Inet_ routines seem to be working, just not the INET_TRACE. Inet_Trace attempts to do a read of the registry settings for the following:
regKey=HKEY_LOCAL_MACHINE\SOFTWARE\Revsoft\OECGI'
UserName = Registry_method('READO', RegKey:'\UserName')DatabaseName = Registry_method('READO', RegKey:'\DatabaseName')QueueName = Registry_method('READO', RegKey:'\QueueName')ServerName = Registry_method('READO', RegKey:'\ServerName')CreateFlags = Registry_method('READO', RegKey:'\CreateFlags')ShutDownSessions=Registry_method('READO', RegKey:'\ShutDownSessions')WorkingDir =Registry_method('READO', RegKey:'\WorkingDirectory')So, it's probably some sort of rights issue. Hopefully you can figure out what is is, or work around it.
Mike
At 19 DEC 2007 03:38PM Paulo wrote:
Mike,
Thanks for helping me determine that everything was working except for TRACE, next time I will start with something else :):)
If and when I figure out the registry rights issue, I will post the results here in case anyone comes accross this same problem.
Thanks
Paulo
At 19 DEC 2007 04:09PM Mike Ruane wrote:
As an aside, since INET_TRACE got a little complicated, here's a replacement routine. Just paste this code into a new stored procedure in SYSPROG, and run an INET_TEST_CONNECT from the browser.
Thanks-
Mike
function Inet_Test_Connect(Request)
*
*
* Product : OI
* Release : 8.1
*
* Name : Inet_Test_Connect
* Description: Generates the trace for HTTP request
*
* Parameters:
* Request in – HTTP request
* ret out – HTML script with a trace
*
* History (Date, Initials, Notes)
*
$insert inet_equates
declare function Serial, Registry_Method
html="
html ="
html ="
html = "
html = "
html = OpenInsight Inet_Test_Connect Response"
html = "
html = "
html ="
html = "
html = Congratulations!"
html = If you can read this, you have successfully connected to OpenInsight"
html = "
html ="
return html
At 19 DEC 2007 05:04PM Warren Auyong wrote:
Probably the local policy settings.