Maybe these files help you:

Config file for wscompile to generate server:

wscompile.config.xml


  | 
  | <?xml version="1.0" encoding="UTF-8"?> 
  | 
  | <configuration 
  | 
  | xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config";> 
  | 
  | <!-- <service> or <wsdl> or <modelfile> -->
  | 
  | <service name="OMBrowserWebService" 
  | 
  |     targetNamespace="http://com.irisel.oms.ws"; 
  |     typeNamespace="http://com.irisel.oms.ws/types"; 
  |     packageName="com.irisel.oms.ws">        
  |     
  |     <interface 
  |             name="com.irisel.oms.ws.OMBrowserEndpoint"
  |     /> 
  | 
  | </service> 
  | 
  | 
  | </configuration> 
  | 
  | 

Webservices.xml

<?xml version="1.0" encoding="UTF-8"?>
  | <webservices xmlns="http://java.sun.com/xml/ns/j2ee";
  |     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  |     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://www.ibm.com/webservices/xsd/j2ee_webservice_1.1.xsd";>
  |     <webservice-description>
  |             <webservice-description-name>
  |                     OMBrowserWebService
  |             </webservice-description-name>
  |             <wsdl-file>META-INF/wsdl/OMBrowserWebService.wsdl</wsdl-file>
  |             <jaxrpc-mapping-file>
  |                     META-INF/jaxrpc-mapping.xml
  |             </jaxrpc-mapping-file>
  |             <port-component>
  |                     
<port-component-name>OMBrowserEndpointPort</port-component-name>
  |                     <wsdl-port>OMBrowserEndpointPort</wsdl-port>
  |                     <service-endpoint-interface>
  |                             com.irisel.oms.ws.OMBrowserEndpoint
  |                     </service-endpoint-interface>
  |                     <service-impl-bean>
  |                             <ejb-link>OMGenEJB</ejb-link>
  |                     </service-impl-bean>
  |             </port-component>
  |     </webservice-description>
  | </webservices>

JBoss.xml

<?xml version="1.0" encoding="UTF-8"?>
  | <!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 3.0//EN" 
"http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd";>
  | 
  | <jboss>
  | 
  |    <enterprise-beans>
  | 
  |      <!--
  |        To add beans that you have deployment descriptor info for, add
  |        a file to your XDoclet merge directory called jboss-beans.xml that 
contains
  |        the <session></session>, <entity></entity> and 
<message-driven></message-driven>
  |        markup for those beans.
  |      -->
  | 
  |       <session>
  |          <ejb-name>OMGenEJB</ejb-name>
  |          <jndi-name>ejb/OMGenEJB</jndi-name>
  | 
  |       </session>
  |       <session>
  |          <ejb-name>OMBrowserEJB</ejb-name>
  |          <jndi-name>ejb/OMBrowserEJB</jndi-name>
  | 
  |       </session>
  | 
  |     <!--
  |       write a merge file jboss-webservices.ent for webservice-description 
  |     -->
  | 
  |    </enterprise-beans>
  | 
  |    <resource-managers>
  |    </resource-managers>
  | 
  |   <!--
  |     | for container settings, you can merge in jboss-container.xml
  |     | this can contain <invoker-proxy-bindings/> and 
<container-configurations/>
  |   -->
  | 
  | </jboss>
  | 



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934046#3934046

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934046


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to