Author | Topic: xBase 1.90 and WAA 1.82 | |
---|---|---|
ZMan | xBase 1.90 and WAA 1.82 on Wed, 29 Oct 2008 07:31:09 -0400 | |
James Loughner | Re: xBase 1.90 and WAA 1.82 on Wed, 29 Oct 2008 11:29:54 -0400 That won't work the exe and DLL must be of the same version. Jim ZMan wrote: > I have compiled an xBase DLL in 1.90 and trying to load this using WAA > 1.82, but it's not loading. This is what is showing in the log file: > >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>> [10/29/2008 07:29:18] SERVER STARTUP >>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> > [10/29/2008 07:29:18] ERR: unable to load package dll <C:\XPP_DLL\SOI> > [10/29/2008 07:29:18] ERR: no package dll available > [10/29/2008 07:29:18] *** WAA server processing shutdown sequence... > [10/29/2008 07:29:18] ERR: requester shutdown failed > [10/29/2008 07:29:18] ERR: thread-pool shutdown failed > [10/29/2008 07:29:18] *** shutting down package manager > [10/29/2008 07:29:18] *** WAA server shutdown has errors encountered! > <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< > <<< [10/29/2008 07:29:19] SERVER SHUTDOWN <<< > <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< > > What am I doing wrong. The PRG for the DLL has all the necessary > functions, this is it: > > #include "dbstruct.ch" > #include "dmlb.ch" > #include "common.ch" > > FUNCTION _Register( oPackage ) > oPackage:registerForm( "SAYHELLO" ) > RETURN .T. > > FUNCTION _Version() > RETURN "Version 1.0" > > FUNCTION _Copyright() > RETURN "Alaska Software, (c) 1998. All rights reserved." > > FUNCTION SayHello( oHTML, oContext ) > LOCAL cName := oHTML:getVar( "TheName" ) > LOCAL cINet := oContext:getRemoteAddr() > > IF Empty( cName ) > oHTML:message( "Error in SayHello()", "No name specified" ) > ELSE > oHTML:header() > oHTML:put( "<P>Hello " + cName + "! </P>" ) > oHTML:put( "<P>Your internet address is " + cINet + "</P>" ) > oHTML:footer() > ENDIF > RETURN .T. | |
ZMan | Re: xBase 1.90 and WAA 1.82 on Thu, 30 Oct 2008 04:03:21 -0400 Bummer. So is there a 1.90 version of WAA? "James Loughner" <jwrl@suddenlink.net> wrote in message news:38981311$392eaf0a$224@news.alaska-software.com... > That won't work the exe and DLL must be of the same version. > > Jim > > ZMan wrote: >> I have compiled an xBase DLL in 1.90 and trying to load this using WAA >> 1.82, but it's not loading. This is what is showing in the log file: >> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>> [10/29/2008 07:29:18] SERVER STARTUP >>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >> [10/29/2008 07:29:18] ERR: unable to load package dll <C:\XPP_DLL\SOI> >> [10/29/2008 07:29:18] ERR: no package dll available >> [10/29/2008 07:29:18] *** WAA server processing shutdown sequence... >> [10/29/2008 07:29:18] ERR: requester shutdown failed >> [10/29/2008 07:29:18] ERR: thread-pool shutdown failed >> [10/29/2008 07:29:18] *** shutting down package manager >> [10/29/2008 07:29:18] *** WAA server shutdown has errors encountered! >> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >> <<< [10/29/2008 07:29:19] SERVER SHUTDOWN <<< >> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >> >> What am I doing wrong. The PRG for the DLL has all the necessary >> functions, this is it: >> >> #include "dbstruct.ch" >> #include "dmlb.ch" >> #include "common.ch" >> >> FUNCTION _Register( oPackage ) >> oPackage:registerForm( "SAYHELLO" ) >> RETURN .T. >> >> FUNCTION _Version() >> RETURN "Version 1.0" >> >> FUNCTION _Copyright() >> RETURN "Alaska Software, (c) 1998. All rights reserved." >> >> FUNCTION SayHello( oHTML, oContext ) >> LOCAL cName := oHTML:getVar( "TheName" ) >> LOCAL cINet := oContext:getRemoteAddr() >> >> IF Empty( cName ) >> oHTML:message( "Error in SayHello()", "No name specified" ) >> ELSE >> oHTML:header() >> oHTML:put( "<P>Hello " + cName + "! </P>" ) >> oHTML:put( "<P>Your internet address is " + cINet + "</P>" ) >> oHTML:footer() >> ENDIF >> RETURN .T. | |
James Loughner | Re: xBase 1.90 and WAA 1.82 on Thu, 30 Oct 2008 10:31:32 -0400 Yes should be on the install disk Jim ZMan wrote: > Bummer. So is there a 1.90 version of WAA? > > > "James Loughner" <jwrl@suddenlink.net> wrote in message > news:38981311$392eaf0a$224@news.alaska-software.com... >> That won't work the exe and DLL must be of the same version. >> >> Jim >> >> ZMan wrote: >>> I have compiled an xBase DLL in 1.90 and trying to load this using WAA >>> 1.82, but it's not loading. This is what is showing in the log file: >>> >>>>>> [10/29/2008 07:29:18] SERVER STARTUP >>> >>> [10/29/2008 07:29:18] ERR: unable to load package dll <C:\XPP_DLL\SOI> >>> [10/29/2008 07:29:18] ERR: no package dll available >>> [10/29/2008 07:29:18] *** WAA server processing shutdown sequence... >>> [10/29/2008 07:29:18] ERR: requester shutdown failed >>> [10/29/2008 07:29:18] ERR: thread-pool shutdown failed >>> [10/29/2008 07:29:18] *** shutting down package manager >>> [10/29/2008 07:29:18] *** WAA server shutdown has errors encountered! >>> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>> <<< [10/29/2008 07:29:19] SERVER SHUTDOWN <<< >>> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>> >>> What am I doing wrong. The PRG for the DLL has all the necessary >>> functions, this is it: >>> >>> #include "dbstruct.ch" >>> #include "dmlb.ch" >>> #include "common.ch" >>> >>> FUNCTION _Register( oPackage ) >>> oPackage:registerForm( "SAYHELLO" ) >>> RETURN .T. >>> >>> FUNCTION _Version() >>> RETURN "Version 1.0" >>> >>> FUNCTION _Copyright() >>> RETURN "Alaska Software, (c) 1998. All rights reserved." >>> >>> FUNCTION SayHello( oHTML, oContext ) >>> LOCAL cName := oHTML:getVar( "TheName" ) >>> LOCAL cINet := oContext:getRemoteAddr() >>> >>> IF Empty( cName ) >>> oHTML:message( "Error in SayHello()", "No name specified" ) >>> ELSE >>> oHTML:header() >>> oHTML:put( "<P>Hello " + cName + "! </P>" ) >>> oHTML:put( "<P>Your internet address is " + cINet + "</P>" ) >>> oHTML:footer() >>> ENDIF >>> RETURN .T. > > | |
ZMan | Re: xBase 1.90 and WAA 1.82 on Fri, 05 Dec 2008 19:31:13 -0500 Duh, I did not think of that... And I have the install disks.. Thanks for clueing me in.... "James Loughner" <jwrl@suddenlink.net> wrote in message news:5149040c$5c3e48fe$1be1f@news.alaska-software.com... > Yes should be on the install disk > > Jim > > ZMan wrote: >> Bummer. So is there a 1.90 version of WAA? >> >> >> "James Loughner" <jwrl@suddenlink.net> wrote in message >> news:38981311$392eaf0a$224@news.alaska-software.com... >>> That won't work the exe and DLL must be of the same version. >>> >>> Jim >>> >>> ZMan wrote: >>>> I have compiled an xBase DLL in 1.90 and trying to load this using WAA >>>> 1.82, but it's not loading. This is what is showing in the log file: >>>> >>>>>>> [10/29/2008 07:29:18] SERVER STARTUP >>> >>>> [10/29/2008 07:29:18] ERR: unable to load package dll <C:\XPP_DLL\SOI> >>>> [10/29/2008 07:29:18] ERR: no package dll available >>>> [10/29/2008 07:29:18] *** WAA server processing shutdown sequence... >>>> [10/29/2008 07:29:18] ERR: requester shutdown failed >>>> [10/29/2008 07:29:18] ERR: thread-pool shutdown failed >>>> [10/29/2008 07:29:18] *** shutting down package manager >>>> [10/29/2008 07:29:18] *** WAA server shutdown has errors encountered! >>>> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>>> <<< [10/29/2008 07:29:19] SERVER SHUTDOWN <<< >>>> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>>> >>>> What am I doing wrong. The PRG for the DLL has all the necessary >>>> functions, this is it: >>>> >>>> #include "dbstruct.ch" >>>> #include "dmlb.ch" >>>> #include "common.ch" >>>> >>>> FUNCTION _Register( oPackage ) >>>> oPackage:registerForm( "SAYHELLO" ) >>>> RETURN .T. >>>> >>>> FUNCTION _Version() >>>> RETURN "Version 1.0" >>>> >>>> FUNCTION _Copyright() >>>> RETURN "Alaska Software, (c) 1998. All rights reserved." >>>> >>>> FUNCTION SayHello( oHTML, oContext ) >>>> LOCAL cName := oHTML:getVar( "TheName" ) >>>> LOCAL cINet := oContext:getRemoteAddr() >>>> >>>> IF Empty( cName ) >>>> oHTML:message( "Error in SayHello()", "No name specified" ) >>>> ELSE >>>> oHTML:header() >>>> oHTML:put( "<P>Hello " + cName + "! </P>" ) >>>> oHTML:put( "<P>Your internet address is " + cINet + "</P>" ) >>>> oHTML:footer() >>>> ENDIF >>>> RETURN .T. >> >> |