Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

5
votes
1answer
107 views

How to check GPRS Availability while sending Data through HttpConnection

I am making one Java ME Application. Here I am using HttpConnection for making Connection with webservices. I send/Receive data using HttpConnection, DataInputStream & DataOutputStream. But My ...
4
votes
1answer
67 views

ConnectionTimout versus SocketTimeout

Im having a problem with a library I am using, it might be the library or it might be me using it wrong! Basically when I do this (Timeout in milliseconds) _ignitedHttp.setConnectionTimeout(1); // ...
4
votes
3answers
237 views

httpURLConnection: how long can a post argument be?

I['m currently using something like this HttpURLConnection con = (HttpURLConnection) u.openConnection (); con.setDoInput(true); con.setRequestMethod("POST"); con.setDoInput (true); ...
4
votes
4answers
5k views

How can I programmatically test an HTTP connection?

Using Java, how can I test that a URL is contactable, and returns a valid response? http://stackoverflow.com/about
3
votes
0answers
52 views

HttpConnection with Proxy Server

I have Java ME Application that uses HttpConnection API, Here I am easily able to make connection with Proxyless server. But my Question is How can I Connect to any Live Server which uses Proxy ...
3
votes
4answers
125 views

Access to TCP-Connection via JavaScript

My goal is it to identify the TCP-Connections in a firefox-plugin. For that I need to set a unique ID to every connection. My question is, if its possible and someone knows how to get access to the ...
3
votes
1answer
825 views

Blackberry HTTPConnection best practices

I am developing a project for BB. The application works with the network and sends / receives data via HTTP. Now I use the queue and queue manager. Manager starts with a background thread and works in ...
3
votes
3answers
591 views

Is HTTP PUT supported in J2ME?

I just noticed a strange thing in MIDP 2.0 API: The HttpConnection class apidocs make explicit references to methods GET, POST and HEAD, but no other methods. Does this mean that they are not ...
2
votes
1answer
47 views

how to Upload image into server in Android?

I am trying to Upload image Capture by Camera into server. server send response code = 200 but Image is not upload into server. Code is : private boolean uploadData() { int count = ...
2
votes
2answers
275 views

J2ME, Nokia, HttpConnection

This code works fine on SonyEricsson and Motorola cellphones, but on Nokia it either fails at the beginnig not making any request at all or returns empty response, depending on model. ...
2
votes
2answers
212 views

How to do proxy tunnelling in java signed applet

how to make persistent connections behind proxy in an applet?** is Using URLConnection will do all the job? I know what i am asking is very general but i am desperate for any ideas. Acording to ...
2
votes
2answers
566 views

how to use the HTTP range header in J2ME?

is it possible to use range header in HTTP with HTTP GET request? if yes than how? I just want to download bytes from server with specified bytes. i.e if I want to download bytes from 0 to 255.
2
votes
1answer
282 views

android - send parameters while uploading file

I've got this piece of code http://pastebin.com/VrMNuxcv which successfully uploads a file onto the server from my android. I'd like to , however to be able to send a couple of string parameters ...
2
votes
2answers
605 views

BlackBerry OS 6: IOException:“peer refused the connection” on specified url

Calling Connector.open("http://MySpecifiedURL.com;deviceside=true;apn=rim.net.gprs"); Throws IOException: "peer refused the connection". This happens only with few specifies URLs, that used for ...
2
votes
5answers
830 views

Why are my ASP.NET pages returning `200 OK` without any authentication headers being sent?

Note: This question has broadened in scope from previous revisions. I have tried to simplify the issue so it can be easily reproduced by anyone. Using Fiddler, I can replay an arbitrary request ...
1
vote
2answers
62 views

Using HTTP POST to upload a file to a website

I'll start by saying that I've never really dealt with HTTP POST before and have only used GET very lightly. My problem is, there is a website with a file upload button (it is to upload your resume, ...
1
vote
1answer
43 views

Persistent HTTP Connection in J2me

I am creating Java ME Application, its frequently get data from server with 5 minute gap. Can I use persistent HTTP connection for each request? Can I use same connection for each request?
1
vote
1answer
23 views

Real world problems with placing the HTTP Connection: Header at the end

Are there any known problems with putting the HTTP Connection: field at the end of the headers? From the Standard (RFC2616, section 4.2): it is "good practice" to send general-header fields first ...
1
vote
2answers
80 views

How to get IP address through www.ipaddresslocation.org in Blackberry

I'm a newbie in Blackberry programming. I'm trying get IP address, County, city, state/province through www.ipaddressslocation.org My source : String url = ...
1
vote
2answers
218 views

java.io.IOException:Bogus chunk size

Can any one tell me why the Bogus chunk size error occurs. Exception at the swingToSvlt method:java.io.IOException:Bogus chunk size//->java.io.IOException: Bogus chunk size at ...
1
vote
2answers
113 views

HttpsURLConnection strange behaviour on android2.2

I am trying to open a https connection in android. When i run the code below in android 3 or 1.6 everything works like a charm. But in android 2.2 sometimes it gives me -1 connection response. ...
1
vote
2answers
93 views

WebClient: how to cancel a long running HTTP request?

I'm using WebClient to make a request to an API that has a very long running process. But I don't actually need to know the result, I only need the process to be started. It doesn't matter to me if ...
1
vote
0answers
23 views

HTTP: pictures not fully received. how to avoid that, i.e. force browser to try again?

I have written a small picture script which shows a directory listing with thumbnails and also previews of the pictures. Directory listing example Image preview example Source code In some cases, ...
1
vote
0answers
179 views

Blackberry HTTP POST problem

I have a problem with sending POST to server from blackberry (I currently trying on simulator). The problem is, the POST data isn't send to server. I know there are lot of topics about this, but I'va ...
1
vote
0answers
69 views

Trouble with download jpeg image

I need to download jpeg image and show it in my midlet. But when I try to run this code, image on screen is broken. What is wrong? public void startApp() { HttpConnection conn = null; ...
1
vote
2answers
124 views

Blackberry not loading images

I've been working on a blackberry project that loads images from the server on a separate thread. This works fine on the simulator and fine on our test phones, but we have people testing the app in ...
1
vote
3answers
319 views

.getResponseCode() hangs when trying to connect java(blackberry project) to webservice

I am trying to connect to a webservice from my blackberry project in eclipse. My code for URLConnector is the following import java.io.InputStream; import javax.microedition.io.Connector; import ...
1
vote
1answer
353 views

Download image in blackberry and display

I use following code to download jpg image and display in blackberry curve 8900 simulator. When I am trying to load my code, it strucks completely and stop responding. Please some one help me. public ...
1
vote
0answers
84 views

Connector.open throws IO when using 3g

I'm using the javax microedition Connector class to initialise a HttpConnection. This doesn't work with 3g while it works with wifi. HttpConnection connection = (HttpConnection) ...
1
vote
4answers
599 views

Problems opening http connection from blackberry simulator

I'm having trouble when opening a simple HttpConnection from the simulator, I've have appended the deviceside=true suffix to my url, however it's still not working, I'm receiving an empty ...
1
vote
1answer
772 views

Problem connecting to servlet From Android client

I am trying to connect to the Servlet (Tomcat localhost). Here is my code. ServletTest.java (the client) public class ServletTest extends Activity { private static final String TAG = "Test"; ...
1
vote
2answers
445 views

How to force the HTTP connection over Wi-Fi instead of cellular in Android?

My application has to detect that the device connected to the Wi-Fi network is the required one and then fire a HTTP request over that Wi-Fi network programmatically. I have searched, but I didn't ...
1
vote
1answer
176 views

BlackBerry Dev - Downloading an image from online and displaying

So, I've been through the BlackBerry API, and the online documentation, but I'm having an issue with connecting and getting it to display. I've uploaded the image to the Apache server, and I can ...
1
vote
2answers
201 views

j2me Find application mode, is it idle or not

I want to send stored rms data using http connection when application is on idle mode so when user is not doing anything with application at that time my thread will invoke and send RMS data to ...
1
vote
2answers
1k views

Http connection pooling using HttpClient

How to create a pool of connections using HttpClient. I have to make frequent connections to the same server.Is it worth creating such a pool. Is that possible to keep live connections and use it for ...
1
vote
2answers
553 views

Display static Google Map image in BlackBerry 5.0

I'm having a really interesting problem to solve: I'm getting a static google map image, with an URL like this. I've tried several methods to get this information: Fetching the "remote resource" as ...
1
vote
4answers
231 views

What are Sockets afterall ? and Why cant we use sockets instead of HTTP?

Are Sockets are just a connection between 2 machines ? and if sockets can be established why do we even use HTTPConnection ?
1
vote
1answer
88 views

Login to PHP form and then run a PHP script in Java

I've now realised that everything I just had up was garbage. My problem is that after I do my POST to the php login script, the response coming back doesn't contain the "key" ...
1
vote
1answer
563 views

I have a question about httpConnection and getResponseCode on BlackBerry

if I try to connect jpeg Camera, this connection works right. But When I connect to a Mjpeg (jpeg-stream) Camera, I can't show "System.out.println("onreturn oncesi" + ...
1
vote
1answer
425 views

Find a blackberries user agent on 4.5

I'm trying to find the user agent of a blackberry so I can set it when I make a http connection. On blackberries that are version 4.7+ I call System.getProperty("browser.useragent") and I get the ...
1
vote
1answer
891 views

How to set a timeout on a soap call using ksoap2-android?

I'm using ksoap2 for my android project and it works great. I've succeeded in connecting to distant server but I currently have a problem when I want to set a timeout to my androidhttptransport. Is ...
1
vote
1answer
235 views

python httplib: getting the outgoing request headers

I do: con = HTTPConnection(SERVER_NAME) con.request('GET', PATH, HEADERS) resp = con.getresponse() For debugging reasons, I want to see the request I used (it's fields, path, method,..). I would ...
1
vote
1answer
1k views

How do you save images to a Blackberry device via HttpConnection?

My script fetches xml via httpConnection and saves to persistent store. No problems there. Then I loop through the saved data to compose a list of image url's to fetch via queue. Each of these ...
1
vote
1answer
141 views

Handling Connection Timeouts in Nokia S60 devices?

I have a thread which handles all the HTTP Connections to the server and there is another thread which updates the UI etc. I have a timeout logic implemented in the UI Thread which looks for some ...
1
vote
1answer
287 views

Looking for proven libraries for Blackberry or J2ME (HttpConnection)

I have an application that makes many subsequent calls to a REST service for batching data to a database on the BlackBerry devices. I have tried several methods of using HttpConnection with various ...
1
vote
3answers
828 views

LinkedIn integration - Establish a requestToken

I'm developing (trying for now) portlet that will be integrated with LinkedIn. Following the documentation about it: http://developer.linkedin.com/docs/DOC-1008 --> The first step to authorizing a ...
1
vote
1answer
308 views

Blackberry - Is this a guaranteed approach for detecting a valid connection type?

I've created following two methods for reliably building a connection for making a data connection. So far I haven't had any issues testing this approach with users. I'd love to get some community ...
1
vote
2answers
604 views

j2me post data limit

is there any limit to send data from j2me device to server. I coded a application to send big data to server from j2me client. it works fine in wtk and sonyericsson emulator. but when i tried same ...
0
votes
1answer
21 views

send text to servlet via iphone

what i am trying to do is, i am creating a very simple iphone app, textfield and a button that when pressed it should send the text in the text field to a servlet hosted locally (glass fish 3.1.1) ...
0
votes
1answer
36 views

BlackBerry HttpConnection setting cookies

this one has been killing me for a couple of days. I'm using a HttpConnection to access a REST server and need to set cookies on a GET method. I'm trying this using ...

1 2 3