2011年10月20日
摘要: package com.pipe.webservice;import com.pipe.bean.User;public class PipeService { /** * in/out String * @param name * @return */ public String sayHello(String name) { return name + " say: hello"; } /** * in/out javabean * @return */ public User getUser(String userName) { User user = new Us. 阅读全文
posted @ 2011-10-20 13:47 SamLove 阅读(250) 评论(0) 推荐(0) 编辑
  2011年10月19日
摘要: http://axis.apache.org/axis2/java/core/docs/mtom-guide.html作者:samsongbest 发表于2011-10-19 16:08:37 原文链接阅读:4 评论:0 查看评论 阅读全文
posted @ 2011-10-19 16:09 SamLove 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Copyright © Steve Loughran 2003 DRAFT 1 Fear of Attachments Steve Loughran 2003-02-03 1.1 Introduction: SOAP and its attachments One issue which has shown up with SOAP from the outset is... 阅读全文
posted @ 2011-10-19 16:03 SamLove 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1.create table create table dbo.app_param( sn int identity(1,1) not null, type nvarchar(50) not null, module nvarchar(50) not null, ckey nvarchar(50) not null, cvalu... 阅读全文
posted @ 2011-10-19 16:01 SamLove 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 在eclipse-jee-galileo-SR1-win32上装了半天都装不上,偶然发现通过非常规手段可以使用。 一.插件安装 Add 1.3 插件到plugins Add 1.6插件到dropins 重启eclipse, 出现了2个,用第二个应该是1.6的 反向生成代码。 报错,缺少下图最上面2个包。 从AXIS2的LIB库中复制"... 阅读全文
posted @ 2011-10-19 15:32 SamLove 阅读(1841) 评论(0) 推荐(0) 编辑
摘要: Axis2 WebService 实现webservice的开源框架有很多,axis是比较常用的一种,它能让你在tomcat上方便的发布webservice,它能帮助你把代码转化成wsdl文件,或者把wsdl文件转化成java代码,下面对axis2作详细说明,我会侧重讲cmd命令行发布和转化,因为最新版axis2的插件和多数eclipse版本不兼容。 一.下载axi... 阅读全文
posted @ 2011-10-19 10:40 SamLove 阅读(8812) 评论(0) 推荐(1) 编辑
  2011年9月29日
摘要: lusrmgr.msc 本地用户组 mspaint 画图 作者:samsongbest 发表于2011-9-29 9:49:24 原文链接 阅读:5 评论:0 查看评论 阅读全文
posted @ 2011-09-29 09:49 SamLove 阅读(120) 评论(0) 推荐(0) 编辑
摘要: http://loshamo.javaeye.com/blog/627020 [i][/i]在使用codegen1.3插件来从WSDL生成代码,到了最后一步竟然出然了"An error occurred while completing process-java.lang.reflect.InvocationTargetException"的错误 产生这种错误的原因一般... 阅读全文
posted @ 2011-09-29 09:39 SamLove 阅读(701) 评论(0) 推荐(0) 编辑
  2011年5月25日
摘要: MyEclipse使用经验总结 0. 快捷键 ================================================================================ 编辑: Ctrl+Shift+L显示所有快捷键 Ctrl+K 参照选中的词(Word)快速定位到下一个 Ctrl+Shift+K参照选中的词(Word)快速定位... 阅读全文
posted @ 2011-05-25 13:38 SamLove 阅读(677) 评论(0) 推荐(0) 编辑
  2010年9月21日
摘要: 排序方法一: package Stuty_Array; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class Users implements Comparable { private St... 阅读全文
posted @ 2010-09-21 22:11 SamLove 阅读(596) 评论(0) 推荐(0) 编辑