hello All,
I am a bit new to the netwoking part of the Symbian c++. I have created a project in java but now i want to do the same in Symbian c++.
I have a few classes in java that i have created. I was wondering that if someone can help me with a bit of conversion.
to start with . the following code fragment is written in j2me which i need to convert in Symbian c++. The class XmlWriter has to be extended from Outputstream so that i can send the text data to my server.
some ideas please for which is the substitute classes OutPutStreamWriter/InputStreamReader in Symbian C++.Code:public class XmlWriter extends OutputStreamWriter
and then this code
some substitute classes for SocketConnection,OutputStream,InputStream etc.Code:SocketConnection sc =(SocketConnection)Connector.open(//some ipaddress and port no.); OutputStream os = sc.openOutputStream(); InputStream is = sc.openInputStream();
some sample code if i can go thru. anything at all will be of great help.



