Hi,
Awaited “jboss-as-7.1.0.CR1” is released recently. So here we are going to test a WebService to receive an attachment from a WebService client using MTOM in JBoss AS7.1 CR1. In this sample we will see how to develop a Simple Apache CXF based webService with the help of Spring framework and then how to use MTOM (Message Transmission Optimization Mechanism).
Benifit of MTOM? The efficiency claims of MTOM only refers to the size of the messages sent across the wire. Since SOAP uses XML, any binary data in the SOAP message will have to be encoded as text. This is usually done using Base64 encoding which increases the size of the binary data by 33%. MTOM provides a way to send the binary data in its original binary form, avoiding any increase in size due to encoding it in text. MTOM does not address the efficiency of serializing or deserializing the messages. More details about MTOM can be found in the following link: http://en.wikipedia.org/wiki/Message_Transmission_Optimization_Mechanism
More informations about the CXF Spring Client can be found in the following link:
http://cxf.apache.org/docs/writing-a-service-with-spring.html
Highlights of Article
Point-1). In this example we are going to use “jboss-as-7.1.0.CR1” which can be downloaded from the following link: http://www.jboss.org/jbossas/downloads
Point-2). We will see how to use the “cxf-servlet.xml” file and where to place it.
Point-3). How to use the Spring “ApplicationContext” and “ClassPathXmlApplicationContext” to initialize the jaxws based beans for Service client.
Point-4). As the client is going to use spring features to access the web service so we will need to make sure that “spring-2.5.6.jar” jar is present in the client classpath. This jar can be downloaded from the following link:
http://repo1.maven.org/maven2/org/springframework/spring/2.5.6/spring-2.5.6.jar
Point-5). How to send binary attachments to WebService from a Client using MTOM. And How to configure MTOM in our Service and Client communication.
Point-6). Discuss some possible BUGs with the “org.jboss.ws.tools.ant.WSProvideTask” of JBoss AS7.
.
Developing Spring CXF WebService
Step1). Create a Directory somewhere in your filesystem like “/home/userone/Spring_MTOM_Service/” and then create “src” directory inside “/home/userone/Spring_MTOM_Service/”.
Step2). Create a class “Picture.java” using the standard XML binding annotations. And make sure that you define the @javax.xml.bind.annotation.XmlMimeType for your DataHandler. More information about DataHandler can be found in the following link:
http://docs.oracle.com/javase/6/docs/api/javax/activation/DataHandler.html#DataHandler(java.lang.Object, java.lang.String)
package ws; import javax.activation.DataHandler; import javax.xml.bind.annotation.XmlMimeType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlAttribute; @XmlType public class Picture { @XmlMimeType("application/octet-stream") protected DataHandler pictureDataHandler; protected String title; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public DataHandler getPictureDataHandler() { System.out.println("[Picture] picture = "+this); return pictureDataHandler; } /* public void setPictureDataHandler(DataHandler pictureData) { System.out.println("nsetPictureDataHandler() method invoked with pictureData = "+pictureData); System.out.println("[Picture] picture = "+this); System.out.println("[Picture] pictureData.getContentType() = "+pictureData.getContentType()); this.pictureDataHandler = pictureDataHandler; } */ }
( ( ( ( ( I S S U E – 1 ) ) ) ) ):
If you will notice in above code i have commented the “setPictureDataHandler” method because if i dont comment it then i get the following exception, Which looks like an issue with JBoss AS7.1 CR1 and i get the following exception while running org.jboss.ws.tools.ant.WSProvideTask ANT task:
[wsprovide] Caused by: org.apache.cxf.service.factory.ServiceConstructionException [wsprovide] at org.apache.cxf.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:292) [wsprovide] at org.apache.cxf.service.factory.AbstractServiceFactoryBean.initializeDataBindings(AbstractServiceFactoryBean.java:86) [wsprovide] at org.apache.cxf.service.factory.ReflectionServiceFactoryBean.buildServiceFromClass(ReflectionServiceFactoryBean.java:444) [wsprovide] at org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean.buildServiceFromClass(JaxWsServiceFactoryBean.java:682) [wsprovide] at org.apache.cxf.service.factory.ReflectionServiceFactoryBean.initializeServiceModel(ReflectionServiceFactoryBean.java:507) [wsprovide] at org.apache.cxf.service.factory.ReflectionServiceFactoryBean.create(ReflectionServiceFactoryBean.java:241) [wsprovide] at org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean.create(JaxWsServiceFactoryBean.java:202) [wsprovide] at org.apache.cxf.frontend.AbstractWSDLBasedEndpointFactory.createEndpoint(AbstractWSDLBasedEndpointFactory.java:101) [wsprovide] at org.apache.cxf.frontend.AbstractServiceFactory.createService(AbstractServiceFactory.java:78) [wsprovide] ... 26 more [wsprovide] Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions [wsprovide] Class has two properties of the same name "pictureDataHandler" [wsprovide] this problem is related to the following location: [wsprovide] at public javax.activation.DataHandler ws.Picture.getPictureDataHandler() [wsprovide] at ws.Picture [wsprovide] at private ws.Picture ws.jaxws_asm.UploadPictureAttachment.arg1 [wsprovide] at ws.jaxws_asm.UploadPictureAttachment [wsprovide] this problem is related to the following location: [wsprovide] at protected javax.activation.DataHandler ws.Picture.pictureDataHandler [wsprovide] at ws.Picture [wsprovide] at private ws.Picture ws.jaxws_asm.UploadPictureAttachment.arg1 [wsprovide] at ws.jaxws_asm.UploadPictureAttachment
( ( ( ( ( I S S U E – 2 ) ) ) ) ):
If i declare the @XmlMimeType(“application/octet-stream”) Just above the method “public DataHandler getPictureDataHandler()” then without having the “setPictureDataHandler” method the code compiles FINE using org.jboss.ws.tools.ant.WSProvideTask ANT task, but in the run time when inside the webservice when i call Picture.getPictureDataHandler() it returns NULL inside “SpringCXFMtom.java” service. Where as the setPictureDataHandler(dataHandler) works fine.
Step3). Now we will write the Web Service Endpoint Interface “SpringCXFMtomIntf.java” inside “/home/userone/Spring_MTOM_Service/src” as following:
package ws; import javax.jws.WebService; @WebService public interface SpringCXFMtomIntf { public String uploadPictureAttachment(String pictureName,ws.Picture picture); }
Step4). Now we will provide the WebService Implementation class “SpringCXFMtom.java” inside “/home/userone/Spring_MTOM_Service/src” as following:
package ws; import javax.jws.WebService; import javax.jws.WebMethod; import java.io.InputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import javax.activation.DataHandler; import java.io.IOException; import java.io.File; import javax.xml.ws.RequestWrapper; @WebService(name="SpringCXFMtomService", endpointInterface = "ws.SpringCXFMtomIntf",targetNamespace="http://ws/") public class SpringCXFMtom implements SpringCXFMtomIntf { @WebMethod(operationName="uploadPictureAttachment") @RequestWrapper(localName = "uploadPictureAttachment", targetNamespace = "http://ws/", className = "ws.UploadPictureAttachment") public String uploadPictureAttachment(String pictureName,ws.Picture picture) { String uploadLocation=System.getProperty("jboss.server.log.dir"); byte b[]; FileOutputStream fout=null; InputStream in = null; try{ System.out.println("[SpringCXFMtom] uploadPictureAttachment() invoked."); System.out.println("[SpringCXFMtom] picture = "+picture); picture.setTitle(pictureName); System.out.println("picture.getTitle() = "+picture.getTitle()); System.out.println("trying to get dataHandler"); DataHandler dataHandler=picture.getPictureDataHandler(); if(dataHandler!=null) { System.out.println("Got dataHandler: "+dataHandler); in = dataHandler.getInputStream(); if(in != null) { System.out.println("InputStream NOT NULL"); File file=new File(uploadLocation+"/"+pictureName); fout=new FileOutputStream(file); int n=0; while((n=in.read())!=-1) { fout.write(n); } fout.close(); in.close(); } else { System.out.println("InputStream IS NULL"); } } else { System.out.println("nnPlease check Why the dataHandler is NULL."); } } catch(Exception e) { System.out.println("nt Unable to Upload File on directory: "+uploadLocation+"/"+pictureName); e.printStackTrace(); if(in!=null) { try{ in.close(); }catch(Exception ee){ ee.printStackTrace(); } } if(fout!=null) { try{ fout.close(); }catch(Exception ee){ ee.printStackTrace(); } } } return "File Uploaded on JBoss AS7 Server Location: "+uploadLocation+"/"+pictureName; } }
Step4). We will write the “web.xml” inside “/home/userone/Spring_MTOM_Service/src” as following (practically this file is almost empty):
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> </web-app>
Step5). We will write the “cxf-servlet.xml” inside “/home/userone/Spring_MTOM_Service/src” to define “jaxws:endpoint” and it’s implementation class along with the MTOM enablement details as following:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"> <jaxws:endpoint id="mtomService" implementor="ws.SpringCXFMtom" address="http://localhost:8080/HelloWorld"> <jaxws:properties> <entry key="mtom-enabled" value="true"/> </jaxws:properties> </jaxws:endpoint> </beans>
NOTE: We need to make sure that this “cxf-servlet.xml” file is present inside the “WEB-INF” diectory of our service. NOTICE we enabled MTOM using the properties key=”mtom-enabled” value=”true”
Developing Spring CXF based Client
Step6). Now we will write the WebService Client “Test_CXF_Client.java” inside “/home/userone/Spring_MTOM_Service/src” using CXF standard code as following :
package client; import java.util.Date; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import java.io.*; import javax.activation.DataHandler; import javax.activation.FileDataSource; public class Test_CXF_Client { public static void main(String ar[]) throws Exception { ApplicationContext context = new ClassPathXmlApplicationContext(new String[] {"client-beans.xml"}); SpringCXFMtomIntf client = (SpringCXFMtomIntf) context.getBean("testClient"); System.out.println("ntGot Client: "+client); DataHandler dataHandler=null; String attachmentName=ar[0]; String attachmentFile=ar[1]; Picture picture=null; dataHandler=new DataHandler(new java.net.URL(ar[1])); System.out.println("nt dataHandler.getContentType() = "+dataHandler.getContentType()); picture=new Picture(); picture.setTitle(attachmentName); picture.setPictureDataHandler(dataHandler); String result=client.uploadPictureAttachment(attachmentName,picture); System.out.println("ntclient.uploadPictureAttachment(attachmentName,picture): "+result); } }
Step7). We will create the “client-beans.xml” XML file inside “/home/userone/Spring_MTOM_Service/src” directory as following. (This file name may be anything)
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"> <jaxws:client id="testClient" serviceClass="client.SpringCXFMtomIntf" address="http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom"> <jaxws:properties> <entry key="mtom-enabled" value="true"/> </jaxws:properties> </jaxws:client> </beans>
NOTE: The file name “client-beans.xml” may be anything but we need to make sure that this file is present in the client classpath.
NOTE: client-beans.xml file should be written only when you have run the wsconsume anttask to generate Client side artifacts for your WebService, Because the classes like “client.SpringCXFServiceIntf” will be generated at client side only after generating the client side artifacts.
NOTE: We enabled MTOM using the properties key=”mtom-enabled” value=”true”
Step8). As our weservice client is going to use the spring features to access the web service so we will need to make sure that the following JAR is present in the client classpath and place it inside “/home/userone/Spring_MTOM_Service/src” directory. This file can be downloaded from the following link:
http://repo1.maven.org/maven2/org/springframework/spring/2.5.6/spring-2.5.6.jar
Building, Deploying and Testing
Step9). As everything is done so we will write a ant build script in order to build/deploy/run and test the WebService and Basic Authentication, So create a file “build.xml” inside “/home/userone/Spring_MTOM_Service/” as following:
<project name="JBoss_Service" default="post-deploy"> <property name="jboss.home" value="/home/userone/boss-as-7.1.0.CR1" /> <property name="jboss.module.dir" value="${jboss.home}/modules" /> <property name="basedir" value="." /> <property name="war.tmp.name" value="Spring_CXF_MTOM_Service_Demo" /> <property name="war.name" value="Spring_CXF_MTOM_Service_Demo.war" /> <property name="src.dir" value="src" /> <property name="client.src.dir" value="${basedir}/clientSrc" /> <property name="output.dir" value="build" /> <property name="client.dir" value="${basedir}/clientStuff" /> <property name="client.jar.name" value="Spring_CXF_MTOM_Client.jar" /> <path id="jboss.classpath"> <fileset dir="${jboss.module.dir}"> <include name="**/*.jar"/> </fileset> </path> <path id="client.classpath"> <fileset dir="${jboss.module.dir}"> <include name="**/*.jar"/> </fileset> <fileset dir="${src.dir}"> <include name="**/spring-2.5.6.jar"/> <!-- This Jar is needed at client side and can be downloaded from the following link --> <!-- http://repo1.maven.org/maven2/org/springframework/spring/2.5.6/spring-2.5.6.jar --> </fileset> <fileset dir="${client.dir}"> <include name="*.jar"/> </fileset> </path> <taskdef name="wsprovide" classname="org.jboss.ws.tools.ant.WSProvideTask"> <classpath refid="jboss.classpath"/> </taskdef> <taskdef name="wsconsume" classname="org.jboss.ws.tools.ant.WSConsumeTask"> <classpath refid="jboss.classpath"/> </taskdef> <target name="init"> <delete dir="${output.dir}" /> <mkdir dir="${output.dir}" /> <mkdir dir="${output.dir}/${war.tmp.name}/META-INF"/> <mkdir dir="${output.dir}/${war.tmp.name}/WEB-INF/classes"/> <delete dir="${client.dir}" /> <mkdir dir="${client.dir}"/> <javac srcdir="${src.dir}" destdir="${output.dir}/${war.tmp.name}/WEB-INF/classes" includes="*.java" excludes="Test_CXF_Client.java"> <classpath> <pathelement location="${output.dir}/${war.tmp.name}/WEB-INF/classes"/> <path refid="jboss.classpath"/> </classpath> </javac> </target> <target name="build" depends="init"> <copy todir="${output.dir}/${war.tmp.name}/WEB-INF"> <fileset dir="${basedir}/src"> <include name="web.xml"/> <include name="cxf-servlet.xml"/> </fileset> </copy> <wsprovide fork="false" keep="true" destdir="${output.dir}/${war.tmp.name}/WEB-INF/classes" resourcedestdir="${output.dir}/${war.tmp.name}/WEB-INF/wsdl" sourcedestdir="${output.dir}" genwsdl="true" verbose="true" classpath="${output.dir}/${war.tmp.name}/WEB-INF/classes" sei="ws.SpringCXFMtom"> <classpath> <pathelement path="${output.dir}/${war.tmp.name}/WEB-INF/classes"/> </classpath> </wsprovide> <jar jarfile="${output.dir}/${war.name}" basedir="${output.dir}/${war.tmp.name}" compress="true" /> <delete dir="${output.dir}/${war.tmp.name}" /> </target> <target name="deploy" depends="build"> <echo message="******************* Deploying *********************" /> <echo message="********** ${war.name} to ${jboss.home}/standalone/deployments **********" /> <copy todir="${jboss.home}/standalone/deployments/"> <fileset dir="${output.dir}/"> <include name="${war.name}"/> </fileset> </copy> <echo message="******************* Deployed Successfully *********************" /> </target> <target name="post-deploy" depends="deploy"> <echo message="******************* NOTE *********************" /> <echo message="***** You should be able to access your WSDL using Browser now *****" /> <echo message=" http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom?wsdl " /> </target> <target name="client"> <delete dir="${client.dir}" /> <wsconsume fork="true" keep="true" destdir="${client.dir}" sourcedestdir="${client.dir}" package="client" wsdlLocation="http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom?wsdl" wsdl="http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom?wsdl"> </wsconsume> <jar jarfile="${client.dir}/${client.jar.name}" basedir="${client.dir}" compress="true" /> <zip destfile="${client.dir}/${client.jar.name}" update="true"> <fileset dir="${src.dir}"> <include name="client-beans.xml" /> </fileset> </zip> </target> <target name="run" depends="client"> <javac srcdir="${src.dir}" destdir="${client.dir}" includes="Test_CXF_Client.java" classpathref="client.classpath"/> <java classname="client.Test_CXF_Client" > <classpath> <pathelement location="${client.dir}"/> <path refid="client.classpath"/> </classpath> <arg line="one.jpg file:///home/jsenshar/Desktop/DELETE/one.jpg"/> </java> </target> </project>
NOTE: The only change in the above file you need to do is to change the “jboss.home” directory path in the second line of the above script is to point to your own JBoss AS7 directory home directory.
Step10). Now before running your ANT script to build and deploy the above webapplication you should have the ANT as well as JAVA set in the $PATH variable of the Shell / command prompt as following:
For Unix Based OS: export PATH=/home/userone/jdk1.6.0_21/bin:/home/userone/org.apache.ant_1.6.5/bin:$PATH For Windows Based OS: set PATH=C:/jdk1.6.0_21/bin;C:/org.apache.ant_1.6.5/bin;%PATH%
Step11). Run the command “ant” or “ant post-deploy” which will internally build the WebService and deploy it inside the JBoss AS7 standalone profile.
[userone@localhost Spring_MTOM_Service]$ ant Buildfile: /home/userone/Spring_MTOM_Service/build.xml Buildfile: /home/userone/Spring_MTOM_Service/build.xml init: [delete] Deleting directory /home/userone/Spring_MTOM_Service/build [mkdir] Created dir: /home/userone/Spring_MTOM_Service/build [mkdir] Created dir: /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo/META-INF [mkdir] Created dir: /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo/WEB-INF/classes [delete] Deleting directory /home/userone/Spring_MTOM_Service/clientStuff [mkdir] Created dir: /home/userone/Spring_MTOM_Service/clientStuff [javac] /home/userone/Spring_MTOM_Service/build.xml:49: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 3 source files to /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo/WEB-INF/classes build: [copy] Copying 2 files to /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo/WEB-INF [wsprovide] Generating from endpoint: ws.SpringCXFMtom [wsprovide] log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils). [wsprovide] log4j:WARN Please initialize the log4j system properly. [wsprovide] log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. [wsprovide] java2ws -s /home/userone/Spring_MTOM_Service/build -classdir /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo/WEB-INF/classes -d /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo/WEB-INF/wsdl -verbose -wsdl -cp ::::::: -wrapperbean -createxsdimports ws.SpringCXFMtom [wsprovide] java2ws - Apache CXF 2.4.4 [wsprovide] [wsprovide] /home/userone/Spring_MTOM_Service/build/ws/jaxws/UploadPictureAttachment.java:25: cannot find symbol [wsprovide] symbol : class Picture [wsprovide] location: package ws [wsprovide] private ws.Picture arg1; [wsprovide] ^ [wsprovide] /home/userone/Spring_MTOM_Service/build/ws/jaxws/UploadPictureAttachment.java:35: cannot find symbol [wsprovide] symbol : class Picture [wsprovide] location: package ws [wsprovide] public ws.Picture getArg1() { [wsprovide] ^ [wsprovide] /home/userone/Spring_MTOM_Service/build/ws/jaxws/UploadPictureAttachment.java:39: cannot find symbol [wsprovide] symbol : class Picture [wsprovide] location: package ws [wsprovide] public void setArg1(ws.Picture newArg1) { [wsprovide] ^ [wsprovide] 3 errors [jar] Building jar: /home/userone/Spring_MTOM_Service/build/Spring_CXF_MTOM_Service_Demo.war deploy: [echo] ******************* Deploying ********************* [echo] ********** Spring_CXF_MTOM_Service_Demo.war to /home/userone/boss-as-7.1.0.CR1/standalone/deployments ********** [copy] Copying 1 file to /home/userone/boss-as-7.1.0.CR1/standalone/deployments [echo] ******************* Deployed Successfully ********************* post-deploy: [echo] ******************* NOTE ********************* [echo] ***** You should be able to access your WSDL using Browser now ***** [echo] http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom?wsdl BUILD SUCCESSFUL Total time: 4 seconds
( ( ( ( ( I S S U E – 3 ) ) ) ) ):
Even if you see that there are some exceptions while compiling the WebService using “org.jboss.ws.tools.ant.WSProvideTask” that “UploadPictureAttachment.java” is not compiling properly and seeing many compilation errors…But i ignored these errors still everything was OK. And the service deployed Successfully.
Step12). As soon as the service is deployed on JBoss AS7 you will see the following kind of output in the JBoss console :
22:19:47,218 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) Starting deployment of "Spring_CXF_MTOM_Service_Demo.war" 22:19:47,258 INFO [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-5) Add Service id=ws.SpringCXFMtom address=http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom implementor=ws.SpringCXFMtom invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker serviceName={http://ws/}SpringCXFMtomService portName={http://ws/}SpringCXFMtomServicePort wsdlLocation=null mtomEnabled=false 22:19:47,259 INFO [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-5) register: jboss.ws:context=Spring_CXF_MTOM_Service_Demo,endpoint=ws.SpringCXFMtom 22:19:47,266 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-5) Creating Service {http://ws/}SpringCXFMtomService from class ws.SpringCXFMtomIntf 22:19:47,285 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-5) Setting the server's publish address to be http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom 22:19:47,292 INFO [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-5) WSDL published to: file:/home/userone/boss-as-7.1.0.CR1/standalone/data/wsdl/Spring_CXF_MTOM_Service_Demo.war/SpringCXFMtomService.wsdl 22:19:47,295 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."Spring_CXF_MTOM_Service_Demo.war"."ws.SpringCXFMtom" 22:19:47,301 INFO [org.jboss.web] (MSC service thread 1-3) registering web context: /Spring_CXF_MTOM_Service_Demo 22:19:47,312 INFO [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018565: Replaced deployment "Spring_CXF_MTOM_Service_Demo.war" with deployment "Spring_CXF_MTOM_Service_Demo.war"
Step13). Now run the command “ant run” in your shell prompt to run the WebService client to access the WebService operation. “ant run” command will automatically build the client side artifacts using the “wsconsume” ant task as well and then it will run the client:
[userone@localhost CXFTimeoutClientDemo]$ ant run Buildfile: /home/userone/Spring_MTOM_Service/build.xml client: [delete] Deleting directory /home/userone/Spring_MTOM_Service/clientStuff [wsconsume] Consuming wsdl: http://localhost:8080/Spring_CXF_MTOM_Service_Demo/SpringCXFMtom?wsdl [wsconsume] log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils). [wsconsume] log4j:WARN Please initialize the log4j system properly. [wsconsume] log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. [jar] Building jar: /home/userone/Spring_MTOM_Service/clientStuff/Spring_CXF_MTOM_Client.jar [zip] Updating zip: /home/userone/Spring_MTOM_Service/clientStuff/Spring_CXF_MTOM_Client.jar run: [javac] /home/userone/Spring_MTOM_Service/build.xml:121: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 1 source file to /home/userone/Spring_MTOM_Service/clientStuff log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils). log4j:WARN Please initialize the log4j system properly. log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. Got Client: org.apache.cxf.jaxws.JaxWsClientProxy@7b5c9f9d dataHandler.getContentType() = image/jpeg client.uploadPictureAttachment(attachmentName,picture): File Uploaded on JBoss AS7 Server Location: /home/userone/boss-as-7.1.0.CR1/standalone/log/one.jpg BUILD SUCCESSFUL Total time: 9 seconds
Note: Above 3 Issues need to be fixed.
As everything is working fine and we are able to upload a file on the Server.
BUT still as mentioned in the above article that there are 3 Issues which need to be checked by JBoss Folks seems there is something is broken with the WSProvide task while compiling the “javax.xml.bind.annotation.XmlMimeType;” annotations.
.
.
Thanks 🙂
MiddlewareMagic Team