Package org.springside.examples.showcase.ws.server

Examples of org.springside.examples.showcase.ws.server.SmallImageWebService


    //创建SmallImageService
    String address = BASE_URL + "/services/SmallImageService";
    JaxWsProxyFactoryBean proxyFactory = new JaxWsProxyFactoryBean();
    proxyFactory.setAddress(address);
    proxyFactory.setServiceClass(SmallImageWebService.class);
    SmallImageWebService imageService = (SmallImageWebService) proxyFactory.create();

    //调用SmallImageService
    SmallImageResult result = imageService.getImage();
    assertTrue(result.getImageData().length > 0);

    //保存图片文件并校验
    String tempFilePath = System.getProperty("java.io.tmpdir") + "smalllogo.jpg";
    OutputStream os = new FileOutputStream(tempFilePath);
View Full Code Here

TOP

Related Classes of org.springside.examples.showcase.ws.server.SmallImageWebService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.