I would like to create a webservice
(either SOAP or REST
) in java with jdk 1.5 (deployed Weblogic 9.2 which is 1.5 compatible) and the same will be consumed by the client created with jdk1.6.
Is the above claim fine? Or both the clinet and the server should be created of the same jdk version?
I know this might be reduntant question, but i'm unable to find a satisfactory answer googling.
- What are the better options(frameworks,methodology etc.,) to develop java webservices with jdk 1.5 ?
- SOAP and REST have their own advantages and disadvantages, I would like to know if the clinet is not via a web browser (but a standalone java program or so), then what is the better approach to get along.. SOAP or REST? Added to this, I also need the webservice to be secure i.e, user authenticated possibly..
Thanks.