TomcatExpert

Tomcat Silverlight

Ask the Experts : Silverlight XAP file

How do i run silverlight(xap file) app on apache tomcat?

asked by

question

A Silverlight XAP file is just a ZIP formatted archive of the Silverlight application - which being a client side technology doesn't need much in the way of server support.

You'll need to add the mime-type for .xap, which is "application/x-silverlight-app" to one of the web.xml files.  It's usually preferable to add it to your application deployment descriptor, in <yourapp>/WEB-INF/web.xml.

 <mime-mapping>
  <extension>xap</extension>
  <mime-type>application/x-silverlight-app</mime-type>
 </mime-mapping>

answered by pidster on August 12, 2010 10:31 AM

Read More

answer

0 comments   |  

0
Rating
  |  

Operations | Silverlight, Tomcat Applications, Tomcat Silverlight

Syndicate content