ibm

Get ClearCase Snapshot Views via ClearCase Automation Library (CAL)?

Good afternoon, Is anyone using the ClearCase Automation Library (CAL) successfully to retrieve snapshot views? I can get all the dynamic views just fine, but not a single one of my snapshot views appears in the 'Connection.get_Views(true, region);' command... Is there any way to get these programmatically as ICCView instances? Cheers...

Create a Spooled File from Java with a specified Job name on iSeries

Is there a way to specifiy the JOB name when creating a spooled file? So that my created s.f. doesn't have the default "QPRTJOB". My method that creates a spooled file with the default QPRTJOB job: public static SpooledFile createSpoolFile( com.ibm.as400.access.AS400 as, PrinterFile pPrinterFile, OutputQueue outq, String ...

How do I start an IBM MQ channel in Java?

Hi guys, So my Java process communicates with a remote queue. What happens is at the end of every day, the sender channel on the receiving end is in a stopped state. Is there a way to start up that channel in Java, before accessing the remote queue? ...

Calling EJB in WAS server from another WAS server

Messages: 33 [Post New]posted Today 5:33:25 AM Quote Edit [Up] Hi, I have a EJB deployed in WAS server which I am trying to call from a POJO code running in another instance of WAS server. For security I have same custom registry in both the servers and have created and synchronized LTPA keys in both the servers. But when I try to find...

Prevent Encryption (Krypto) Of Url Paramaters in IBM Commerce Server 6

Hi we are using IBM Commerce Sever Moving from one view to another using via code like below. protected void prepareResponse(){ ... String returnUrl = "www.example.com/aNewPage.jsp?aUrlParameter=123&anotherParameter=654" ... StringBuffer sb = new StringBuffer(returnUrl); sb.append("&storeId=").append(commandContext.getStoreId()); sb.app...

open type dialog is empty - RSA (Rational Software Architetc) for WebSphere 7.5.0 on Linux (Ubuntu 9.04)

I have a fresh install of RSA 7.5.3 in Linux (Ubuntu 9.04). I've create a new workspace with one Java project. When I open the "open type" dialog I get an empty box - see attached screenshot. You can notice that there is no package specified at the bottom of the dialog. when I try to look for a class I get the following exception: Error...

Japanese COBOL Code: rules for G literals and identifiers?

We are processing IBMEnterprise Japanese COBOL source code. The rules that describe exactly what is allowed in G type literals, and what are allowed for identifiers are unclear. The IBM manual indicates that a G'....' literal must have a SHIFT-OUT as the first character inside the quotes, and a SHIFT-IN as the last character before the...

JNDI lookup when two WAS profile share same machine

Hi, I have two profiles in my machine and in one profile I have deployed an EJB which can be looked up from a POJO in another profile. But the profile from which I am doing the lookup ends up doing the lookup in its own node. If I deploy this two application in two different machine I can perform the lookup. Some one has told me that cr...

Jurisdiction policy files are not signed by trusted signers!

We have next exception during starting of our application under JBoss on AIX: Caused by: java.lang.SecurityException: Cannot set up certs fo 12:56:25,055 INFO [STDOUT] r trusted CAs at javax.crypto.b.<clinit>(Unknown Source) at java.lang.J9VMInternals.initializeImpl(Native Method) at java.lang.J9VMInternals.initialize(J...

Sun VM options

hi, what is Sun VM's equivalent option to IBM VM's -Xcheck:jni:alwayscopy ? ...

Unicode support for xp and server 2000

Hi all, I am getting error on windows server 2000 "unsupported unicode format" while reading message from IBM MQ. but its working on xp. i am using UTF8 unicode. ...

IBM WebSphere vs Oracle Fusion

I have been asked to research the advantages/disadvantages the two application servers, but am new to the space and am having a terrible time finding an unbiased comparison of the two platforms. I understand that this is a broad question and I hate that I can't give a very specific use case (other than it will be an implementation in an...

what language was cybersyn/cyberstride implemented in?

I am aware that it was implemented on the IBM 360 mainframe architecture but does anyone know what language(s) were used in particular? Supposedly the bulk of it was programmed and deployed in 3-4 months - that is a pretty rapid turn-around for any project let alone one which had the capability to monitor an entire economy. I am partiall...

What exactly is "Insunix"?

Searching on Internet, I found that "Insunix" is related to "Informix" a family of IBM's products for servers and databases, but I couldn't find what exactly is "Insunix". ...

Can you extract the value of strings from an IBM PHD java heap dump?

I have a PHD format heap dump from an IBM jvm and I wish to examine the values of some strings. With the Sun JVM's binary hprof dumps this is possible, but I haven't been able to recover this information from an IBM dump. I've tried: Eclipse Memory Analyzer (0.8.0.200906170940) with IBM's DTFJ Portal Heap Dump Reader (1.3.0.2009032416...

What's the default heap size for IBM's J9VM?

I have IBM's J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3) installed. After getting an OOM, the size of the heap dump is 383MB. How much heap does the JVM have? The reason why I ask is that a 400MB heap dump seems a bit much for the default 64MB heap that I expect but I didn't specify any -Xm options. Does J9 use a different default heap siz...

DB2 automatic trim tailing whitespace

This is data in TB_USER table USER_USERID -------------- A111 A9999 ADMIN AHO AHO2 AHO3 AHO4 ...and schema of TB_USER table is COLUMN_NAME DATA_TYPE DATA_LENGTH -------------------- --------- ----------- USER_USERID VARCHAR ...

How can I get the EBCDIC value of a character in RPGLE?

I need to have some way of converting single characters in RPGLE into integers - does anyone know a good way? It has to work for all possible inputs and ideally provide a different integer for each input - at the very least it must provide a different value for all common inputs. I don't care particularly what the integers are. In a C li...

DB2 9.7 cannot enable PL/SQL syntax

After I installed DB2 9.7 Express, I tried to enabled DB2 to support PL/SQL by following command: DB2SET DB2_COMPATIBILITY_VECTOR=ORA then I got result as below: DBI1301E Invalid value. Explanation: The value specified for the registry variable is invalid. User response: Refer to the DB2 Information Center to determine the valid...

Why this warning from IBM XL C/C++ compiler?

Here's a minimum code example that illustrates the problem: #include <iostream> class Thing { // Non-copyable Thing(const Thing&); Thing& operator=(const Thing&); int n_; public: Thing(int n) : n_(n) {} int getValue() const { return n_;} }; void show(const Thing& t) { std::cout << t.getValue() << std::endl; } ...