schema « axis « Java Enterprise Q&A





1. Axis2 and customizing an XML schema in a bottom-up approach    stackoverflow.com

I am using axis2 to create a web service from a java class I created. Everything works well, but I'd like to be able to customize the wsdl and I ...

2. ERROR: Attempted to write schema for bad QName    stackoverflow.com

I'm trying to import a Java axis web service into C# to be used in my application; however, it is giving me the following error: Attempted to write schema for bad ...

3. Why is axistools-maven-plugin trying to access this relative schema location?    stackoverflow.com

We're doing a web service project with Axis 1.x and I'm having problems getting the Maven build to work. I do a

 mvn clean generate-sources
which triggers axistools-maven-plugin's wsdl2java goal. It eventually aborts ...

4. Dependencies against Axis2 generated clients against similar but slightly different schemas    stackoverflow.com

We operate with an external vendor via their exposed webservice interfaces. We use axis2 wsdl2java to generate a java client we can use to interact with. Our application has a mapping ...

5. document/literal webservice axis complex-type:Attempted to write schema for bad QName    coderanch.com

Hello, I have written the following webservice 1) server-side (Skeleton): PflanzenschutzNameServer.java package myPflanzenschutz; public class PflanzenschutzNameServer { public String[] getPflanzenschutzNamen() { String[] p = new String[3]; p[0]="erster Pflanzenschutz"; p[1]="zweiter Pflanzenschutz"; p[2]="dritter Pflanzenschutz"; return p; } } 2) einer wsdd-datei: (ausschnitt: das service-tag

6. how to get XML schema info as String using Axis client API    coderanch.com

1. my idea is when i connect dot.net webservice using Axis client api. i want to get XML info (Schema info as String). idea: ===== if i get reply message as String i will copy String as XML file local path and parse it. here is my client code: ========================= GetDataService service = (GetDataService) new GetDataServiceLocator(); System.out.println("Get Data Service Soap Address ...