473,386 Members | 1,752 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Another problem

Something which, again, works perfectly when I run in the VS.NET embeded
server but not on my webserver provider.
(I use the embeded server as, since a computer crash I only have XPHome and
I didn't bother buy the professional edition)

I have a (home made) dll named "WebUtils.dll" which contains a class named:

WebUtils.RoundCornerImageHandler : IHttpHandler

In my website (which has the WebUtils.dll in its Bin directory) I have
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>

Now that work perfectly in my dev environemnet, but I just tried to upgrade
and
http://www.thecookscompanion.com/LWU...White&corner=0

Is giving me an error 404 ?!?!?

Any ideas / tips on why could that be?!
--
I have taken a vow of poverty. If you want to really piss me off, send me
money.
Feb 7 '06 #1
5 1047
Hi Lloyd,

404 means "Not Found." This means that the web server cannot find the
document. Have you checked the path?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:uV**************@TK2MSFTNGP15.phx.gbl...
Something which, again, works perfectly when I run in the VS.NET embeded
server but not on my webserver provider.
(I use the embeded server as, since a computer crash I only have XPHome
and I didn't bother buy the professional edition)

I have a (home made) dll named "WebUtils.dll" which contains a class
named:

WebUtils.RoundCornerImageHandler : IHttpHandler

In my website (which has the WebUtils.dll in its Bin directory) I have
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>

Now that work perfectly in my dev environemnet, but I just tried to
upgrade and
http://www.thecookscompanion.com/LWU...White&corner=0

Is giving me an error 404 ?!?!?

Any ideas / tips on why could that be?!
--
I have taken a vow of poverty. If you want to really piss me off, send me
money.

Feb 7 '06 #2
Hi Kevin!

1. The DLL is there, it's even used in some other pages.
2. all the relevant path I gave them to you:
=== Web.config ===
<system.web>
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>
......
=== test url ===
http://www.thecookscompanion.com/LWU...White&corner=0
======
Any other idea why is it 404?

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eE*************@TK2MSFTNGP09.phx.gbl...
Hi Lloyd,

404 means "Not Found." This means that the web server cannot find the
document. Have you checked the path?

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:uV**************@TK2MSFTNGP15.phx.gbl...
Something which, again, works perfectly when I run in the VS.NET embeded
server but not on my webserver provider.
(I use the embeded server as, since a computer crash I only have XPHome
and I didn't bother buy the professional edition)

I have a (home made) dll named "WebUtils.dll" which contains a class
named:

WebUtils.RoundCornerImageHandler : IHttpHandler

In my website (which has the WebUtils.dll in its Bin directory) I have
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>

Now that work perfectly in my dev environemnet, but I just tried to
upgrade and
http://www.thecookscompanion.com/LWU...White&corner=0

Is giving me an error 404 ?!?!?

Any ideas / tips on why could that be?!
--
I have taken a vow of poverty. If you want to really piss me off, send me
money.


Feb 7 '06 #3
Did you configure the web server to use the ASP.Net process to process
requests for files with a ".dimg" extension?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi Kevin!

1. The DLL is there, it's even used in some other pages.
2. all the relevant path I gave them to you:
=== Web.config ===
<system.web>
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>
.....
=== test url ===
http://www.thecookscompanion.com/LWU...White&corner=0
======
Any other idea why is it 404?

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eE*************@TK2MSFTNGP09.phx.gbl...
Hi Lloyd,

404 means "Not Found." This means that the web server cannot find the
document. Have you checked the path?

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:uV**************@TK2MSFTNGP15.phx.gbl...
Something which, again, works perfectly when I run in the VS.NET embeded
server but not on my webserver provider.
(I use the embeded server as, since a computer crash I only have XPHome
and I didn't bother buy the professional edition)

I have a (home made) dll named "WebUtils.dll" which contains a class
named:

WebUtils.RoundCornerImageHandler : IHttpHandler

In my website (which has the WebUtils.dll in its Bin directory) I have
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>

Now that work perfectly in my dev environemnet, but I just tried to
upgrade and
http://www.thecookscompanion.com/LWU...White&corner=0

Is giving me an error 404 ?!?!?

Any ideas / tips on why could that be?!
--
I have taken a vow of poverty. If you want to really piss me off, send
me money.



Feb 7 '06 #4
err...
shouldn't the configuration in the Web.config be enough?
do you mean I cannot use generic handler without configuring IIS first?
unfortunately I don't think (I have to check) that you could configure this
IIS on the web control panel, that's a bummer....

anyway, "they fixed it" but I don't know what they did....

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Did you configure the web server to use the ASP.Net process to process
requests for files with a ".dimg" extension?

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi Kevin!

1. The DLL is there, it's even used in some other pages.
2. all the relevant path I gave them to you:
=== Web.config ===
<system.web>
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>
.....
=== test url ===
http://www.thecookscompanion.com/LWU...White&corner=0
======
Any other idea why is it 404?

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eE*************@TK2MSFTNGP09.phx.gbl...
Hi Lloyd,

404 means "Not Found." This means that the web server cannot find the
document. Have you checked the path?

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:uV**************@TK2MSFTNGP15.phx.gbl...
Something which, again, works perfectly when I run in the VS.NET
embeded server but not on my webserver provider.
(I use the embeded server as, since a computer crash I only have XPHome
and I didn't bother buy the professional edition)

I have a (home made) dll named "WebUtils.dll" which contains a class
named:

WebUtils.RoundCornerImageHandler : IHttpHandler

In my website (which has the WebUtils.dll in its Bin directory) I have
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>

Now that work perfectly in my dev environemnet, but I just tried to
upgrade and
http://www.thecookscompanion.com/LWU...White&corner=0

Is giving me an error 404 ?!?!?

Any ideas / tips on why could that be?!
--
I have taken a vow of poverty. If you want to really piss me off, send
me money.



Feb 8 '06 #5
Hi Lloyd,

Every web server has settings for pages that cannot be handled by simply
downloading, that is, pages that must be processed by an ISAPI. The web
server is always the entity that receives the request. If it is configured
to pass off requests for resources with a certain extension, it will pass
off the request to that ISAPI. The web.config only tells the ASP.Net worker
process what HttpHandler to use to process the request.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
err...
shouldn't the configuration in the Web.config be enough?
do you mean I cannot use generic handler without configuring IIS first?
unfortunately I don't think (I have to check) that you could configure
this IIS on the web control panel, that's a bummer....

anyway, "they fixed it" but I don't know what they did....

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Did you configure the web server to use the ASP.Net process to process
requests for files with a ".dimg" extension?

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi Kevin!

1. The DLL is there, it's even used in some other pages.
2. all the relevant path I gave them to you:
=== Web.config ===
<system.web>
<httpHandlers>
<add verb="GET" path="LWU.RoundCorner.dimg"
type="WebUtils.RoundCornerImageHandler, WebUtils"/>
</httpHandlers>
.....
=== test url ===
http://www.thecookscompanion.com/LWU...White&corner=0
======
Any other idea why is it 404?

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eE*************@TK2MSFTNGP09.phx.gbl...
Hi Lloyd,

404 means "Not Found." This means that the web server cannot find the
document. Have you checked the path?

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Lloyd Dupont" <net.galador@ld> wrote in message
news:uV**************@TK2MSFTNGP15.phx.gbl...
> Something which, again, works perfectly when I run in the VS.NET
> embeded server but not on my webserver provider.
> (I use the embeded server as, since a computer crash I only have
> XPHome and I didn't bother buy the professional edition)
>
> I have a (home made) dll named "WebUtils.dll" which contains a class
> named:
>
> WebUtils.RoundCornerImageHandler : IHttpHandler
>
> In my website (which has the WebUtils.dll in its Bin directory) I have
> <httpHandlers>
> <add verb="GET" path="LWU.RoundCorner.dimg"
> type="WebUtils.RoundCornerImageHandler, WebUtils"/>
> </httpHandlers>
>
> Now that work perfectly in my dev environemnet, but I just tried to
> upgrade and
> http://www.thecookscompanion.com/LWU...White&corner=0
>
> Is giving me an error 404 ?!?!?
>
> Any ideas / tips on why could that be?!
>
>
> --
> I have taken a vow of poverty. If you want to really piss me off, send
> me money.
>



Feb 8 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Chris | last post by:
Hi I have a scenario where I've created another AppDomain to dynamically load a DLL(s) into. In this newly loaded DLL I want to call a static method on a class. The problem arise is that I have...
4
by: Mountain Bikn' Guy | last post by:
I am having serious problems with the following IDE bug: Could not write to output file 'x.dll' -- 'The process cannot access the file because it is being used by another process. ' and BUG:...
188
by: christopher diggins | last post by:
I have posted a C# critique at http://www.heron-language.com/c-sharp-critique.html. To summarize I bring up the following issues : - unsafe code - attributes - garbage collection -...
10
by: Sorin Dolha [MCSD .NET] | last post by:
I would like to start a process from C# code as another user. The C# code is executed as the ASPNET user because it relies in a Web Page class, and I would like that the process will run as another...
3
by: qwerty | last post by:
I´m new to ASP.Net. My workmate has some experience with it. He claimed that in ASP.Net working with frames is much simpler than it was ASP. I asked explanation but he couldn't give me such. (a...
17
by: Bruno | last post by:
I have a feature that is hosted on a different domain from the primary one in a frame, and need to retain values in a cookie. example: A web page at one.com contains a frame which has a page...
17
by: Rabbit | last post by:
Hi, On my 1st page, i have a function which gets a new ID value and need to transfer to another immediately. which I want to get in 2nd page using Request.form("txtID"), but doesn't work, the...
5
by: felipevaldez | last post by:
how can I put an element below another element, that's not absolutely positioned? so I have a n element, called X, and next to that, an element Y X Y XXXXXX
3
by: drummond.ian | last post by:
Hello Everyone, This problem's been causing me a lot of trouble and I'm hoping somebody can help me out!! I have a dialog-based MFC application in visual studio 2003. I want to call a...
11
by: Jan | last post by:
Hi: Here's a problem I've had for a long time. The client is really running out of patience, and I have no answers. Access2003, front- and back-end. Single form with 4 subforms (each...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.