Remote Access Service(RAS)
-
Hi All, I am not familiar about RAS in Windows CE.I have GSM/GPRS Modem and I want to send & receive data using RAS programatically.Also I want to create,delete phone entry. Can any one tell me how to implement RAS using eVC++ ? How to do RAS using GSM/GPRS modem.? How to establish a connection using RAS? How to access the remote server using RAS ? Please let me know if you have any idea in this regard. Thanks, Siva
-
Hi All, I am not familiar about RAS in Windows CE.I have GSM/GPRS Modem and I want to send & receive data using RAS programatically.Also I want to create,delete phone entry. Can any one tell me how to implement RAS using eVC++ ? How to do RAS using GSM/GPRS modem.? How to establish a connection using RAS? How to access the remote server using RAS ? Please let me know if you have any idea in this regard. Thanks, Siva
AKSIVAKUMAR wrote: Can any one tell me how to implement RAS using eVC++ ? There is a RAS API in Windows CE 3. All functions' names begin with RAS. You can look it up in your evc help. AKSIVAKUMAR wrote: How to do RAS using GSM/GPRS modem.? Ask your carrier about the specific parameters, create a RAS connection, and use
RasDial
to establish the connection. When it is up, there should be an available internet connection for your application. AKSIVAKUMAR wrote: How to establish a connection using RAS? See above. AKSIVAKUMAR wrote: How to access the remote server using RAS ? After the connection is established, you can start using HTTP, FTP or any other inernet protocol. It should be automatic. AKSIVAKUMAR wrote: Also I want to create,delete phone entry. UseRasDeleteEntry
to delete the phone book entry. UseRasSetEntryProperties
to create a new RAS phone book entry.