The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
71 views

Give some examples of TCP Connection Status in JT400 - JAVA

I'm tried to get AS400 TCP Connection Status. but i'm failed :( can anyone help me to do this. i'm new to JT400 java development. please help me friends. i want to get IP address of a job i want to ...
0
votes
1answer
46 views

How to Get IBM i Job details Using Job Number - Java ( JT400 )

I want to get IBM i job details using that job number. i get all job list. but i want to get job details using it's job no. Please help me friends. Edit: I believe the question is 'How can I get job ...
0
votes
1answer
69 views

How to get as400 (jt400) Sign on User List

I'm developing IBM AS400 Client Access Software. I'm trying to get Sign on User List. there are have more than 70 sign on Users, but my code give me only 6 User Details. Can anyone help me to do this ...
0
votes
1answer
77 views

How to show active jobs using AS400 (JT400) client access software?

I want to develop as400 client access software. I want to monitor disk space, cpu usage etc.. And Job list. I got job list. But I want get to active jobs only. Please help me. This is my job List ...
0
votes
1answer
184 views

To get the total number of pages in an RTF document present in an IFS As400 folder in java

I have a requirement to get the total number of pages in an RTF document which resides in an IFS folder within AS400 system. I am able to get the page details for PDF documents using iTextPDF ...
5
votes
3answers
350 views

AS400.validateSignon() does not reset the failed signon attempts to 0

When I use com.ibm.as400.access.AS400.validateSignon() to authenticate a user's credentials and they pass the validation, and have successfully connected, it does not reset the "failed signon ...
1
vote
1answer
85 views

Multiple members in a file with a blob

I would like to model a simple "name->blob" structure to be used from Java using jt400.jar (essentially to store large, unchanging files inside the database instead of in the IFS) which is easily done ...
1
vote
0answers
92 views

InterruptedException in JT400

I have a Java webservice which retrieves data from an AS400 system using the JT400 libraries provided by IBM. From time to time, I get the following InterruptedException. Does anybody have a clue ...
1
vote
1answer
229 views

Firing DB2/OS/400 Trigger from Java/JT400 SQL Statement

In my OS/400 v6.x system I created an AFTER INSERT trigger for a physical file (DB2 table) using the ADDPFTRG command which is fired correctly everytime I execute a WRITE command on an RPG IV program ...
0
votes
3answers
400 views

JPA + DB2 can't execute simple query

Edit1: When Hibernate connected to MS-SQL, all columns and tables are scanning. Logs But when Hibernate connected to DB2, it is trying to make out (render) again all tables and columns which include ...
0
votes
2answers
459 views

IFS file copy using JT400 in code

I have this piece of code that would copy files from IFS to a local drive. And I would like to ask some suggestions on how to make it better. Please see code below: ================================ ...
0
votes
2answers
151 views

How to get PSF Settings in an AS400 Server using Java

I am a newbie in this site but I know anyone here can help me on this problem that I have now. I used to program Java using JDK7 and now I am facing this JTOpen API for AS400-Java interface but my ...
0
votes
4answers
1k views

Why am I getting a permission denied with JDBC and Netbeans?

We are three developers all working with Netbeans and Java. One developer can access the remote DB2 server just fine (using the same code). The other two (which includes me) can not. Here is the ...
1
vote
2answers
366 views

howto add database to swing desktop application

I have created an desktop application in Netbeans 7.0 and i have the files, app, view and aboutbox. And i want to add an database object that is accessible in the application in the duration of the ...
5
votes
2answers
2k views

Getting number of rows inserted on IBM DB2 V6R1 (AS400) through JBDC

We migrated recently to newer V6R1 version of DB2 on AS400, we are using Spring framework (v. 2.5.6.) to communicate with the database. We are calling Spring's NamedParameterJdbcTemplate.update() ...
1
vote
1answer
437 views

Calling i-series program from Java yields invalid output

I'm using the jtopen/jt400 toolkit to call programs on an IBM i-series r5v4 (aka AS/400) from Java (actually: JRuby, but I've seen the same problem in pure Java). This works just fine for some ...
0
votes
3answers
997 views

Monitor and handle MSGW messages on a job on an IBM i-series (AS/400) from Java

Does anyone know how one can automatically reply to messages with status MSGW that block a job on an IBM i-series (AS/400)? I'm using the jt400/jtopen library to access a program on an AS/400 from ...
0
votes
1answer
671 views

Retrieve an array of structs from an RPG program using jt400.jar API's

We use the com.ibm.as400.data.ProgramCallDocument class to interface with our RPG programs on the iSeries through Java. In most of the cases for our WebSphere applications we have fronted our ...
0
votes
5answers
568 views

fetching connection from JNDI >15 minutes!

I have this weird problem, web application connecting to AS400 DB2 server through JNDI, getting connection from JNDI happens to last for about 930-960 seconds!!! Usually it takes 4ms to get a ...
1
vote
2answers
1k views

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: ...
0
votes
1answer
426 views

db2 referential integrity problem

Situation is pretty serious, we have a table in DB2 on AS400 which has defined foreign key to another table, so we are entering record which have regular ID of referenced table so when we enter SQL ...
0
votes
2answers
2k views

AS400 library/file (member) JDBC query

Using JDBC (with jt400 driver / connection, naming=system) I'm running these SQL statements: "CREATE ALIAS QTEMP/SOURCETEMP FOR " + library + "/" + file + " (" + member + ")" "SELECT SRCDTA FROM ...
2
votes
3answers
878 views

AS400 style naming over JDBC

Is there any way I can use AS400 style library/file style naming over JDBC with jt400? I want to be able to run queries like: SELECT * FROM MYLIBRARY/MYFILE Thanks
11
votes
2answers
9k views

SQL query of multi-member file on AS400

On AS400 in interactive SQL in a 5250 session, select * from myfile returns rows from one member only when myfile has more than one member. How can I get rows from a specific member? Important: ...