- 浏览: 40525 次
- 性别:
- 来自: 武汉
最新评论
-
laifu901:
楼主,我感谢你八辈祖宗,我代表八辈祖宗感谢你!
AXIS2发布WebService -
chen_lian:
非常感谢楼主的这篇文章,对我帮助很大
AXIS2发布WebService -
kakarottoz:
好文章,多谢楼主分享~ 受益良多
AXIS2发布WebService -
di1984HIT:
写的很好~~
AXIS2发布WebService -
xudongwangjie:
非常不错,感谢您的知识分享,但是想问一个问题,是不是开发阶段适 ...
AXIS2发布WebService
文章列表
原帖地址:http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/dbrm001.htm
Oracle资源管理器简介
Oracle资源管理器(Oracle Database Resource Manager,以下简称DBRM)管理数据库资源,为不同的会话分配不同的数据库资源。DBRM管理的资源主要包括CPU时间。下面分以下几个章节介绍:
Oracle DBRM帮你处理哪些问题
Oracle DBRM是怎样处理这些问题的
Oracle DBRM包含的内容
Oracle DBRM资源分配方法
...
C程序中,有时候程序中要用的getc或gets函数的时候,由于前面还有scanf输入的数据,所以先要清除stdin缓冲区。再使用getc或gets。
清除方法:
char stdinBuff[1024];
fgets(stdinBuff, 1024, stdin);
最近笔记本的ctrl键失灵了, 一直按着。导致在Windows下键盘无效了。
下载了个软件,禁用掉了,就好了。
软件介绍:
http://www.randyrants.com/sharpkeys/
错误代码:error C2065: '_beginthread' : undeclared identifier
解决步骤:
1. 进入Project --> Setting
2. 选中C/C++ 标签
3. Category选中Code Generation
4. Use run-time library: 选中Muletithreaded
5. OK
我在这里提供两种用AXIS2发布WebService的方法。
一种是打aar包放在指定位置(不方便调试),一种是不打aar包(方便调试),着重介绍后者。
说明:Eclipse版本3.4.2、tomcat版本5.5.12、AXIS2版本1.5.1、EclipseTomcatPlugin3.2.1
准备工作:
下载WAR (Web Archive) Distribution
“This will be the web application of Axis2 which can be deployed in most of the servlet containers.”
http ...
- 2009-10-29 11:46
- 浏览 12860
- 评论(6)
原文地址:http://cxf.apache.org/docs/a-simple-jax-ws-service.html
有修改去掉User
WebService 接口 HelloWorld:
package dm.com.service;
import javax.jws.WebParam;
import javax.jws.WebService;
@WebService //必须
public interface HelloWorld {
String sayHi(@WebParam(name = "name& ...
- 2009-10-26 22:25
- 浏览 1175
- 评论(0)
英文原文见官网:http://cwiki.apache.org/CXF20DOC/writing-a-service-with-spring.html
所需jar包:
commons-logging-1.1.jar
geronimo-activation_1.1_spec-1.0-M1.jar (or Sun's Activation jar)
geronimo-annotation_1.0_spec-1.1.jar (JSR 250)
geronimo-javamail_1.4_spec-1.0-M1.jar (or Sun's JavaMail jar)
geronimo- ...
- 2009-10-19 15:36
- 浏览 2475
- 评论(0)
http://www.w3school.com.cn/html/html_quick.asp
来自 W3School 的 HTML 快速参考。可以打印它,以备日常使用。
HTML Basic Document
<html>
<head>
<title>Document name goes here</title>
</head>
<body>
Visible text goes here
</body>
</html>
Text Elements
< ...
- 2009-08-24 20:03
- 浏览 1150
- 评论(0)
<outbound-endpoint
address="axis:http://192.168.0.1/axis/Calamity.jws?method=getCalamityInfo"
synchronous="true" />
- 2009-06-11 11:24
- 浏览 1007
- 评论(0)
<s:head theme="ajax"/>
<body>
<s:form action="Login">
<table align="center" border="1">
<tr>
<s:textfield name="username" label="Name"></s:textfield>
<s:password name="password ...
- 2009-04-28 20:09
- 浏览 1144
- 评论(0)
FTP Transport
- 博客分类:
- Mule使用记录
定期把本地文件夹(./temp/file)下的文件上传到FTP服务器上。
<file:connector name="fileConnector" pollingFrequency="6000" />
<ftp:connector name="ftpConnector" outputPattern="${ORIGINALNAME}" />
<model name="model">
<service name="service"& ...
- 2009-04-08 10:03
- 浏览 1506
- 评论(0)
用mule通过SMTP服务器发送邮件。
把在控制台输入的字符串用Username@126.com传给别的邮箱。
<stdio:connector name="StdioConnector" messageDelayTime="1000" promptMessage="Please enter something:" />
<stdio:connector name="StdioConnector"
messageDelayTime="1000" promptMessage ...
- 2009-04-07 21:27
- 浏览 1288
- 评论(0)
"The VM transport is used for intra-VM communication between components managed by Mule."
mule-config.xml里加入如下入口:
<inbound>
<vm:inbound-endpoint address="vm://vmtest" />
</inbound>
从程序里面启动mule服务,和往这个入口传参数:
MuleServer server = new MuleServer("conf/mule-co ...
- 2009-04-01 22:24
- 浏览 2347
- 评论(0)