4

I have sample tcp server running @ localhost:5050. Connecting to it from BlackBerry is via MDS-CS simulator,and it caches the data with max of 8192. From the Blackberry forums, i understood that, there is a way to bypass it directly to the server.

My Configuration is as follows,

IDE : BlackBerry JDE 4.7.0 
Platform : Vista 
Server : TCP Server running localhost:5050
ap400200
  • 320
  • 3
  • 16

1 Answers1

3

You can use direct TCP. When running in the simulator you can just add ";deviceside=true" to the end of your URL. Out on a real phone I don't think it is so easy - I'm also looking for a solution.

Phil
  • 4,377
  • 3
  • 21
  • 10
  • thanks :), i have been dwelling in BBforums for the last 2 days , .. lol .. knew it had a simple solution , YIPPEE – ap400200 Jun 12 '09 at 12:53
  • It works on a real phone too, but on a real phone you may also have to configure your TCP APN - partly depending on your device & carrier. BlackBerryFaq has a decent list: http://www.blackberryfaq.com/index.php/Carrier_specific_APN/TCP_settings – Anthony Rizk Jun 12 '09 at 13:31
  • Also note that you only need to set up an APN on GSM carriers, and even then some of the newer devices already have an APN built in to the device (so you don't have to specify it on the URL). CDMA devices work without an APN. – Marc Novakowski Jun 12 '09 at 19:12
  • So we dont need mds simulator to be started when we are adding deviceside=true to the url??? – Bohemian Nov 27 '09 at 13:03