4 Replies Latest reply on Oct 28, 2004 9:02 AM by mrahin

    Problem deploying WS from samples.zip

    thomas.diesler

      Show me the message that your client sends to JBossWS. For that set

       <category name="org.apache.axis">
       <priority value="axis"/>
       </category>
      



        • 1. Re: migrate IIS to tomcat, then migrate the whole .net archi
          mrahin

          David,

          Tomcat is leading servlet/jsp container in the java industry. JBoss is a J2EE-1.4 compatible application server that includes tomcat in it's distribution. The Tomcat lead developer actually is a member of the JBoss core team.

          J2EE-1.4 compatibility could be crucial if your projects involves Web Services and other cutting edge technology. The JBoss APS does not have the largest market share yet, but with >5Mio downloads it is the fastes growing in the industry.

          From 10.000 feet I would suggest you send your people to a J2EE training to make sure they head of in the right direction. Ideally, if you are going JBoss this would be provided by JBoss core developers. We offer intro/admin/advanced trainings and provide development/production support at various levels.

          To give more qualified answers regrading your specific IIS based application, I would need to know more technical details.
          On this forum the JBoss community offers free technical support to people who have already opted for JBoss technology.

          Please contact JBoss Inc. to help you make your descission. They should be able to answer all your pre sales questions.




          • 2. Re: Problem deploying WS from samples.zip
            thomas.diesler

            Sorry, I meant

             <category name="org.apache.axis">
             <priority value="DEBUG"/>
             </category>
            


            • 3. Re: Problem deploying WS from samples.zip
              thomas.diesler

              The message the sample client sends is

              <soapenv:Envelope ...>
               <soapenv:Body>
               <ns1:echoCustomerArr xmlns:ns1="http://org.jboss.webservice/complexbean/types">
               <customerArray>
               <customerAddress>MiddleWare Avenue 1</customerAddress>
               <customerID>cuid_1</customerID>
               <customerName>JBoss Inc.</customerName>
               </customerArray>
               <customerArray>
               <customerAddress>SomeOther Street 11</customerAddress>
               <customerID>cuid_2</customerID>
               <customerName>Microsoft Corp.</customerName>
               </customerArray>
               </ns1:echoCustomerArr>
               </soapenv:Body>
              </soapenv:Envelope>
              


              test:
               [mkdir] Created dir: D:\projects\jboss-branch\jboss-4.0.x\webservice\output-samples\reports
               [junit] Running org.jboss.webservice.complexbean.ComplexBeanTestCase
               [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 4.922 sec
              


              • 4. Re: Problem deploying WS from samples.zip
                mrahin

                This is what client sends,

                <?xml version="1.0" encoding="UTF-8"?>
                
                <env:Envelope
                 xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
                 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                 mlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/"
                 xmlns:ns0="http://org.jboss.webservice/complexbean/types">
                 <env:Body>
                 <ns0:echoCustomerOrder>
                 <CustomerOrder_1>
                 <customerID>Acme Inc</customerID>
                 <orderID>01234</orderID>
                 </CustomerOrder_1>
                 </ns0:echoCustomerOrder>
                 </env:Body>
                </env:Envelope>


                Thanks for looking into this.

                - Mohammad