<?xml version="1.0" encoding="UTF-8"?>
<configuration
        xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
  <wsdl location="http://localhost:8080/hello-jaxrpc/hello?WSDL"
       packageName="hello"/>
  <service name="Hello"
        targetNamespace="http://Hello.org/wsdl"
        typeNamespace="http://Hello.org/types"
        packageName="hello">
        <interface name="HelloIF"
            servantName="HelloImpl"/>
        <typeMappingRegistry>
            <additionalTypes>
               <class name="TestBean"/>
            </additionalTypes>
        </typeMappingRegistry>
     </service>
</configuration>


