views:

181

answers:

2

How can I force Websphere to compile my .tag files?

Cleaning the project, publishing, restarting the server, adding and removing projects all don't help - the .class file for the tag file is not being recompiled.

If I delete the .class files, I get an error that the class is missing, but it does not recompile

A: 

This might not help but there is an option during application install that you can tick to pre compile jsp pages, this may compile your .tag files

Karl

Karl
A: 

So far, my best answer is to delete the relevant contents of the /temp directory, for that war which resides under your server profile. This will force a recompile of all jsp in the app, including the .tag files.

Neville Harrison