Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When connecting with a ConnectionFactory works on the simulator and doesn't work on a real device Torch 9800 works on Curve 9300 i ran the Network Diagnosis Tool on both showed an successful test with wifi on the curve but on the torch all tests fail, the strange part is that the browser works but both application and Network Diagnosis Tool fail. Can someone give me a clue ?

Added code :

ConnectionFactory cf = new ConnectionFactory();
         cf.setPreferredTransportTypes(new int[]{
                    TransportInfo.TRANSPORT_TCP_WIFI,
                    TransportInfo.TRANSPORT_TCP_CELLULAR,
                    TransportInfo.TRANSPORT_WAP,
                    TransportInfo.TRANSPORT_WAP2,
                    TransportInfo.TRANSPORT_MDS,
                    TransportInfo.TRANSPORT_BIS_B
                });
        ConnectionDescriptor cd = cf.getConnection(s);
        if (cd!=null){
            connection = (HttpConnection) cd.getConnection();
        }else {

            String appendix = getBlackBerryConnectionParams();
            System.out.println("Strng: "+appendix);
            connection = (HttpConnection) Connector.open(s+appendix);
        }
share|improve this question
Can you post the code you use to setup your connection, including the preferred and disallowed connection types? – jprofitt Sep 22 '11 at 13:47
Posted the code ... hope this is helpful – Victor I. Sep 22 '11 at 14:05
I would highly recommend combining / re-writing this question with your other question as they are really the same question, this is just slightly more refined now that some of the issue has been discovered (stackoverflow.com/questions/7502562/…) – Scott W Sep 22 '11 at 16:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.