While attempting to crate a domain on the command line, I encountered an error complaining about missing terminalio. A looked around the web led me to this tip on how to work around the issue by adding the following parameter: -Dweblogic.management.allowPasswordEcho=true
Posts Tagged ‘howto’
Today, I tried to use Maven with WebLogic 12c. The documentation for installation is straight forward. I was able to execute mvn wls:help without any difficulty. However, using the WebLogic plugin wasn’t as easy. In order to run commands such as mvn wls:start-server, I needed to configure various parameters, such as middlewareHome, domainHOme, user, password, [...]
How to mount box.net on Ubuntu
Posted: February 24, 2012 in howto, TechnologyTags: box.net, howto, Ubuntu, WebDav
Here is an instruction that worked for me.
Debug JBoss with Eclipse
Posted: November 30, 2011 in Eclipse, howto, IDE, TechnologyTags: debugging, Eclipse, howto, Java, JBoss
I found a need to debug JBoss with Eclipse. A search on google led me to ths page. I had to tweak a bit to get my local instance to work. For example, I had to change the quote character from ” to “. JAVA_OPTS=”-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n $JAVA_OPTS” After that, JBOSS was able to load [...]
History and tab panel in GWT
Posted: August 4, 2011 in howto, TechnologyTags: GWT, howto, Java, Tutorial
I came across this tutorial and found it useful!
Create a WAR file for a GWT application
Posted: June 9, 2011 in howto, TechnologyTags: Eclipse, GWT, howto, Java, Netbeans
After I was so spoiled by GWT/Eclipse’s streamlined way of deploying a GWT application to the embedded server or Google App Engine, I was annoyed by how little support it has for other application servers. Fortunately, I was able to semi-automatically generate a WAR file for manual deployment on a remote server by following this [...]
It’s unfortunate that my initial experience with GWT’s SimplePager wasn’t very positive. The paging behaviour toward end of the list showed the following: For the last page, pager would attempt to request record count at last index + page size. This would cause pager to go index array out of bound. i.e. Let’s say you [...]
I needed to access the GWT build-in server for Eclipse from another machine. A search on-line led me to this tutorial. It worked!
Using Subversion externals for files
Posted: March 31, 2011 in howtoTags: externals, howto, svn, Technology
I needed to use Subversion externals property to define a reference to a file. Based on this blog, here are my notes: Let’s say that you want to have Subversion to use the following file from another directory: https://mysvnserver.com/svn/shared/lib/thelib.jar And have the file download into the following file in your project: myproject/lib/thelib.jar You should have [...]
