You can look at this webservicebeans.xml that is configured for WebLogic.
The following is an example of a webservicebeans.xml file:
<WebServices>
<Beans>
<Bean BeanName="TheBeans"
BeanPackage="com.sterlingcommerce.jaxws.the.webservices" >
<Apis>
<Api Name="login" ExposedName="theLogin" />
<Api Name="getLocaleList" ExposedName="theGetLocaleList" />
</Apis>
</Bean>
<Bean BeanName="OtherBeans"
BeanPackage="com.sterlingcommerce.jaxws.other.webservices" >
<Apis>
<Api Name="getLocaleList" ExposedName="otherGetLocaleList" />
</Apis>
<Services>
<Service AnnotateClassNames="true" Name="testWS" ExposedName="testWS" />
<Service Name="testWS2" ExposedName="testWS2" />
</Services>
</Bean>
</Beans>
</WebServices>