• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How can I change the sdk version of Websphere 4 if I already install it

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
MMM... I got another question....
I'm using WebSphere 4 and I need to use the newest sdk version for it. I already installed and I wish to change only the version in the websphere application developer.
I think this is possible, like it used to be an easy way with JBuilder.
Where o how can I change the SDK (JDK) version???
I need to upgrade the version because I need to use jaxr and jax-rpc
Thanks
 
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can't be done. Don't try it. You must upgrade to a later version.
Kyle
 
Ricardo Alvarado
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, if it can't be done, can I at least use the libraries , (or some of them) of apache...
the org.apache.xmlrpc.* ???
Or that is not posible also....
If that is not possible, in the WebSphere version 4, how can I use the XML-RPC methods??? Are any implemented for WebSphere ...
Maybe I'm looking in the wrong place.
Could you help me.
Thank you, I'll really appreciate all your help.
 
Kyle Brown
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, it depends on what you really want to do. If you want to do Web Services, well, that's already included in WSAD 4 with Apache SOAP. If you want to do XML-RPC instead, just download the apache classes and add them to your classpath -- you don't need a new JDK or SDK for that.
Kyle
 
Ricardo Alvarado
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much Kyle, I'm gonna try that.
I really appreciate it.
Thanks.
 
Ricardo Alvarado
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can I add that to the classpath. Can you help me with that. Were I can find that. Thank you very much
 
Kyle Brown
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ricardo,
Tell me WHAT you really want to do. Are you trying to develop a Web Service, or use XML-RPC? You've asked for two different things. Rather than give you detailed instructions on doing something that won't solve your problem, I'd like to know what problem you're trying to solve so that I can give you the right advice.
Kyle
 
Ricardo Alvarado
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to develop XML-RPC
Trying to communicate a C program as server running in a Unix system with a Java program using WebSphere as client.
 
Kyle Brown
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is this client a Servlet or an EJB in WebSphere? (yes, it matters...)
Kyle
 
Ricardo Alvarado
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its a servlet...
 
Kyle Brown
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OK, then it's easy. Download the Apache XML-RPC classes and add them into the "lib" directory of your WAR file. The way you do this is to select the "lib" directory of your WAR project in WSAD and then select File->Import and choose "File System" as the import type. Find your JAR files in the upper chooser and make sure the target directory is the "lib" directory of your WAR project.
That should work well enough to suit your purposes. Now, my strong recommendation to you is that you need to buy a book on using WSAD -- either Howard Kushner's, Igor Livkin's, or mine. This is the kind of thing that they all cover.
Kyle
 
Ricardo Alvarado
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you kyle, I will do that.
I was a little lost on this. I remember that I did that with the jdbc classes for Oracle Connection.
Thank you.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic