PC Review


Reply
 
 
=?Utf-8?B?Sm9uYXRoYW4gRXJuc3Q=?=
Guest
Posts: n/a
 
      29th Jun 2005
I have a webpage that is hosted on the XP Embedded machine using IIS. This
webpage uses an ASP page to access an external device. I am currently using
IIS version 5.1 and ASP V1.1.4322. When I attempt to call the ASP page I
receive the error below. It seems that the ORV.dll file cannot find the
rubylink.dll file. I have checked all of the DLL files and they are all
registered and in the correct locations.

I have a second XP Embedded system with the same build and with the same
version of IIS and ASP running. On this system the webpage works just fine.
I have been unable to find any settings in this machine that vary from my new
XPe System. This webpage also works perfectly on a WIN2000 system every
time. It may also be of note that I am running my XPe under the system
directory of C:\winnt instead of c:\windows on both of my XPe systems.

ERROR:

The page cannot be displayed

There is a problem with the page you are trying to reach and it cannot be
displayed.

Please try the following:

· Click the Refresh button, or try again later.

· Open the localhost:8080 home page, and then look for links to the
information you want.

HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services

Technical Information (for support personnel)

· Error Type:
ORV (0x800A0030)
File not found: Rubylink.dll
/Rubyview.asp, line 35

· Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)

· Page:
GET /Rubyview.asp

· Time:
Monday, June 27, 2005, 8:37:33 PM

· More information:
Microsoft Support

 
Reply With Quote
 
 
 
 
Brad Combs
Guest
Posts: n/a
 
      29th Jun 2005
Jonathan,

Can we have line 35 and a few before and after (or anything that seems
pertinent)?

Brad

"Jonathan Ernst" <Jonathan (E-Mail Removed)> wrote in message
news:45FE563B-52FC-4B2D-9B3E-(E-Mail Removed)...
>I have a webpage that is hosted on the XP Embedded machine using IIS. This
> webpage uses an ASP page to access an external device. I am currently
> using
> IIS version 5.1 and ASP V1.1.4322. When I attempt to call the ASP page I
> receive the error below. It seems that the ORV.dll file cannot find the
> rubylink.dll file. I have checked all of the DLL files and they are all
> registered and in the correct locations.
>
> I have a second XP Embedded system with the same build and with the same
> version of IIS and ASP running. On this system the webpage works just
> fine.
> I have been unable to find any settings in this machine that vary from my
> new
> XPe System. This webpage also works perfectly on a WIN2000 system every
> time. It may also be of note that I am running my XPe under the system
> directory of C:\winnt instead of c:\windows on both of my XPe systems.
>
> ERROR:
>
> The page cannot be displayed
>
> There is a problem with the page you are trying to reach and it cannot be
> displayed.
>
> Please try the following:
>
> · Click the Refresh button, or try again later.
>
> · Open the localhost:8080 home page, and then look for links to the
> information you want.
>
> HTTP 500.100 - Internal Server Error - ASP error
> Internet Information Services
>
> Technical Information (for support personnel)
>
> · Error Type:
> ORV (0x800A0030)
> File not found: Rubylink.dll
> /Rubyview.asp, line 35
>
> · Browser Type:
> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
>
> · Page:
> GET /Rubyview.asp
>
> · Time:
> Monday, June 27, 2005, 8:37:33 PM
>
> · More information:
> Microsoft Support
>



 
Reply With Quote
 
=?Utf-8?B?Sm9uYXRoYW4gRXJuc3Q=?=
Guest
Posts: n/a
 
      29th Jun 2005
Here are lines 30-40 of the ASP page:

if request.querystring("Gemreg")="Gemreg" then

for intLoop = 1 to 5

set objDataset = Server.CreateObject("ORV.DatasetGet")

lngRetval = objDataset.GetDataset("Gemreg",intLoop)

if lngRetval > 1 and mid(lngRetval,2,3) <> "361" then

response.write "Error " & lngRetval & " occured, please try again."
exit for

elseif mid(lngRetval,2,3) <> "361" then

call BuildGemReg(intLoop)

end if

set objDataset = nothing

next

end if

"Brad Combs" wrote:

> Jonathan,
>
> Can we have line 35 and a few before and after (or anything that seems
> pertinent)?
>
> Brad
>
> "Jonathan Ernst" <Jonathan (E-Mail Removed)> wrote in message
> news:45FE563B-52FC-4B2D-9B3E-(E-Mail Removed)...
> >I have a webpage that is hosted on the XP Embedded machine using IIS. This
> > webpage uses an ASP page to access an external device. I am currently
> > using
> > IIS version 5.1 and ASP V1.1.4322. When I attempt to call the ASP page I
> > receive the error below. It seems that the ORV.dll file cannot find the
> > rubylink.dll file. I have checked all of the DLL files and they are all
> > registered and in the correct locations.
> >
> > I have a second XP Embedded system with the same build and with the same
> > version of IIS and ASP running. On this system the webpage works just
> > fine.
> > I have been unable to find any settings in this machine that vary from my
> > new
> > XPe System. This webpage also works perfectly on a WIN2000 system every
> > time. It may also be of note that I am running my XPe under the system
> > directory of C:\winnt instead of c:\windows on both of my XPe systems.
> >
> > ERROR:
> >
> > The page cannot be displayed
> >
> > There is a problem with the page you are trying to reach and it cannot be
> > displayed.
> >
> > Please try the following:
> >
> > · Click the Refresh button, or try again later.
> >
> > · Open the localhost:8080 home page, and then look for links to the
> > information you want.
> >
> > HTTP 500.100 - Internal Server Error - ASP error
> > Internet Information Services
> >
> > Technical Information (for support personnel)
> >
> > · Error Type:
> > ORV (0x800A0030)
> > File not found: Rubylink.dll
> > /Rubyview.asp, line 35
> >
> > · Browser Type:
> > Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
> >
> > · Page:
> > GET /Rubyview.asp
> >
> > · Time:
> > Monday, June 27, 2005, 8:37:33 PM
> >
> > · More information:
> > Microsoft Support
> >

>
>
>

 
Reply With Quote
 
=?Utf-8?B?Sm9uYXRoYW4gRXJuc3Q=?=
Guest
Posts: n/a
 
      29th Jun 2005
It may also be of note that this page also doesn't run on XP Pro. The fact
that it runs perfectly on 2000 and that it has worked on one XP embedded
machine makes me think it is a settings issue. I have check all of the files
and made sure that all users had full read/write privileges and this did not
fix the issue.

Does anyone know of a way to de-construct a XP embedded system? I have one
unit working perfectly but am unable to reproduce it. Comparing the registry
files hasn’t helped because there are to many entries that are different due
to the registration numbers and such.


"Jonathan Ernst" wrote:

> I have a webpage that is hosted on the XP Embedded machine using IIS. This
> webpage uses an ASP page to access an external device. I am currently using
> IIS version 5.1 and ASP V1.1.4322. When I attempt to call the ASP page I
> receive the error below. It seems that the ORV.dll file cannot find the
> rubylink.dll file. I have checked all of the DLL files and they are all
> registered and in the correct locations.
>
> I have a second XP Embedded system with the same build and with the same
> version of IIS and ASP running. On this system the webpage works just fine.
> I have been unable to find any settings in this machine that vary from my new
> XPe System. This webpage also works perfectly on a WIN2000 system every
> time. It may also be of note that I am running my XPe under the system
> directory of C:\winnt instead of c:\windows on both of my XPe systems.
>
> ERROR:
>
> The page cannot be displayed
>
> There is a problem with the page you are trying to reach and it cannot be
> displayed.
>
> Please try the following:
>
> · Click the Refresh button, or try again later.
>
> · Open the localhost:8080 home page, and then look for links to the
> information you want.
>
> HTTP 500.100 - Internal Server Error - ASP error
> Internet Information Services
>
> Technical Information (for support personnel)
>
> · Error Type:
> ORV (0x800A0030)
> File not found: Rubylink.dll
> /Rubyview.asp, line 35
>
> · Browser Type:
> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
>
> · Page:
> GET /Rubyview.asp
>
> · Time:
> Monday, June 27, 2005, 8:37:33 PM
>
> · More information:
> Microsoft Support
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Wireless issue? DNS issue? MS Update issue? WORLDe Windows XP General 1 14th Jan 2009 10:47 PM
Outlook 2007 issue on Windows Vista - Exchange connection issue NA Microsoft Outlook Installation 5 3rd Sep 2008 07:28 AM
Windows Vista mouse issue.. Possibly ease of use type issue? Malakie Windows Vista Hardware 0 10th Jul 2008 10:30 PM
[New Issue] Home Computer Magazine - Issue 06 - April 2005 Mel Freeware 5 5th May 2005 06:09 PM
Is my case a Network Issue or database optimization issue -- which one to assign more significance? Avi Microsoft Windows 2000 Networking 0 14th May 2004 05:17 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:19 AM.