<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE webServices SYSTEM "http://java.sun.com/xml/ns/jax-rpc/ri/dd">

<webServices
    xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd"
    version="1.0"
    targetNamespaceBase="http://hello.org/wsdl"
    typeNamespaceBase="http://hello.org/types"
    urlPatternBase="/services">

    <endpoint
        name="date"
        displayName="Date Web Service"
        description="A simple date service"
        wsdl="/WEB-INF/date.wsdl"
        interface="test.DateServiceIF"
        implementation="test.DateServiceImpl"
	     model="/WEB-INF/date-model.xml.gz"
	     />
	     
	 <endpoint
        name="foo"
        displayName="Foo Web Service"
        description="A simple foo service"
        wsdl="/WEB-INF/foo.wsdl"
        interface="test.FooServiceIF"
        implementation="test.FooServiceImpl"
	     model="/WEB-INF/foo-model.xml.gz"
	     />
	

    <endpointMapping
        endpointName="date"
        urlPattern="/service/date"
        />
        
    <endpointMapping
        endpointName="foo"
        urlPattern="/service/foo"
        />

</webServices>