documentservicetest.java
来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 60 行
JAVA
60 行
package org.codehaus.xfire.message.document;import org.codehaus.xfire.aegis.AbstractXFireAegisTest;import org.codehaus.xfire.service.Service;import org.codehaus.xfire.service.binding.ObjectServiceFactory;import org.codehaus.xfire.soap.SoapConstants;import org.jdom.Document;/** * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> * @since Feb 21, 2004 */public class DocumentServiceTest extends AbstractXFireAegisTest{ public void setUp() throws Exception { super.setUp(); ((ObjectServiceFactory) getServiceFactory()).setStyle(SoapConstants.STYLE_DOCUMENT); Service service = getServiceFactory().create(DocumentService.class, "Doc", "urn:Doc", null); getServiceRegistry().register(service); } public void testNoParams() throws Exception { Document response = invokeService("Doc", "/org/codehaus/xfire/message/document/document11-1.xml"); addNamespace("d", "urn:Doc"); assertValid("//d:getString1out", response); assertValid("//d:getString1out[text()=\"string\"]", response); } public void testOneParam() throws Exception { Document response = invokeService("Doc", "/org/codehaus/xfire/message/document/document11-2.xml"); addNamespace("d", "urn:Doc"); assertValid("//d:getString2out", response); assertValid("//d:getString2out[text()=\"bleh\"]", response); } public void testTwoParams() throws Exception { Document response = invokeService("Doc", "/org/codehaus/xfire/message/document/document11-3.xml"); addNamespace("d", "urn:Doc"); assertValid("//d:getString3out", response); assertValid("//d:getString3out[text()=\"blehbleh2\"]", response); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?