This is a migrated thread and some comments may be shown as answers.

using vwd2008, radchart not working after updating web.config file etc.

4 Answers 61 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
dude
Top achievements
Rank 1
dude asked on 19 Jul 2008, 12:11 AM
hi all,

inherited web project, given telerik bundle to work with.  everything works until using radchart.  i get this message:

"The Chart http handler is not registered. Please, manually add the following line to your Web.config httpHandlers section:
<add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2008.1.515.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />"


So i went and updated the web.config file where it told me to, but i get a blue underline on the word "add" in at the front of the tag <add....  .
I also get this runtime parser error:
"Parser Error Message: Unrecognized configuration section system.web/add."

Any suggestions?  Many thanks in advance. :)

4 Answers, 1 is accepted

Sort by
0
Ves
Telerik team
answered on 21 Jul 2008, 07:07 AM
Hello,

This line should be added to httpHandlers section of your web.config file. It should look like this:

<configuration> 
    ........ 
    <system.web> 
            ....... 
                <httpHandlers> 
                  ......... 
                      <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2008.1.515.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" /> 
            </httpHandlers> 


Hope this helps.

Sincerely,
Ves
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
dude
Top achievements
Rank 1
answered on 21 Jul 2008, 08:56 AM
er...no.  like i said, i updated the web.config file with the stated paste in your post and it didn't work.  any other suggestions?
0
Ves
Telerik team
answered on 21 Jul 2008, 11:00 AM
Hi,

This error message means that the <add path.....> tag is placed directly in <system.web> and not in the httpHandlers section, i.e. the file is structured like this:
<configuration>
    <system.web>
        <add path=........../>
        <httpHandlers>
        </httpHandlers>

And it should be like this:
<configuration>
    <system.web>
        <httpHandlers>
            <add path=........../>
        </httpHandlers>

Greetings,
Ves
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
dude
Top achievements
Rank 1
answered on 22 Jul 2008, 03:40 AM
ahhh.  that did the trick.  thank you for clarifying that.  i didn't notice that i was accidentally pasting the snippet right after the </httphandlers> tag.

many thanks.  its working like a champ now!

sincerely,
Daniel :)
Tags
Chart (Obsolete)
Asked by
dude
Top achievements
Rank 1
Answers by
Ves
Telerik team
dude
Top achievements
Rank 1
Share this question
or