Tuesday, February 7, 2012 7:15

Archive for August, 2010

Javascript error: Expected identifier, string or number

Tuesday, August 31, 2010 20:21

We came across this issue when testing our web application on IE6 and IE7.  It works well on Firefox and IE8. Expected identifier, string or number The root cause is the extra ','  in the variables definition. References: http://yuweiqiang.blog.163.com/blog/static/66570412010623074104/ http://hi.baidu.com/hengcheng/blog/item/2dc020fa9d621f839f5146e5.html

This was posted under category: Web x.0  |  Read Full Story  |  0 Comments
Tagged with:

SQL Server Profiler – Only TrueType fonts are supported

Sunday, August 22, 2010 13:12

Error message - "Only TrueType fonts are supported. This is not a TrueType font." was thrown when using SQL Server Profiler. Solution: 1. Open SQL Server Profilr 2. Go to ' Tool'Menu 3. Select Options 4. Change the font name to "Arial" 5. Click OK.

This was posted under category: SQL Server  |  Read Full Story  |  0 Comments
Tagged with:

Nginx configuration – nginx.conf

Tuesday, August 10, 2010 19:52

server { listen 80; server_name nginx.org www.nginx.org; root /data/www; location / { ...

This was posted under category: Java, Linux  |  Read Full Story  |  1 Comment
Tagged with:

Getting Started with GWT and Google App Engine

Tuesday, August 10, 2010 11:34

There has been few drastic changes made in GWT 1.6 . The most important one is the new project structure. GWT now uses a “war” directory for most public resource and server configuration files. For the total change list, visit this page. My previous post “Getting Started With the ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

sqlserver2000 netstat、telnet连不到1433端口(远程登录失败)问题解决方法

Tuesday, August 10, 2010 11:34

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Resin – java.lang.NoClassDefFoundError: javax/xml/ws/WebServiceRef

Tuesday, August 10, 2010 11:33

Error -  java.lang.NoClassDefFoundError: javax/xml/ws/WebServiceRef was thrown when running my web application on myeclipse based on Resin 3.1. It is due to a MyEclipse (I am using My Eclipse 5.5.0 GA) defect. http://www.myeclipseide.com/index.php?name=PNphpBB2&file=viewtopic&t=21403&start=0&postdays=0&postorder=asc&highlight= Workaround:  add them under the jar files under lib folder in the boot configuration of Resin in MyEclipse. Also there is ...

This was posted under category: Web MVC  |  Read Full Story  |  0 Comments
Tagged with:

Linux Kill user session or logout users

Tuesday, August 10, 2010 11:31

We can use the command 'skill -KILL -u <username>' to logout users. Reference: http://www.cyberciti.biz/tips/howto-linux-kill-and-logout-users.html

This was posted under category: Linux  |  Read Full Story  |  0 Comments

Resin ArrayIndexOutOfBoundsException Tiles

Tuesday, August 10, 2010 11:29

There was error thrown when accessing Java web application using Tiles in Resin environment. We came across java.lang.ArrayIndexOutOfBoundsException when using Resin 4.0.8.   The root cause is a defect from Resin 4.0.8.  (http://bugs.caucho.com/view.php?id=4104) . The solution is upgrade the Resin to version 4.0.9

This was posted under category: Web MVC  |  Read Full Story  |  0 Comments
Tagged with:

What is eSubmission, eCTD

Sunday, August 8, 2010 13:55

Background The concept of eSubmission and the use of electronic format of files were firstly introduced by pharmaceutical companies in coordination with EMA and “pioneer” National Competent Authorities, under the auspices of International Conference on Harmonisation (ICH). ICH has agreed on certain rules ...

This was posted under category: Pharmaceutical  |  Read Full Story  |  2 Comments
Tagged with:

java.lang.NoClassDefFoundError: com/sun/activation/registries/LogSupport

Sunday, August 8, 2010 12:17

I came across this issue when executing one unit test. From the log info, it seems that this class is not found in activation.jar.  Yes, this class is not there. But the root cause is -  the reference of javaee.jar in myeclipse.   After removing the reference to JavaEE 5 package ...

This was posted under category: Java  |  Read Full Story  |  0 Comments