Program with J2ME and C#

  • Thread starter Thread starter pei_world
  • Start date Start date
P

pei_world

I am doing a project with Client/Server.
on the server I have C# Windows application
on the Client I want to use J2ME,
//============
question is if it is possible to make them communication
using web service
 
Hi,

Not sure that web services is fully supported in J2ME. Support is there.
One other way is communicate with server by sending /receving xml stream
thru HTTPConnection object or StreamConnection object. Instead of a web
service u can have a asp.net which receives xml and sends xml as response.

The following page containing technical articles and tips on J2ME might be
helpful to u.
http://developers.sun.com/techtopics/mobility/reference/techart/

Hope this helps...

Girish.
 
by the way, anyone have some sample code for formating data
into XML and put it into stream, send across the network.
 
Look up SOAP, that's exactly what you need.


pei_world said:
by the way, anyone have some sample code for formating data
into XML and put it into stream, send across the network.
 
Back
Top