Re: how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-11 Thread Timothy Sipples
Rob Wunderlich writes:
z/OS DB2 tends to lag behind Windows in function. Check which
version you are running on z/OS compared to the Windows version.

Just to expand on what Rob is saying, if you're running an older version of
DB2 for z/OS, then Rob's concerns likely apply.

However, a lot has changed concerning DB2 for z/OS in the past couple
versions. If you draw a Venn diagram, there's mostly overlap, but the area
outside DB2 z/OS (and inside DB2 Linux/UNIX/Windows) has gotten smaller
(and continues in that direction), and the area outside DB2 LUW (and inside
DB2 z/OS) has been getting a bit bigger lately. There are a lot of reasons
for these trends, but that's a topic for another thread.

There's a great bit of documentation, SQL Reference for Cross-Platform
Development, which I would recommend for developer audiences. You can find
it here:

http://www.ibm.com/developerworks/db2/library/techarticle/0206sqlref/0206sqlref.html

Hopefully this book will get updated for DB2 Version 9 very soon, but the
DB2 V8 guide is quite valuable. I think every developer who writes code
that accesses databases should have a copy of this book close by.

As a general rule with WebSphere applications, it's not too hard to
redirect them from using DB2 V8 LUW (or earlier) to using DB2 V8 for z/OS.
Or V9 to V9 (and often even V9 to V8). Yes, it's something you want to
think about and plan, but, in general, it's not a particular challenge.

Actually, I think in an earlier thread I alluded to the fact that
mainframes measure and monitor, and that alone can be a shock for
developers with code that hasn't been previously measured and monitored. If
the code and/or database-related logic is inefficient, you can still run
it, but the mainframe will tell you exactly where it is inefficient. And
that alone can be a blow to many developer egos. :-) Just make sure you
understand and prepare for the psychology involved there. :-)

- - - - -
Timothy Sipples
IBM Consulting Enterprise Software Architect
Specializing in Software Architectures Related to System z
Based in Tokyo, Serving IBM Japan and IBM Asia-Pacific
E-Mail: [EMAIL PROTECTED]
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-10 Thread Rob Wunderlich
On Sat, 8 Dec 2007 12:22:31 +0330, legolas wood [EMAIL PROTECTED] 
wrote:

Does DB2 work in the same manner, I mean db2 for windows and linux are
alike?
I know that some features that are available in windows and *nix based
version are not available in zOS. I will not use them.

z/OS DB2 tends to lag behind Windows in function. Check which version you 
are running on z/OS compared to the Windows version. 

In my experience, as long as you are doing basic SQL stuff, it ports fairly 
well. I don't use Windows DB2 but I frequently develop J2EE apps using MySql 
on the desktop and deploy to z/OS DB2 for production -- no problem. 

-Rob

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-07 Thread Gray, Larry - Larry A
NOTICE:
All information in and attached to the e-mail(s) below may be proprietary, 
confidential, privileged and otherwise protected from improper or erroneous 
disclosure.  If you are not the sender's intended recipient, you are not 
authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message.  If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message (electronic, paper, or otherwise).  Thank you.

What is the volume of web hits you are expecting?  I would not think
clustering and load balancing would be any different.  Clustering is
done through the admin console, so it should be the same.  Depending on
your user group and the required app availability, you might not need to
cluster.

As for the DB2 questions, I do not work with DB2.  That is a different
group of people here.   


Larry Gray
Large Systems Engineering
Lowe's Companies
336-658-7944

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of legolas wood
Sent: Saturday, December 08, 2007 3:53 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: how much difference is between deploying a j2ee application
in Z/Os and in windows?

Thank you for your reply.
You both ease my mind in order to proceed with the task.
my job is to port a J2EE application from a another application server
and database to websphere and DB2, after that I will have some help from
trained Z/OS administrator to deploy the application to z/OS.
things that made me worry was about changes that could be seen in WAS
for windows and WAS for zOS.
But it looks that there would be almost no changes :-).

How ever, I think the clustering and load balancing will differ, wont
they?
What is usually administrator or developer uses as a load balancer in
front of clustered WAS?


Does DB2 work in the same manner, I mean db2 for windows and linux are 
alike?
I know that some features that are available in windows and *nix based 
version are not available in zOS. I will not use them.

Are there some dramatic changes in DB2 for zOS and windows based DB2? If

i develop the database and its Stored procedure in windows will it be 
easy to deploy them in zOS?

Thanks.




Timothy Sipples wrote:
 I concur with Larry: deploying J2EE applications to WebSphere
Application
 Server for z/OS is the same as, say, WebSphere Application Server for
 Windows.  There are multiple ways to do it, but typically you'd use
the
 Web-based WebSphere Administrative console install wizard just as you
would
 on any other platform. The WebSphere Information Center has details:

 http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp

 I'm trying to think of any exceptions, and the only ones I can think
of are
 very minor indeed. For example, you won't ever see a Windows-style
server
 drive letter (e.g. C:\MyServer\AppsOnMyServer\...) in the Web panels.
I
 think the Administrative console says WebSphere Application Server
for
 z/OS for the branding. Here and there you might see an extra field or
 option, to provide additional controls available for z/OS, but if you
don't
 know what they are just take the defaults. Administrative access
control
 will be validated with whatever WAS z/OS security system you're using,
 typically the z/OS Security Server (RACF), rather than a Windows
sign-on.

 You can also use the remote deployment feature in, for example,
Rational
 Developer for System z or Rational Application Developer. This is how
your
 J2EE developers would normally do things when they want to deploy an
 application to a remote server. Your developers will have absolutely
no
 problem with this, other than perhaps the mental adjustment when they
 realize how easy and identical it is to deploy to the big iron.

 The WebSphere product developers really did a beautiful job.

 - - - - -
 Timothy Sipples
 IBM Consulting Enterprise Software Architect
 Specializing in Software Architectures Related to System z
 Based in Tokyo, Serving IBM Japan and IBM Asia-Pacific
 E-Mail: [EMAIL PROTECTED]
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

   

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-07 Thread legolas wood

Thank you for your reply.
You both ease my mind in order to proceed with the task.
my job is to port a J2EE application from a another application server 
and database to websphere and DB2, after that I will have some help from 
trained Z/OS administrator to deploy the application to z/OS.
things that made me worry was about changes that could be seen in WAS 
for windows and WAS for zOS.

But it looks that there would be almost no changes :-).

How ever, I think the clustering and load balancing will differ, wont they?
What is usually administrator or developer uses as a load balancer in 
front of clustered WAS?



Does DB2 work in the same manner, I mean db2 for windows and linux are 
alike?
I know that some features that are available in windows and *nix based 
version are not available in zOS. I will not use them.


Are there some dramatic changes in DB2 for zOS and windows based DB2? If 
i develop the database and its Stored procedure in windows will it be 
easy to deploy them in zOS?


Thanks.




Timothy Sipples wrote:

I concur with Larry: deploying J2EE applications to WebSphere Application
Server for z/OS is the same as, say, WebSphere Application Server for
Windows.  There are multiple ways to do it, but typically you'd use the
Web-based WebSphere Administrative console install wizard just as you would
on any other platform. The WebSphere Information Center has details:

http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp

I'm trying to think of any exceptions, and the only ones I can think of are
very minor indeed. For example, you won't ever see a Windows-style server
drive letter (e.g. C:\MyServer\AppsOnMyServer\...) in the Web panels. I
think the Administrative console says WebSphere Application Server for
z/OS for the branding. Here and there you might see an extra field or
option, to provide additional controls available for z/OS, but if you don't
know what they are just take the defaults. Administrative access control
will be validated with whatever WAS z/OS security system you're using,
typically the z/OS Security Server (RACF), rather than a Windows sign-on.

You can also use the remote deployment feature in, for example, Rational
Developer for System z or Rational Application Developer. This is how your
J2EE developers would normally do things when they want to deploy an
application to a remote server. Your developers will have absolutely no
problem with this, other than perhaps the mental adjustment when they
realize how easy and identical it is to deploy to the big iron.

The WebSphere product developers really did a beautiful job.

- - - - -
Timothy Sipples
IBM Consulting Enterprise Software Architect
Specializing in Software Architectures Related to System z
Based in Tokyo, Serving IBM Japan and IBM Asia-Pacific
E-Mail: [EMAIL PROTECTED]
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

  


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-06 Thread legolas wood

Hi
thank you for reading my post.
Can some one please let me know how much different is between deploying 
an application into websphere application server installed in Z/OS and 
an application server installed in windows or linux?


What are the main area of risks when we migrate from windows to Z/OS or 
Z/Linux?
Also, what are main risk area of moving from windows and DB2 to Z/OS  
and DB2?


Thanks

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-06 Thread Gray, Larry - Larry A
NOTICE:
All information in and attached to the e-mail(s) below may be proprietary, 
confidential, privileged and otherwise protected from improper or erroneous 
disclosure.  If you are not the sender's intended recipient, you are not 
authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message.  If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message (electronic, paper, or otherwise).  Thank you.

I am not familiar with the Windows version, but I know that the same ear
that can be deployed on AIX can be deployed on z/OS with no changes.   I
have done this before.  The admin console for WAS 6.x is mostly
identical on either platform.  The only risk I know is that you might
get better reliability with the z/OS version.


Larry Gray
Large Systems Engineering
Lowe's Companies
336-658-7944

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of legolas wood
Sent: Friday, December 07, 2007 7:48 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: how much difference is between deploying a j2ee application in
Z/Os and in windows?

Hi
thank you for reading my post.
Can some one please let me know how much different is between deploying
an application into websphere application server installed in Z/OS and
an application server installed in windows or linux?

What are the main area of risks when we migrate from windows to Z/OS or
Z/Linux?
Also, what are main risk area of moving from windows and DB2 to Z/OS and
DB2?

Thanks

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search
the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: how much difference is between deploying a j2ee application in Z/Os and in windows?

2007-12-06 Thread Timothy Sipples
I concur with Larry: deploying J2EE applications to WebSphere Application
Server for z/OS is the same as, say, WebSphere Application Server for
Windows.  There are multiple ways to do it, but typically you'd use the
Web-based WebSphere Administrative console install wizard just as you would
on any other platform. The WebSphere Information Center has details:

http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp

I'm trying to think of any exceptions, and the only ones I can think of are
very minor indeed. For example, you won't ever see a Windows-style server
drive letter (e.g. C:\MyServer\AppsOnMyServer\...) in the Web panels. I
think the Administrative console says WebSphere Application Server for
z/OS for the branding. Here and there you might see an extra field or
option, to provide additional controls available for z/OS, but if you don't
know what they are just take the defaults. Administrative access control
will be validated with whatever WAS z/OS security system you're using,
typically the z/OS Security Server (RACF), rather than a Windows sign-on.

You can also use the remote deployment feature in, for example, Rational
Developer for System z or Rational Application Developer. This is how your
J2EE developers would normally do things when they want to deploy an
application to a remote server. Your developers will have absolutely no
problem with this, other than perhaps the mental adjustment when they
realize how easy and identical it is to deploy to the big iron.

The WebSphere product developers really did a beautiful job.

- - - - -
Timothy Sipples
IBM Consulting Enterprise Software Architect
Specializing in Software Architectures Related to System z
Based in Tokyo, Serving IBM Japan and IBM Asia-Pacific
E-Mail: [EMAIL PROTECTED]
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html