silverlight - PivotViewer unable to display collection - only shows link to cxml file -


i have been trying develop pivot viewer dynamic collection (from sample source code). environment iis 6, windows server 2003 , vs 2010. collection works fine vs2010, when publish service through vs2010, collection not load. main page shown link cxml file. have added 3 mime entries , clientaccesspolicy.xml copied vs. there missing in configuration?

use fiddler check traffic app, stuck, .cxml file, can find dzi , dsc files?

did add dzi , dzc mime types allowed?

you can see stackoverflow question learn how in iis 6:

how silverlight pivot server application run on iis 6?

aslo in case using jit sample code in pivotserver project there web.config file there httphandler configuration values meant used when running in vs only.

you should remove when you're deploying:

the visual studio development server uses these httphandler configuration values. run server under iis, comment these handlers iis use duplicate set of handlers in system.webserver section below.

<httphandlers>     <add path="*.cxml" verb="get" type="pivotserver.cxmlhandler"/>     <add path="*.dzc" verb="get" type="pivotserver.dzchandler"/>     <add path="*.dzi" verb="get" type="pivotserver.dzihandler"/>     <add path="*/dzi/*_files/*/*_*.jpg" verb="get" type="pivotserver.deepzoomimagehandler"/>     <add path="*_files/*/*_*.jpg" verb="get" type="pivotserver.imagetilehandler"/> </httphandlers> 

Comments

Post a Comment