⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customtypetest.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.spring.examples;import org.apache.xbean.spring.context.ClassPathXmlApplicationContext;import org.codehaus.xfire.aegis.AegisBindingProvider;import org.codehaus.xfire.aegis.type.CustomTypeMapping;import org.codehaus.xfire.aegis.type.TypeMapping;import org.codehaus.xfire.service.MessagePartInfo;import org.codehaus.xfire.service.OperationInfo;import org.codehaus.xfire.service.Service;import org.codehaus.xfire.service.ServiceRegistry;import org.codehaus.xfire.service.binding.ObjectServiceFactory;import org.codehaus.xfire.spring.AbstractXFireSpringTest;import org.springframework.context.ApplicationContext;public class CustomTypeTest    extends AbstractXFireSpringTest{    protected ApplicationContext createContext()    {        return            new ClassPathXmlApplicationContext(new String[] {                "/org/codehaus/xfire/spring/examples/customType.xml",                 "/org/codehaus/xfire/spring/xfire.xml" });    }        public void testService()    {        ServiceRegistry reg = (ServiceRegistry) getBean("xfire.serviceRegistry");        assertTrue(reg.hasService("Echo"));                Service service = reg.getService("Echo");        OperationInfo operation = service.getServiceInfo().getOperation("echo");        MessagePartInfo mp = (MessagePartInfo) operation.getInputMessage().getMessageParts().get(0);        AegisBindingProvider bp = (AegisBindingProvider) getBean("xfire.aegisBindingProvider");                TypeMapping dtypeMapping = bp.getTypeMappingRegistry().getDefaultTypeMapping();        TypeMapping typeMapping = bp.getTypeMapping(service);        assertEquals(((CustomTypeMapping)typeMapping).getParent(), dtypeMapping);    }        public void testClient()    {        // START SNIPPET: client         ObjectServiceFactory osf = new ObjectServiceFactory();        AegisBindingProvider bp = (AegisBindingProvider) osf.getBindingProvider();                bp.getTypeMappingRegistry().getDefaultTypeMapping().register(new CustomType());        // END SNIPPET: client    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -