CDC:HTTPS
Hi,
Any body have idea, How to incorporate https in cdc application.
We have CDC application which talks to tomcat using web service. I configured tomcat for https, port number 8443.
What kind change i have to make in client side. Please help me , its very urgent.
Thanks in advance,
Balaji
If there is a MIDP>=2.0 for shipped with your target device, that will be as simple as a
HttpsConnection c = (HttpsConnection)Connector.open(url);
to get a HttpsConnection. Read the documentation of MIDP (>=2.0) for details on this rather generic way. else you should read the documentation of your vendor implementaion.