java, *.jar to c# .NET


 

Use tools from ikvm.net to generate .NET libraries out of java code.

 

custom theme war file for Novell Identity Managers (IDM) User Application (UA or User App)


Was working on the software based on Novell Identity Management (IDM). IDM software package includes a peace of software called User Application – UA. It is user portal software which supports skins or templates. I had a lot of trouble to collect all the info needed to produce a custom theme. Novell documentation is incomplete and Novell forums are difficult to search and navigate. But after some time I managed.

 

http://are.ehibou.com/wp-content/plugins/downloads-manager/img/icons/winzip.gif download: novelluserappcustomtheme.zip (74.09KB)
added: 08/03/2011
clicks: 109
description: Archive contains simple directory structure for your custom Novell User Application theme. There is buildanddeploy.bat file which can be used to build and deploy a war file of the structure which is compatible with Novell User App theme engine. For better understanding just take a look at buildanddeploy.bat and buildwar.bat files and at war file directory.
http://are.ehibou.com/wp-content/plugins/downloads-manager/img/icons/default.gif download: idm-ua-custom-theme.war (73.18KB)
added: 08/03/2011
clicks: 97
description: Sample theme war file

To deploy war file manually drop it into folder similar to this:

c:\Novell\idm\jboss\server\IDMProv\deploy

strange javascript window.open problem on ie


Internet explorer fails to open popup window using window.open() if the name for the window contains at least minus symbol ‘-’. I guess it will fail in case of any other strange symbol.

<html>
<body>
<script language="javascript" type="text/javascript">
    function illegal() {
        window.open("http://are.ehibou.com", "aaa-aaa");
    }
    function legal() {
        window.open("http://are.ehibou.com", "aaaaaa");
    }
</script>

<a href="javascript:illegal()">Illegal</a> <a href="javascript:legal()">Legal</a>
</body>
</html>