I donβt know exactly what they are doing with RadChart
and ChartHttpHandler
, but I solved my problem by changing the requireSSL
attribute of the system.web > httpCookies
to false:
<system.web> <httpCookies httpOnlyCookies="true" requireSSL="false" lockItem="true" /> </system.web>
Recently, we just moved our application (which used SSL and worked perfectly with RadControls) to the new server and temporarily worked without an SSL certificate.
I followed all the previous instructions to solve this problem, including setting all the RadChart
EnableHandlerDetection
properties to false when using handlers placed only in the system.webServer > handlers
, and deleting any in system.web > httpHandlers
, without any luck. I either received an error message sent by the OP, or a message telling you to add a handler in the (old) section of system.web > httpHandlers
- no permutation of these settings helped.
source share