Hi!
I'm pretty sure it's a configuration problem, so plz double-check what URLs are generated for the chart images. It's easy to test if a URL is correct, you just drop it into your browser and you should the image, that's it.
Plz note that you can configure the URLs generated by Kosmos-server, by setting a property for the webdav bean in kosmos-services-servlet.xml:
| <!-- WebDAV static content store -->
| <bean id="webdavStaticContentStore" class="hu.midori.kosmos.server.store.WebdavStaticContentStore">
| <property name="webdavUrl" value="http://localhost:8080/slide/files"/><!-- Both HTTP and HTTPS protocol can be used here. -->
| <property name="webdavUser" value=""/>
| <property name="webdavPassword" value=""/>
| <!--
| This URL will be used as base URL for the generated images.
| If you don't specify anything here, the value of "webdavUrl"
| will be used. Uncomment this, if you want to override that.
|
| <property name="clientUrl" value="http://myserver/my-webdav/kosmos-images"/>
| -->
| </bean>
|
HTH.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956357#3956357
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956357
|