<?xml version="1.0" encoding="utf-8"?> 
<application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
             xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
             xsi:schemaLocation="http://research.sun.com/wadl/2006/l0/wadl.xsd" 
             xmlns="http://research.sun.com/wadl/2006/10"> 
  <resources base="http://localhost/"> 
    <resource path="movies"> 
      <method name="GET" id="#get"> 
        <request> 
          <param name="id" type="xsd:integer" style="query"/> 
         <param name="format" type="xsd:string" style="query" default="xml"
           fixed="xml"/> 
        </request> 
        
        <response> 
          <representation mediaType="application/xml" element="movie"/> 
        </response> 
      </method> 
    </resource> 
  </resources> 
</application> 


