为了免去项目修改就要重新启动TOMCAT,可以采用热部署的方式,
打开server.xml文件:
<Host
appBase="webapps"
name="localhost">
<Context
path="/xvote">
</Context>
</Host>
在Host结点中加入:
<!-- auto append ,then reload -->
<Context path="/wib" docBase="wib" debug="99" r ...
- 13:32
- 浏览 (89)
- 评论 (0)
自己写了一个webServiec应用的小例子,以下是代码:
package cn.com.WebXml;
public class Test {
public static void main(String[] args)
{
WeatherWebServiceSoapStub weatherWebServiceSoapStub = null;
String net_endpoint = "http://www.webxml.com.cn/WebServices/WeatherWebService.asmx";
try{
weatherWebServiceSoa ...
- 10:04
- 浏览 (65)
- 评论 (0)







评论排行榜