无聊人士

搬家==》www.soapui.cn

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  32 随笔 :: 0 文章 :: 60 评论 :: 0 Trackbacks

我的评论

re: 难道这是spring的小BUG?? mmwy 2008-02-07 00:33  
可以写成
<property name="jndiName" value="java:comp/env/jdbc/feng"/>
nslookup出来只有一个ip并不一定能说明它就没做负载均衡处理。难说你得到的这个ip是前置的负载均衡交换机的ip,realserver都躲在其内部来着。

nslookup出来多个ip,也许他只是用了最简单的dns轮循的负载均衡处理,也有可能是做了gslb。
re: freemarker的空值和默认值 mmwy 2007-05-09 14:32  
${user?if_exists}

${user?default('your name')}
re: 在birt2.1.2中显示条形码 mmwy 2007-04-08 13:25  
写在birt的脚本里面也行

<image id="4">
<method name="onCreate"><![CDATA[
importPackage(java.io);
importPackage(Packages.jbarcodebean);
importPackage(Packages.org.apache.commons.codec.digest);

code="ABCDEF-01234567-ZYX";
f = new java.io.File(java.lang.System.getProperty("java.io.tmpdir"), "barcode_" + DigestUtils.md5Hex(code) + ".gif");
//条码缓存1小时
if (!f.exists() || java.lang.System.currentTimeMillis() - f.lastModified() > 1000 * 60 * 60) {
bb = new JBarcodeBean();
bb.setCodeType(new Code128());
bb.setShowText(true);
bb.setBarcodeHeight(45);
bb.setCode(code);
bb.gifEncode(new FileOutputStream(f));
}
this.file=f.getAbsolutePath();
]]>
</method>
</image>

re: win2003上iis与tomcat的整合 mmwy 2007-03-19 15:56  
用“web service extensions” site:apache.org搜了一下google,TNND,估计apache那帮人就不想让你在iis上跑tomcat,东西藏得那个深啊!(google出来的结果基本上是maillist的东西)

The setup file included here and the script to add the ISAPI filter work just fine in IIS6, but there is one additional step needed. You must also allow access to the filter through the Web Service Extensions part of IIS. To do this graphically, do the following:

1) open the IIS Manager and go to the Web Service Extensions item under the appropriate server 2) Click the "Add a new Web service extension" item under "Tasks" 3) Give it a name like "jakarta" 4) Browse to the isapi_redirect.dll file you installed above as a "Required File" 5) Check the box to enable this extension

用uuid,省事省心:)

re: xfire 1.0 终于final了 mmwy 2006-11-01 16:36  
@敌对


我上面有介绍啊,如果是java来做client,可以象axis一样,从wsdl来生成client,也可以用Dynamic Client的办法来生成。

如果是vs.net、C# developer,可以用web references向导来生成client。

如果是delphi 7/2005/2006,有一个专门的wsdl importer可以生成client代码的。
受SELinux的影响,启动CentOS时老停在oracle10g服务上,看/var/log/message里面有一段"Do you want to choose a different one? [n]"。


参考:CentOS下su的提示信息问题(http://www.zeali.net/entry/434
re: 接触xfire mmwy 2006-07-29 01:32  
我也遇到过,在tomcat里面正常,扔resin下面,wsdl出不来,别的都正常。
re: GroovySOAP mmwy 2006-05-06 12:56  

似乎只能调xfire做的服务端。

以“http://www.xmethods.net/interfaces/query.wsdl”这个接口为例,在c# sharpdevelop中正常调用,换用groovysoap以后,就报“org.codehaus.xfire.fault.XFireFault: this is a soap-encoded endpoint”的异常了。
using System;
using Hello.www.xmethods.net;

namespace Hello
{
class MainClass
{
public static void Main(string[] args)
{
XMethodsQuery query=new XMethodsQuery();
IDNamePair[] result=query.getAllServiceNames();
for(int i=0;i<result.Length;i++)
Console.WriteLine(result[i].id+"\t"+result[i].name+"\n");
}
}
}
re: Spring集成Groovy mmwy 2006-02-07 09:11  
HOHO,幸福终于来了,再不用去cvs里面下spring modules代码了