Wednesday, January 28, 2009

Using Jar Class Loader (JCL) to reload classes from a JAR

I have been playing recently with JCL to load classes on demand from a jar file.

The immediate use of this is to build a plugin engine. A jar file might contain some code that can change without the need to restart the application using it.

Suppose you are told there is a specific functionality that should be changing regularly without affecting your server uptime. If you are behind a simple server container using WAR deployments you could use this method to ensure no WAR redeployment is needed when your functionality is in fact improved/changed.

I have put a running sample on SVN (JDK 5 needed, if you need to support a previous version just download jcl and compile it yourself).

To see it in action just run run.sh (using linux this time). If you are running Windows just get the *.sh files and provide similar *.bat files. Yes I know, Ant is cross platform and I should have used it for this post. Next time I will use Ant and even Maven ...

You will get full traces of what is happening every two minutes. Change constant 'version' in PluginImpl.java and run build-plugin.sh to see how the trace message is updated with the new version showing you can change your java class implementation at any time and your application does not need to be restarted.

I should remark here that when used from an application server like JBoss which uses its own class loader it is necessary to add the interface package to the newly created class loader (use jcl#add() for it). However if the plugin class refers directly to some classes in the current class loader jcl#add()-ing individual packages would be overkilling. You need then to use a custom loader like:
package mypackage;

import org.apache.log4j.Logger;

import xeus.jcl.loader.Loader;

class MyLoader extends Loader {
private Logger logger = Logger.getLogger(EISLoader.class);

public MyLoader() {
order = 4;
}

public Class load(String className, boolean resolveIt) {
Class result;
try {
result = this.getClass().getClassLoader().loadClass(className);
} catch (ClassNotFoundException e) {
return null;
}

if (logger.isTraceEnabled())
logger.trace("Returning class " + className + " loaded with parent classloader");

return result;
}

}
Then later use that loader as in:
MyLoader loader=new MyLoader();
loader.setOrder(4);
jcl.addLoader(loader);

I also found problems with log4j since JBoss uses its own and it might be old you might get:
java.lang.NoSuchMethodError: org.apache.log4j.Logger.isTraceEnabled()
At least in the case of JBoss 4.0.4 I managed to solve the problem using log4j-1.2.15.jar renamed as $JBOSS_HOME/lib/log4j-boot.jar and $JBOSS_HOME/server/$configuration-dir/lib/log4j.jar.

We can also go by ourselves and try to get this done without any special library using UrlClassLoader however I have done some tests and this solution appears to work in Windows but not in Linux. Once the plugin class is loaded the first time any further replacement will not be noticed in my Ubuntu Intrepid 2.6.27-9-generic Kernel.

Friday, January 16, 2009

Deploying applications to IPhone

While developing my first application for the IPhone I had fun. I really enjoy Objective-C messaging style and its dynamic capabilities. The simulator was really cool provided my previous experience with other device simulators.

However I was starting to get really desperate after finding too much problems when trying to deploy (using the official and legal way) the application to the real device.

I found then an excellent post that saved me perhaps several more hours of troubleshooting.

Later I was asked to deploy the application to several other phones. This time the existence of old and new profiles, several Xcode windows opened and lack of project info updates made me lose some more time so I am documenting here what I found as a solution:

. Delete all (related to the application to be deployed) files from ""~/Library/MobileDevice/Provisioning Profiles"".
. Close Xcode and ITunes. IPhone must be disconnected from PC.
. Open Xcode
. Drag the developer and the ad hoc profiles to the Xcode dock icon
. In Xcode select Menu|Window|Organizer and expand "Provisioning Profiles" on the left pane. You must have there two profiles (dev and ad hoc)
. On the IPhone select Settings|General|Profiles and delete any previous installed profiles (at least those related to the application you are trying to deploy)
. Connect the IPhone to the PC and check the profiles (dev and add hoc) are installed using Settings|General|Profiles
. From Xcode open the project and select Menu|Build|Clean All Targets
. Click on the project root folder on the left pane and select Project|Edit Project Settings
. Navigate to Build tab and locate "Code Signing" section. click on the value for "Code Signing Entity/Any IPhone OS Device" and select the value under the Dev profile.
. Build and Go

Thursday, November 20, 2008

Gmail Terminal Theme



I am a big fan of separation of concerns in my projects. Good implementations are so successful when they adhere to this simple concept. Think about the seven layers of the OSI Model or the MVC pattern applied to Web applications.

I simply liked too much GMail Console Theme to miss it here as a good example of how flexible a web application becomes when the concerns are handled in different layers.


Saturday, November 01, 2008

Picasa Slideshow: Creating a Google Gadget

A Google Gadget can be any HTML fragment and so it can contain any logic provided you use Javascript.

As soon as I got a couple of Gadgets in action I felt the necessity to play myself with them. Then I decided to build one which I think could be useful for others.

It is inspired in a good explanation[1] about how to embed a "Picasa Slideshow" (and others picture sharing sites) in a web page.

Take a look at the html page generated from the page that will be included in the XML file specifying a Google Gadget.

Sniff into the code.

Take a closer look to the whole URL. It starts with http://www.nestorurquiza.com/googlegadgets/picasaslideshow. I have hosted a simple Python script there which just accepts a GET parameter (see below) containing an RSS Picasa Album Feed to create a Slide show.

As mentioned above, you need to provide a parameter called rss which is basically the RSS link you can get from your preferred Picasa album. For the example I have used the same from [1]

After you have customized the URL including your own RSS and confirm it works like expected you need to URL Encode the whole customized URL (You can use one of the zillions of Online URL Encoding pages you can find in the WEB. Just Google it!)

Now you need to host an XML file with a similar format like the one you can find at http://localhost:8081/googlegadgets/xml/picasaslideshow.xml. Note the "href" attribute of the "Content" node which contains the custom encoded URL.

The XML URL from above will be used now from the "Add any Gadget From URL" Gadget as I explained in a previous post[2]

Now you can enjoy a slide show (or many since you just need to produce an XML file per album) of your favorite Picasa album in the left pane of your GMail WEB interface.

Of course if you get serious about Gadget programming you could use the official catalog directory[3] from Google to publish them, join the Google Gadget team and so on.


[1] http://philippe.chappuis.googlepages.com/slide-show-media-rss
[2] http://thinkinginsoftware.blogspot.com/2008/10/google-gadgets-everywhere.html
[3] http://www.google.com/ig/directory

Wednesday, October 29, 2008

Google Gadgets Everywhere

Portlets, Mashups, Gadgets are on top of the greatest Web components reusability nowadays.

A Google Search Gadget is perhaps one of those that are on the top of demand for custom websites. But the list is getting bigger opening serious possibilities to increase once again productivity and why not FUN.

Adding a Google Gadget to your personalized Google page or iGoogle is just a matter of browsing Google Gadgets [1] and clicking on the button "Add it now".

But now gadgets are starting to be supported in other personal google pages like GMail. The process is not that straight forward though and I think the "Add it Now" button will pretty soon change to a select box to allow users to include the Gadget in GMail, their own web pages and more! (Desktop perhaps ;-) For now those officially available Gadgets you can use from your own websites are listed in [2].

Here is how you get your Google Gadgets in GMail or other places capable of parsing XML defined modules (Google Gadgets specified by XML resources) Please be advise that not all XML defined modules will work from GMail. It will depend on how generic the final markup is.

1. Locate your "New Gadget URL". It is an XML file which so far can be found somewhere as part of the gadget main page. For example a good place to look for gadgets is of course the official Google Gadgets directory[1]. Locate the "View Source" link to get the URL of the XML file (Gadget URL). Just as a reminder, you can copy the link right clicking in your browser BTW.
2. To add your "Gadget URL" to Gmail be sure you have available a Gadget called "Add any gadget by URL". To get it follow path: Settings|Labs|"Add any gadget by URL"|Enable|Save Changes"
3. Follow path "Settings|Gadgets". Locate "Add any gadget by URL". Insert your new Gadget URL in the text box ...|Add".

[1]
http://www.google.com/ig/directory?type=gadgets
[2] http://www.google.com/ig/directory?synd=open

Sunday, October 26, 2008

Hosting Custom Domains in Google (GAE)

Google Application Engine allows for free hosting of (so far) Python Web applications. I was trying to map my GAE application to my domain nestorurquiza.com which I bought from godaddy.com when I found it was not that straightforward.

Google by the time of this writing is not accepting domain transfers neither mapping "naked" domains [1] which means I cannot host my external bought domain using either of these possibilities.

However if your domain account provider allows for URL Forwarding [2] like godaddy.com does then you can solve your problem as follows:

1. From http://appengine.google.com/ access your application to be mapped. Go to Versions, Add Domain. Click on "Sign up for Google Apps" Complete the form there (Remember your account admin information). Add your domain (for example nestorurquiza.com) and follow instructions in your email or from the web clicking on the link to verify your domain ownership. You might have to add a CNAME for your domain.

2. From your Google Application Engine Control Panel (in my case https://www.google.com/a/nestorurquiza.com) go to "Dashboard" "Service settings" "Add more services" and Enter your appId for "Google App Engine". Add as a Web Address "http://www..."

3. You might want to set up email delivery through Google. In order to make Google your email host follow the steps from "Dashboard|Set up Email" adding the proper MX records as directed there.

4. From your provider DNS admin page (godaddy.com for example) create a CNAME record for www (CNAME www ghs.google.com)

5. Your app should be accessible from www. now. So go to your provider DNS admin page and forward http://your-domain to http://www.your-domain

6. After some minutes your site will be accessible both from naked (just FQDN) domain (http://nestorurquiza.com) or www domain (http://www.nestorurquiza.com)

7. You can configure email, domains and more from your partner page (in my case http://partnerpage.google.com/nestorurquiza.com)

References:
[1] http://www.google.com/support/a/bin/answer.py?answer=91080&hl=en
[2] http://www.google.com/support/a/bin/answer.py?hl=en-in&answer=61057

Monday, October 06, 2008

Using free Services instead of maintaining your site

I have no time to maintain my own site (at least I have not find it so far) so everytime I have a need (Source Code, WIKI, blog, RSS) I look for some free service to host my personal stuff. Of course it also means that I am restricted in security but so far it works for me. Below a list of some of those free services I am currently using:

Blog
RSS/Atom
Source Code
WIKI

Followers