3 Replies Latest reply on Sep 22, 2005 1:56 PM by stevehnsn

    Developing Web services Using jboss-eclipse ide 3.0 and jbos

    amvzw

      1) I have developed a war file and deployed it on jboss-4.0.0Rc1 using the Jboss-eclipse-ide

      2) Then I have modified the file "C:\jboss-4.0.0RC1\server\default\deploy\jboss-ws4ee.sar\META-INF\axis-server-config.xml"

      by adding this element
      service name="Data" provider="java:RPC">
      parameter name="allowedMethods" value="*"/>
      parameter name="className" value="com.test.connect"/>

      <beanMapping languageSpecificType="java:com.test.connect"
      qname="ns1:connect" xmlns:ns1="urn:com.test"/>
      </service

      3) When I do this the webservice is up and running and I even can invoke the service from the client.
      I can see the wsdll for this service at "http://localhost:8080/ws4ee/services/Data?wsdl"

      4) Is this approach right?? Do I have to add the service element in axis-server-config.xml or can I add any
      other xml files inside the project itself,if yes under which directory

      5) can any body help me out in developing and deploying a web service using jboss-eclipse 3.0 ide and jboss-4.0.0RC1??
      what kind of descriptor files i add in my project and how do I package them?

      I am totally new to Jboss and webservices.