ibm

Installing IBM JRE on Windows (a non-IBM machine)

I'm developing a Java 5.0 application that connects to Websphere Application Server default messaging queues. My application will be deployed on Windows server (with sun JDK installed by default), in order to connect to the Websphere queues I have two choices: Using IBM JRE Using sun JRE, copying some IBM JRE's jars, setting some JVM ...

Does IBM Doors support design documents?

In my company we use IBM Doors (formerly Telelogic Doors) for requirement management. We're starting now the development of a new series of applications and we were wondering if Doors would be suitable to accommodate our design documents that were previously made with simple doc files. Basically such document hold text and some diagram...

IBM ICU - String conversion functions

In IBM ICU C library are there any string to number conversion functions. Something like atoi and atoll. I am looking for ICU function for string conversions - Cross platform, cross compiler and 32 and 64 bit version. 1. Function should throw an error. overflow or underflow. 2. I thought using "errno" -- But errno is not set in all plat...

RAD Websphere - EAR not picking up latest jar

Hi, I am using RAD 7.0. My web application works with a jar(contains the backend code for our application) which undergoes frequent changes. But whenever I replace the jar in the WebInf/lib folder of the war and restart the server, it does not pick up the latest jar. It keeps referring to the previous jar. I have to undeploy, restart se...

IBM Functional Tester - Form upload file

Hi, I'm trying to create test script to fill form and upload file using this form. I can fill the form but I don't know how to set a file which I would like to upload to server. How can I do that? ...

Best way to access data stored in relational files (not DB2) on an AS400, using .NET?

We have need to connect to an AS/400 from .NET (C#) and access (read and write) data. The issue is the data is stored in relational files on the mainframe, not in a DB2 database. What is the best way to accomplish this? I would love to use an ADO.NET Entity Framework type solution, but I believe the compatible data providers only work ...

Websphere Portal

What is the Websphere portal6???? What all can i do with this??? How can i install or run this thing??? What langauge is used in it??? is it free??? is it somewhat like drupal?? so plzz excuse my ignorance m a newbie and hv spent a lot of tym over net for finding the answer to there questions.... so plz help me out guys ...

Java HttpClient NoSuchAlgorithmException

I'm using IBM's build of Java with HttpClient and having little success. Whenever I use the HttpClient object's executeMethod(), I get a NoSuchAlgorithmException. Dec 22, 2009 2:59:58 PM com.ibm.rcp.security.ssl.PlatformSSLProtocolSocketFactory createPlatformSSLContext() WARNING: CWPST502W: The algorithm for recovering the key from th...

How to attach a debugger to WAS?

Hi all, I need to attach a debugger to a remote instance of WAS and know that debugging is enabled. The problem is getting WID or whatever IDE I wanted connected to the server so I can step through the code. I tried using Netbeans to connect and I get handshake failed, connection interrupted. The debugger is listening on port 7777. ...

301 redirect on IBM WCM

On IBMs Web Content Management System how can I setup a 301 redirect, I can't seem to find any information on how to do this. The version of WCM the site is running is 6.0.1.4 ...

How to access application.xml file of an EAR deployed to IBM WebSphere 6.1

I am deploying an EAR file to the IBM WebSpehre server 6.1 - I want to be able to access the EAR application name which is stored in the deployment file under 'display-name'. Looking through stack overflow posts on related subjects, I've been able to gather that this is possible via the Java MBean API - or IBM's WAS API - Problem is I c...

TeamCity and IBM Rational Team Concert (RTC) Integration

Has anyone used TeamCity with Rational Team Concert (RTC) ? Is there any other continous integration for RTC? ...

NHibernate with informix database "IBM IDS"

Hi All, which NHibernate driver can i use with informix database "IBM Informix Dynamic Server" ? Thanks, Amjad. ...

Interpreting a JVM Class cast exception error message - what is the original type that can't be casted

I have a Java production system with IBM JVM running on Linux. A customer reports the following exception printed to the log: java.lang.ClassCastException: [B incompatible with java.lang.String When trying to cast the individual attributes returned from: javax.naming.directory.InitialDirContext(...) From this exception I can't figure ou...

I have an interview for a DB2 C++ developer internship and IBM coming up and need to know how to best prepare

I got an interview for a DB2 C++ developer internship at IBM. I have the option of doing it over the phone or in person. Which would you recommend? Is it appropriate to say in my reply email "What will be the nature of the interview so I can best prepare for it?" so I can found out just how technical and code-based it will be. But in ge...

IBM MQSeries Problem

I am trying to write to an IBM MQSeries host with: public void WriteMessage(string message) { queueMessage = new MQMessage(); queueMessage.WriteString(message); queueMessage.Format = MQC.MQFMT_STRING; queuePutMessageOptions = new MQPutMessageOptions(); queue.Put(queueMessage, queuePutMessageOptions); } My errorcat...

How do I know if a server supports SSL?

I need to connect to a host, if it's off-line I get a TCP timeout (and it's ok), and if it's online with SSL available, I proceed to the logon phase. The problem is, when the server is online, accepts connection on the configured TCP port, but then doesn't answer to SSL handshake, our application waits indefinitely for an answer. I'm u...

IBM Websphere Community Edition as VM appliance

I want to create a simple virtual machine with the IBM WAS Community Edition installed. Does the licensing allow publishing the complete appliance? (I want to use Debian without any non-free packages for everything else.) ...

Create IBM DB2 CHECK for date greater or equal current date

I'm trying to create a table with a field that has a starting date, I want to put in a check to mkae sure that a date before today cannot be entered in. This is the code i have so far for that table CREATE TABLE client_service ( NHS_num Varchar(10) NOT NULL, service_id Integer NOT NULL, starting_date Date NOT NULL CHECK(star...

Implement 3270 protocol in Java

I've got a big problem with IBM HACL for accessing a server which speaks 3270 protocol. The library keeps crashing, and our JNI wrapper is actually a bug-fixing layer for the poorly-implemented and poorly-documented library (and I suspect we have introduced new bugs with it too). Moreover, in our company, everybody knows Java, and could ...