WebLogic
pkuyjxu
这个作者很懒,什么都没留下…
展开
-
wsimport tool
C:\Users\pkuyjxu>wsimport -keep -p com.siemens.tlp.trackandtrace.efence http://192.168.1.100:6001/EfenceService/EfenceServiceService?WSDL原创 2012-10-11 14:05:29 · 704 阅读 · 0 评论 -
Two methods of transporting file in webservice
First Method,endpoint code public String echoBinaryAsString(byte[] bytes,String filename) { String filePath = "c:/softs/img/"+filename; try { FileOutputStream fos = new原创 2015-04-28 21:49:16 · 518 阅读 · 0 评论 -
How to find the lost testpoint in weblogic12?
Before wls version 12.1.1, use the http://localhost:7001/wls_utc for testing webervice, however it was changed to http://localhost:7001/ws_utc in later version without any record in release note. So原创 2015-04-28 10:59:13 · 705 阅读 · 0 评论 -
startWeblogic.cmd not exist Or can not start weblogic via quickstart
One of the reason could be the bellow shows. Installing WebLogic Server on 64-Bit Platforms Using 64-Bit JDKIf you are installing WebLogic Server on a 64-bit platform using a .jar installation p原创 2014-03-25 12:37:30 · 1125 阅读 · 0 评论 -
How to solve "\Java\jdk1.7.0_45' was unexpected at this time." while starting jboss-eap-6.2
Solution is very simple, just replaced a snip of code in standlone.batif "x%JAVA_HOME%" == "x" ( set JAVA=java echo JAVA_HOME is not set. Unexpected results may occur. echo Set JAVA_HOME to t原创 2013-12-11 05:53:25 · 4617 阅读 · 1 评论 -
Create a new Data Source for Weblogic(创建新的jta-data-source), and deploy applications
Step 1, Start the weblogic serverStart-> All programs -> Oracle Weblogic -> user projects ->choose a user domain, default is base_domain -> Start Admin Server Wait until cmd window shows "原创 2013-10-10 11:02:30 · 1573 阅读 · 0 评论 -
weblogic 部署应用时一直停留在部署状态解决办法
原因之一: 分配给weblogic的的内存过低, 部署应用会产生很多动态类,此时内存不够的话,就需要频繁调用GC回收机制,自然部署时间要长很多解决办法: C:\Oracle\Middleware\user_projects\domains\base_domain\bin 路径下的setDomainEnv 把内存设置大一些if "%JAVA_VEND原创 2013-09-15 23:35:13 · 19199 阅读 · 0 评论 -
安装java_ee_sdk-7-jdk7-windows-x64-ml.exe & wls1211_generic.jar
H:\IT-TOOLS\EnterpriseDevTools>java_ee_sdk-7-windows-ml.exe -j "C:\Program Files\Java\jre7"H:\IT-TOOLS\EnterpriseDevTools>java -jar wls1211_generic.jarExtracting 0%...............原创 2013-09-15 18:28:54 · 3381 阅读 · 0 评论 -
javax.xml.soap.SOAPException: Unable to receive message 原因
javax.xml.soap.SOAPException: Unable to receive message. caused by: java.io.IOException: null caused by: javax.xml.stream.XMLStreamException: javax.xml.stream.XMLStreamException: Premature end of file原创 2013-08-31 01:44:23 · 4317 阅读 · 0 评论 -
Solution:Unable to load perf ormance pack. Using Java I/O instead. Please ensure that wlntio.dll
Today, I am going to explain the installation steps & configuration of Oracle Weblogic 10.3.4 for SOA suite 11g (11.1.1.4) in a 64-bit windows environment. Because, of late, I have been seeing a lot转载 2013-07-28 22:55:27 · 5080 阅读 · 0 评论 -
BEA-110486 (Transaction BEA1*****) cannot complete commit processing because resource [cgDataSource]
The solution was very easy, but taked much time to find.Follow the steps:Stop your server.Go to [your domain]\servers\AdminServer\data\store\default.Delete* _WLS_ADMINSERVER_[random number].DATR转载 2013-07-29 09:05:31 · 2022 阅读 · 0 评论 -
WebLogic服务器配置优化总结
2、堆空间的设置针对JVM堆的设置一般,可以通过-Xms -Xmx限定其最小、最大值,为了防止垃圾收集器在最小、最大之间收缩堆而产生额外的时间,我们通常把最大、最小设置为相同的值。年轻代和年老代将根据默认的比例(1:2)分配堆内存,可以通过调整二者之间的比率NewRadio来调整二者之间的大小,也可以针对回收代,比如年轻代,通过-XX:newSize -XX:MaxNewSize来设置其绝原创 2013-02-25 12:44:23 · 9616 阅读 · 0 评论 -
潘多拉贴
1, http://docs.oracle.com/cd/E17904_01/wls.htm weblogic related document2, http://www.apkbus.com/ A very good forum for chinese android developers.原创 2012-10-24 20:17:48 · 978 阅读 · 4 评论 -
Solution for<Closing socket as no data read from it on during the configured idle timeout of 5 secs
In Jdeveloper 11.1.1.1.0, when I am running my web application I am frequently left with the following error from the integrated server: This is because I sometimes have multiple browsers/wi原创 2012-10-24 10:34:45 · 34495 阅读 · 0 评论 -
how to solve "java.sql.Timestamp does not have a no-arg default constructor" ?
Step 1, create TimestampAdapter classimport java.sql.Timestamp;import java.util.Date;import javax.xml.bind.annotation.adapters.XmlAdapter; public class TimestampAdapter extends XmlAdapter {原创 2012-10-19 15:55:55 · 3357 阅读 · 0 评论 -
解决linux VPS安装weblogic时碰到的显示问题Checking monitor: must be configured to display at least 256 colors
Checking monitor: must be configured to display at least 256 colors >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set. F原创 2015-11-25 13:35:57 · 10087 阅读 · 1 评论