You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
359 B
16 lines
359 B
package fr.itix.soapbackend;
|
|
|
|
import javax.jws.WebMethod;
|
|
import javax.jws.WebService;
|
|
import javax.xml.ws.soap.MTOM;
|
|
|
|
@MTOM
|
|
@WebService(name="MtomPortType",
|
|
serviceName="MtomService",
|
|
targetNamespace="http://itix.fr/soap/mtom")
|
|
public class MTOMService {
|
|
@WebMethod
|
|
public int countBytes(byte[] bytes) {
|
|
return bytes.length;
|
|
}
|
|
}
|
|
|