input 域字母小写转大写
<script>
<!--
function t(obj){
var thisValue = obj.value;
var thisValue_Up= thisValue.toUpperCase();
obj.value = thisValue_Up;
}
-->
</script>
<input onkeyup="t(this)" type="TEXT" />
input 域字母小写转大写
<script>
<!--
function t(obj){
var thisValue = obj.value;
var thisValue_Up= thisValue.toUpperCase();
obj.value = thisValue_Up;
}
-->
</script>
<input onkeyup="t(this)" type="TEXT" />
按照如下向导打开IBM Websphere的建议更新
-->Support & downloads
-->Choose support type: Websphere
-->Websphere Application Server
-->Download
-->Recommended fixes
选择版本6.1
1)6.1.0-WS-WAS-WinX32-FP0000021.pak
2)6.1.0-WS-WASSDK-WinX32-FP0000021.pak WebSphere专用JDK 累积更新包 V6.1 Java SDK 1.5 SR8 Cumulative Fix
3)6.1.0-WS-WASWebSvc-WinX32-FP0000021.pak
4)6.1.0-WS-WASEJB3-WinX32-FP0000021.pak
5)6.1.0-WS-IHS-WinX32-FP0000021.pak
6)6.1.0-WS-PLG-WinX32-FP0000021.pak
was6.1 (集成解决方案控制台, 6.1.0.0构建号: b0620.14构建日期: 5/16/06)
访问 weblogic-8.1.3 ejb 报错
[08-12-26 3:06:27:000 GMT] 0000001e SASRas A JSAS0006I: 已初始化安全性连接拦截器。[08-12-26 3:06:27:015 GMT] 0000001e SASRas A JSAS0007I: 已注册客户机请求拦截器。[08-12-26 3:06:27:515 GMT] 0000001e SASRas W
JSAS1477W: 安全性客户机/服务器配置不匹配:由于以下原因,客户机安全性配置(sas.client.props 或 GUI 中的出站设置)不支持服务器安全性配置: 错误1: JSAS0616E: 客户机配置指定 LTPA 认证机制,但服务器不支持它。
JSAS0616E: The client configuration specifies the LTPA authentication mechanism, but the server does not support it. Explanation: The authentication mechanism of the server is not supported by the client. User Response: Modify the authenticationTarget in the client configuration to something supported by the server.
解决办法给was打补丁包。
参考资料
http://www-01.ibm.com/support/docview.wss?uid=swg1PK29217
http://www-01.ibm.com/support/docview.wss?uid=swg1PK27813
http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg27004980
http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1/topic/com.ibm.websphere.exp.doc/info/exp/ae/rtrb_secprobs.html
http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.exp.doc/info/exp/ae/rtrb_secprobs.html
1、下载
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
2、解压缩到
D:\svn-win32-1.5.4
3、设置SVN_HOME,添加%SVN_HOME%\bin; 到Path路径
4、创建D:/svn-work/projects目录
5、cmd命令 下执行 svnadmin create D:\svn-work\projects
6、修改D:\svn-work\projects\conf\svnserve.conf
# anon-access = read# auth-access = write
anon-access = read
auth-access = write# password-db = passwd
password-db = passwd
注意不要留空格
passwd 文件中 添加一个用户
admin=amdin
7、cmd命令 下执行 svnserve -d -r D:\svn-work
8、使用http://subclipse.tigris.org/ 插件
找一个适合的版本update地址,我用的eclipse 3.3
用这个地址安装成功 Eclipse update site URL: http://subclipse.tigris.org/update_1.4.x
只安装了必须的组件
9、测试连接
更多内容查看
http://sites.google.com/site/footmarktech/Index/install-svn-win32