在服务器上发布信息

时间:2011-07-12 10:15:22

标签: blackberry

在我的应用程序中,我需要在服务器上发布一些信息,由用户提供哪些信息。在模拟器中成功发布了信息并获得了响应代码200.

但在手机中没有信息发送到服务器。没有响应代码收到。

请帮帮我..什么是pbm ...

1 个答案:

答案 0 :(得分:0)

你需要在黑莓设备的不同运营商的URL中附加connectionString。 例如,如果使用wifi网络,则需要打开HTTPConnection,如:

HttpConnection conn = (HttpConnection) Connector.open(url+";interface=wifi"); 

其中“; interface = wifi”是connectionString。

如果是模拟器,则connectionString是“; deviceside = true”。

get connection url suffix code from here