文章列表
select name,status,xmlquery('$c/client/phone/home' passing contactinfo as "C") from clients where xmlexists('$y/client/address[zip="95032"]' passing contactinfo as "y")
10g服务器短跟客户端都要下Vista版本的,XP版的不行 服务器需要修改2个refhost.xml,客户端需要修改1个refhost.xml
改动的地方都是一样的 否则安装时会提示不支持此系统.
以下是服务器需要修改的文件:
找到以下内容
<OPERATING_SYSTEM>
<VERSION VALUE="6.0"/>
</OPERATING_SYSTEM>
在此内容以下 添加一段
<OPERATING_SYSTEM>
<VERSION VALUE=&qu ...
写全了
CREATE TYPE num_varray AS VARRAY(10) OF VARCHAR2(12)
/
CREATE TABLE varray_table (col1 num_varray);
INSERT INTO varray_table VALUES (num_varray( '你好 ', 'abc '));
select * from varray_table;
*/
import java.sql.*;
import java.math.*;
import orac ...
Websphere删除某个应用起动时提示找不到配置的解决方法,将WebSphere\AppServerCommunityEdition\var\config\config.xml里相应的模块删掉后重启动就可以了,如下面的代码部分:
<module name="default/javacms/1.0/car"/>
<module name="default/j2eecm/1.0/car"/
手工删除Websphere下的应用
先删除部署目录的应用(installedApps):
/opt/WebSphere/AppServer/pro ...
使用AXIOM创建客户端
欲用AXIOM创建客户端,请执行以下步骤。
为了完整性,下面的目录结构将“用AXIOM创建服务”一节中的目录一并列出。
- quickstartaxiom
- README.txt
- build.xml
- resources
- META-INF
- services.xml
- StockQuoteService.wsdl
- src
- samples
- quickstart
- service
- axiom
...
一、EHCache: ehcahe.xml
1、diskStore:
配置DiskStore,当需要使用磁盘保存的时候,需要对象实现序列化接口
属性:path 配置文件存储位置
2、cacheManagerEventListenerFactory :
指定 CacheManagerEventListenerFactory,
用于创建CacheManager ...
<TerminalConfig>
</TerminalConfig>
<AdvancedParamsConfig>
</AdvancedParamsConfig>
<mailSendConfig>
<time>
<value></value>
<label></label>
</time>
</mailSendConfig>
<auxiliaryStreamConfig>
<roles> ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; char ...
利用Eclipse和Tomcat进行远程调试
1 编辑tomcat\bin\catalina.bat ,添加
rem ===========================================================================
rem this is added for remoting debug
SET JPDA_ADDRESS=8000(注意,此端口一定不能和你的tomcat监听端口一样,比如,你的tomcat如果是8080,此端口,就不能是8080)
SET JPDA_TRANSPORT=dt_socket
rem =========== ...
问题描述:当console输出有中文时(比如用JUint会输出 信息 2字),会运行到输出汉字的前一步就停止。
解决方法:
第一种
在 ant 设置的 common 选项卡 中设置 Console Encoding 为GB18030(或者GBK)编码即可
当ant的common选项卡里的 Console Encoding 没有GB18030(或者GBK)时,先在 eclipse -> windows -> Preference -> General -> Workspace 选项的 text file encoding 改为GB18030(或者GBK)应用一下,再改 ...