IIS/Windows Media Encoder question

I dont know if the problem is with IIS or with my remote software for Windows Media Encoder. Anyway when i connect to my computer to try and start the encoder whenever one of the ASP pages load up i get an object not found box then nothing works right.

Windows Software 5498 This topic was started by ,


data/avatar/default/avatar16.webp

1623 Posts
Location -
Joined 1999-12-06
I dont know if the problem is with IIS or with my remote software for Windows Media Encoder.
 
Anyway when i connect to my computer to try and start the encoder whenever one of the ASP pages load up i get an "object not found" box then nothing works right. Is this an error with the crappy MS default pages or is it something to do with IIS?

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar19.webp

3857 Posts
Location -
Joined 2000-03-29
It could be many things (something missing from the page, something you forgot to setup, etc). The easiest way to find out, is to setup your IIS logging to include "cs-uri-stem", which will then give you (hopefully) the actual line in your code that has the failure. This line might have something to do with you calling access from an object that wasn't even created yet, or something similar. Once setup, try restarting your site and then hitting those pages. Afterward, check the logs and you might see something like this:
 

Code:
#Fields: date time c-ip cs-username s-ip s-port cs-method cs-uri-stem cs-uri-query sc-status cs(User-Agent)2001-08-08 15:53:31 200.1.1.100 - 200.1.1.211 80 GET /default.asp |35|800a0411|Name_redefined 500 Mozilla/4.0+(compatible;+MSIE+5.5;+Windows+NT+5.0)
 
The number in bold is the line number in "default.asp" that should be referenced for debugging purposes.
 
HTH

data/avatar/default/avatar16.webp

1623 Posts
Location -
Joined 1999-12-06
OP
cool thx for the info, i will do that and see what it comes up with.