Hi, Steve.
First, thanks for clarifying your requirements......
Since you've already done some sockets programming (in Rexx), this will
be very similar.
There are a couple of socket APIs available on CMS, if you don't want to
use the Rexx sockets function package (Adam and I like it, 'cause we
just like to code in Rexx; but your performance requirements may
precludes that...). You can:
1) use the OpenExtensions (I think that's today's name) callable
services from Assembler to work with sockets.
2) use the Reusable Server Kernel tool, which supports the development
of very hight performance TCP/IP based servers, again in assembler.
3) use the LE callable socket functions from a HLL like COBOL.
Good luck.
DJ
Steve Gentry wrote:
Communicate: Well, that's the issue. That's one of the things I need
guidance on.
The application would run on VM and request the information from a WAS
server running on Intel.
That information would then be returned to the VM app.
I assumed they would communicate via TCPIP
I've done this using Rexx sockets but in the other direction. i.e. I
have an app. running on an http server running on Linux (running on an
IFL running VM)
using hipersockets, etc.
It requests info from VM, sends it back and displays it on a web page.
But remember, I'd really like to avoid using Rexx sockets. If it is
absolutely the only way to do it, then so be it.
*Dave Jones <[EMAIL PROTECTED]>*
Sent by: The IBM z/VM Operating System <[email protected]>
03/21/2006 01:54 PM
Please respond to The IBM z/VM Operating System
To: [email protected]
cc:
Subject: Re: VM, assembler and SOCKETS
Hi, Steve.
Yes, I done something very similar to this. How are you planning to have
the Java program communicate with he z/VM (CMS-based?) application?
Would the Java/WAS environment be in a different z/OS LPAR or be running
as a guest of z/VM?
This shouldn't be all that hard to do, once we understand the
particulars a bit better.
DJ
Steve Gentry wrote:
>
> Hello. I'm trying to determine if it is possible to call/invoke a
> Webservice from a program running on VM.
> We would like to write it in (and listed in order of preference)
> assembler, Cobol or Rexx.
> The java program would run on WAS and it is the program that the program
> on VM would need
> to invoke. We would need to pass parameters from VM to the Java
> program, do something with that
> data and then return the results to the calling program and display
> those results on a green screen.
> Has anyone done this? Are there any examples or manuals, etc. on how to
> do this?
>
> Thanks,
>
> Steve G.