`
mtvwang
  • 浏览: 39940 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表

三角形程序

找个src地址
原帖地址: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/
foxit reader 建二级书签: 直接用鼠标拖动。
错误代码: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 ...
原文地址: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& ...
英文原文见官网: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- ...
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 < ...
<outbound-endpoint address="axis:http://192.168.0.1/axis/Calamity.jws?method=getCalamityInfo" synchronous="true" />  
<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 ...
定期把本地文件夹(./temp/file)下的文件上传到FTP服务器上。 <file:connector name="fileConnector" pollingFrequency="6000" />  <ftp:connector name="ftpConnector" outputPattern="${ORIGINALNAME}" />  <model name="model">   <service name="service"& ...
用mule通过SMTP服务器发送邮件。 把在控制台输入的字符串用Username@126.com传给别的邮箱。 <stdio:connector name="StdioConnector" messageDelayTime="1000" promptMessage="Please enter something:" /> <stdio:connector name="StdioConnector"   messageDelayTime="1000" promptMessage ...
"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 ...
Global site tag (gtag.js) - Google Analytics