Friday, January 1, 2010

WebSphere 7 book by Packtub

Well, I was asked by Packtub to review their new book on WebSphere Application Server 7. It was 3 month ago, but I finally got around to it.

The book starts kinds of slow - downloading WinSCP and Putty, installation on Linux. Not sure this is the most common developer scenario.
And I'm not sure I would learn WebSphere App Server for the first time from a book...
But then the book starts to kick off - Chapter 3 talks about Security. Insane - considering the fact that 90% of the WebSphere administrators I know don't know how to configure security. And they go into detail - configuring LDAP and stuff.
Then they go on on Tracing, Performance - what everybody should know - and they explain it in a step-by-step manner.

So from my side - I think it's a good book. Especially since so few people really understand how to work with WebSphere App Server.
On the down side - there is no Web Services chapter. With the new Web Service pack (available in WAS 6.1 and builtin in WAS 7) it's impossible to configure web services in WAS, and it's a shame the book didn't cover this complex topic (especially web services security).

Wednesday, December 23, 2009

C# String GetHashCode()

It is very difficult to Java developers to write C# code. Not because of the language - they are pretty much the same. But it turns out you make basic assumptions which are just not true.

We develop C# code that access services deployed in WebSphere ESB and send messages in WebSphereMQ. The sender creates a message identifier, that consists of the sender id, object type and more. The listener creates the same identifier, and listens to the queue with this identifier.
Suddenly - the identifier the listener and the sender create is different.

Turns out that the problem lies in the fact that the sender is a 32bit machine, and the listener runs on a 64bit machine.

Why is that a problem? Because in .net, code is not cross platform - not even between Windows environments - since the GetHashCode() function of String is not cross platform - and works differently on 32bit and 64bit machines.

Unbelievable!!!

Anyway, we wrote our own Hash function, that simply copies the java.lang.String hash() function (every JDK comes with src.zip, where you can find the java.lang.String code).

3 hours of my life wasted...

Thursday, December 3, 2009

WebSphere Process Server - skipping steps in the process

A customer of mine has decided to build an application that can monitor his processes, instead of the regular WPS supplied tool.
His main concern was skipping steps. Turns out that when a process has executed a specific activity, and this activity is in a special position (like user task) - an outside application can cause a skip in the process.
I have developed a short demo for this, and I'm enclosing the main method here. Just make sure to disable the process security before running it - or you'll get a non authorized exception...

// Connect to the server
Properties props = new Properties();
props.put(Context.PROVIDER_URL, "iiop://localhost:2811");
javax.naming.InitialContext ctx = new javax.naming.InitialContext(props);

// Lookup the BusinessFlowManager. If you get casting exception - read the InfoCenter - you need to add some JARs to your code - it's WPS/ProcessChoreographer/client/bpe137650.jar
Object lookupResult = ctx.lookup("com/ibm/bpe/api/BusinessFlowManagerHome");

BusinessFlowManagerHome processHome = (BusinessFlowManagerHome) PortableRemoteObject
.narrow(lookupResult, BusinessFlowManagerHome.class);

BusinessFlowManager bfm = processHome.create();

// Replace with any process id
ProcessInstanceData pid = bfm.getProcessInstance("_PI:90030124.f71386d4.dbed54f5.5d84025c");

// Replace with any activity name
ActivityInstanceData aid = bfm.getActivityInstance(pid.getID(),"Wait");

// Skip to the specific activity
bfm.skipAndJump(aid.getID(), "TargetActivity");

Wednesday, November 11, 2009

AspectJ 1.6 with runtime weaving and WPS 6.2

Well, I haven't blogged in ages, and it's not because I lacked things to share...
Anyway, almost all of my WPS customers are looking for some level of polymorphism (or process templating) and AOP. For the first - I currently have no solution. For the second - here comes...

  1. Download AspectJ 1.6.2.
  2. Since it's been a long time since I worked with AspectJ, I wrote a small program in Eclipse. I just made sure that it used the WPS JDK - to make sure the -javaagent flag works. It does. However, you can't use it when your eclipse works with a Sun JDK. So - add a -vm to your eclipse.ini file. (See here for details: http://wiki.eclipse.org/Eclipse.ini
  3. Now, I opened a new WID module, wrote a short process.
  4. I also created a small Java Project, which will create a JAR in the WAS/lib directory. It will include my aspects and the aop.xml file (under the META-INF directory)
  5. I started my WPS server, and put the -javaagent flag in the startup options. WAIT!!! Since WPS security is enabled by default, and the aspectJ weaver is located outside the WPS libraries - java security policy won't let it load - and you can't start your server!!! Copy the jars into the WPS lib directory. Just make sure you don't override existing files (aspectj.jar should be in WPS/lib - just rename it to something that doesn't end with JAR)
  6. That should be it - the aspects now work. However, how do we tie them to the process itself?
  7. It seems that the way WPS works is that for every BPEL activity there is a class in the com.ibm.bpe.engine package, and the doActivate method is called. So our pointcut will need to look like this - @Before("call(void com.ibm.bpe.engine.BpelActivityKind*.*(..))") - this should also explain why we put the aspect in the JAR in the WAS/lib directory - it should be in the correct class-loader level.
  8. Well the only thing missing is the actual pointcut - but it's too late for that - will publish it tomorrow morning... Don't hold it against me. I will also post the required code to get which Activity we are on. Quite cool...

Sunday, September 27, 2009

WebSphere ESB and EJBs

My next post will probably be a book review - I was asked to review a new book on WAS 7.0 administration. Cool. Hopefully I'll be able to read it in the next couple of days (did I ever mention I was a quick reader?)
In the meantime, I want to publish my findings on the use of EJBs in WebSphere ESB.
A customer of mine is using WebSphere ESB. For services, it developed EJBs (stateless, of course, but still - version 2.0).
The mediation module has imports for the EJBs.
This turns out to be a very bad architectural decision (I arrived to the project after this decision was taken :-) ) , and right now they are rewriting everything, to drop EJBs and use SCA Java components.
Why?
  1. SCA Java components are actual EJBs, so why have an EJB call an EJB? Not a smart move, performance wise.
  2. Mediation Module (6.1) EJB support is lousy. It fails generating good mapping between the Java bean parameters and Data objects. So my customer resorted into sending Strings to the EJBs, and then parsing them, at the EJB level, to POJOs, using XMLBeans. This is insane - and shouldn't be done.
So what is the current (working!) recommendation?
Use SCA Java components, in the same module, or other modules, depending on your component visibility and deployment needs.
Inside the Java component, use a mapper to map the DataObject object into real Java POJO. and then pass it to your business logic, which is implemented in regular Java Classes.

The mapper is really easy to write:
1. Use JAXB or XMLBeans to generate mapping between the DataObject XSD and a Java class.
2. Write a method that has the following signature:
public static Object mapper(DataObject do, Class clz)
3. Use reflection on the clz - create a new instance of it, and for every field decide:
3.1 If its a primitive - transform it.
3.2 If its a Java Class - call yourself in recurssion
3.3 If its an array - run over all elements

It works fine, great performance, and the development barrier was lowered by more than a few inches.

Hope it serves someone well.


Thursday, September 17, 2009

Problems installing WID 6.2 on Windows 7

I faced many problems while installing WID 6.2 on my Windows 7 machine. I won't get into the full set of problems I encountered, but the process that did work for me was as follows:
1. Don't run the launchpad application, but the installer inside IM_win32
2. Run the installer in compatibility mode, for WindowsXP SP2
3. Since I already tried installing - I had to install everything to a clean directory
3.1 This is a reported bug and was fixed in a fixpack already
4. Remove the file c:\windows\.nifregistry

I found the last tip after digging inside the installation log files, I found the following command executed -C:/Program Files/IBM/WID62/image/WPS62/iip/contrib/6.1.0-WS-WASWS/1/WinX32\WEBSV\install.exe -options C:/Users/liran.ALUNA/responsefile.WEBSV.txt -silent
And the log file specified a NullPointerException on the com.ibm.ws.install.ni.framework.product.VersionUtils.compareVersionsUpToDigit(VersionUtils.java:170)

The weird thing is that I did everything by the book, so it's not clear to me why no one else got this error. But hey - it works now...

Sunday, September 13, 2009

Working with Linkedin

I've found that I'm using LinkedIn more and more. As a matter of fact - I think I spend around 2-4 hours a week on LinkedIn - getting new connections, sending messages, and finding leads. Heck - I even found a recommendation for my kid's kindergarden from LinkedIn. Not exactly what I would expect from a professionals network.

But mostly - I try to hire people through LinkedIn. All our tests found this to be the most effective way to get CVs. From around 700 connections I usually get 40 responses (not all from my connections, and I also post in groups I belong to) - around 80% of them relevant. Much better than the junk I get from web based hiring sites, or from head hunters.

Still - I have a problem. Can't understand why LinkedIn limits me in sending messages to only 50 people at once. Considering all of these guys are my friends - LinkedIn shouldn't care about that. Heck - if they only offer this option for premium sites - I'll go premium (they don't, however).

What to do? Can't say it here (haven't checked the legal stuff yet). But I might have found a solution. It involves coding however. Tons of coding. Luckily I have strong Java roots...