Thanks,
Raj
I am not an expert, but have been involved in a project recently which
does what you're asking.
The way we exchange information with an OS/390 mainframe is through a
CICS gateway. Basically, we used IBMs Webshere Studio Integration
Edition, which comes with enterprise adapters to interact with CICS
using either ECI or EPI. We wrapped the copybook with a web-service,
and exposed the service via. a standard javabean.
Good Luck!
If you are running Java on the mainframe, you can use it to
read files there, but I think you need USS to do that. There
are some java FTP api's around, too, that might be better depending
on what you need to do.
Thanks,
Raj
john smith <jsm...@aol.net> wrote in message news:<3D9B5F54...@aol.net>...
Thanks,
Raj
bc <b...@example.net> wrote in message news:<3D9C3ABA...@example.net>...
Raj wrote:
>
> Hi,
> Thanks for the reply. We would actually be running Java on a
> Websphere Application Server on a UNIX machine. What is USS and can
> you point me to those FTP APIs that let me ftp a mainframe dataset?
>
> Thanks,
> Raj
>
USS = Unix System Services, gives you unix api's on the
mainframe. Since you are running on Unix, I'd expect you
will be needing to ftp the file and then read it, unless the
mainframe can share files over the network ala NFS mounting
(not sure on this one). There is an ftp api's in sun.net.ftp.*,
also there are various open source java ftp implementations.
You need to be more specific about what you're trying to do. From
"mainframe", I'm guessing that you mean OS/390 or zOS, but what type of
data are you trying to access -- DB2, IMS, VSAM?
What's the current interface to the data -- IMS/TM, CICS (ECI or EPI), 3270?
--
========================================================================
Ian Pilcher pilc...@attbi.com
========================================================================
Thanks,
Raj
Ian Pilcher <pilc...@attbi.com> wrote in message news:<s6jn9.35447$FO4.8659@sccrnsc03>...
If you want to get at the data directly, check out IBM's DataJoiner. It
may enable you to access it (read-only) with SQL. If you want to go
through the existing application, look at the CICS Transaction Gateway.