Hi, I am using Tomcat to run webservice on Azure platform. I use JSF and standard beans. Since I need to consume SOAP service I decided to use Axis. I started with adding Maven dependencies to pom.xml:

        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-kernel</artifactId>
            <version>1.6.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-adb</artifactId>
            <version>1.6.2</version>
        </dependency>

I need above dependencies to compile my class generated using WSDL2JAVA from Axis. Unfortunately after I include generated class and Maven dependencies I run into problems. I get exceptions if I try to connect to my webservice (I don't even touch SOAP now, just using simple JSF pages which worked before including Axis dependencies):

java.lang.IllegalArgumentException: Null InputStream is not a valid argu

com.ctc.wstx.stax.WstxInputFactory.createSR(WstxInputFactory.java:614)
        
com.ctc.wstx.stax.WstxInputFactory.createXMLStreamReader(WstxInputFactory.java:317)

ment

I don't include full stack beacause it's quite large.

Question is: does Axis install anything in it's default configuration which can 
interfere with other mechanisms (class finding, injection, servlets etc.)?


--
Clockwork Bits Software Marcin Wieczorek
http://clockwork-bits.pl/
REGON: 100800499, NIP: 7281735575
Łódź 93-363, ul. Osobliwa 6


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@axis.apache.org
For additional commands, e-mail: java-user-h...@axis.apache.org

Reply via email to