jcaps

Any JCAPS tutorials?

HI, I've recently started emploment at a company that uses JCAPS to perform intrgrational development. Does anyone have any tutorials i can use? ...

Creating new JCAPS eWays (like HL7, JMS, ...)

Hello, I'm wondering how, in JCAPS 6, we can create new eWays. By eWay, I mean the components like the existing HL7, JMS, File, eMails (ie, external applications) ... I am not sure about the exact name of these entites, "API oriented OTD", JBI, JCA. Basically, I would like to create an object that: - is part of the Connectivity Map - h...

Get the name of a Glassfish2 domain

Hello, is it possible to get the name of the current domain in Glassfish v2? I've got a code like: MemoryMXBean bean = ManagementFactory.getMemoryMXBean(); if (bean != null) { MemoryUsage usage = bean.getNonHeapMemoryUsage(); int current = (int) ((double) usage.getUsed() / usage.getMax() * 100); ch.log(...

JCAPS deployment to multiple external system environments.

Hope a few people in here are familiar with JCAPS. Coming from pure j2ee world, it is difficult to digest the deployment model that JCPAS offers. While creating deployment profile, we need to map the resources (such as jdbc, webservice connector) to external systems. External systems are predefined with the target server ip, port, db nam...

JCAPS little boxes of hell

Has anyone out there in SO land had to deal with this...when you go to build a new deployment profile in JCAPS, you have quite a few little boxes that you have to minimize before you can do the actual mapping (black boxes added to hide company specific info): We've tried autohotkey and are looking into Sikuli - does anyone know of a go...

Issue with JMS Listener in Sun Java App Server

Hi, I am running a listener program on a JMS queue hosted in Sun Java System Application Server 9.1_02 (build b08-p03) After receiving a message I will extract and log some details in to a log file. I observed that when running listener for really long hours, it stops receiving messages. I had to manually stop the program and start it...