Skip to content

Instantly share code, notes, and snippets.

@dwcramer
Created September 18, 2012 17:50
Show Gist options
  • Save dwcramer/3744610 to your computer and use it in GitHub Desktop.
Save dwcramer/3744610 to your computer and use it in GitHub Desktop.
Recursion in wadl example
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://wadl.dev.java.net/2009/02"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<resources base="http://localhost:9999/">
<resource type="#anyGet" path="{any}">
<param type="xs:string" style="template" name="any"/>
</resource>
</resources>
<resource_type id="anyGet">
<method name="GET"/>
<resource type="#anyGET" path="{any}">
<param type="xs:string" style="template" name="any"/>
</resource>
</resource_type>
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment