0
votes
1answer
18 views

httpPost request formation for java ! using data provided by fiddler o/p

This is my fiddler report of a post request from my browser ! I can see the post data ! The question is how to add this data if i make the post request from java e.g say using httpPost method. My ...
0
votes
2answers
40 views

how to get the information from a http head in android

i've been given the task to send a POST message to the server giving it a JSON encoded message. The server would then send back a responce in a custom HTTP header field “X-SubmissionResponse” so far ...
5
votes
2answers
110 views

How to enable expires-header caching for webview

I am building an app which consists of a menu and a webview. When the user is selecting menu items, the webview should load the respecting html file. So far so good. Now I am experiencing, that the ...
0
votes
1answer
31 views

how to put data in two different table using two different activity

Here in my application in the first activity i am using the following code for storing data into mysql. Java code: public class MainActivity extends Activity { EditText et; Button b; InputStream is; ...
0
votes
1answer
209 views

How to post data with “Content-Type ” header as “multipart/form-data”

I am trying to post data using multipart/form-data, but it is not working with httpPost method. I have to send data as json string from the API,but it is giving bad response from server if I remove ...
1
vote
1answer
87 views

Connection 3G vs Wi-Fi Connection

I'm develop a android app that consume a xml webservice. When connected in a wi-fi network works fine, but when connected in a 3G network, fail (http 404 not found). It's not happening only in ...
0
votes
0answers
190 views

Android http client protocol exception

I am developing small android application in which i tried to send simple image to my server. My problem is that when i tried to add header content-length it gives me error http client protocol ...
1
vote
0answers
65 views

how to send Image to server with content length and image data as body?

I am developing one android application and in my application i want to send image data to my server. So I am using put request. I dont want to send image data with json object. I just want to send ...
1
vote
0answers
25 views

Update image from url only if it has been modified android

With Java, how do I return the headers for just the image? I can get the last time the file on my phone was modified... SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss"); ...
0
votes
0answers
96 views

How to set header along with the data for posting it back to server

I have to post few data to the URL, which also need header attached to it. I have tried using the following code to post data but still getting 400 error, while the same thing is working perfectly on ...
0
votes
1answer
313 views

How to override Accept-Language header from Android's WebView

I have an Android application with an embedded WebView. I need to apply custom language settings for web-pages presented via this WebView. I found this related answer and gave it a try. Specifically, ...
1
vote
2answers
239 views

Spring Android POST no return type application/octet-stream in ResponseEntity

I am working with a Node.js server running Express 3.0. During one part in my application I POST json to a URI to purchase a powerup at /api/transactions/powerup. This has several return options. ...
0
votes
2answers
68 views

Add header to Http Header

I am using ksoap2 for android project. But server code (which cannot be changed) is old and needs send some properties inside a header on HTTP header. Server use soap so I decided to use ksoap2 for ...
3
votes
2answers
82 views

Why is the Content-Length header omitted from server response when using HttpClient?

I am using this question's source code How to asynchronous perform a httprequest and show the progress of downloading the response in order to fetch a webpage's html source and display a progressbar ...
0
votes
4answers
218 views

How to Set HttpPost Headers for a Client Request in Java Android

I am having trouble getting the Apache HttpClient to correctly send an HttpPost Header. I have no problems sending name value pairs and whatnot, but whenever I set or add a POST Header, it disappears ...
1
vote
2answers
92 views

Perl code output behave differently in IIS and Apache

I have perl script which is setting header with following command print "Content-Disposition: attachment; filename=test.csv\n\n"; This script is behaving differently when deployed on web server IIS ...
3
votes
1answer
485 views

Custom user agent string or header without modifying cordova libs

I have an Android Phonegap/Cordova app that interacts with an ASP.NET MVC web application. I am trying to detect server side whether or not the web page is being loaded from a browser or from my ...
0
votes
0answers
90 views

set header on get request android

I try to set a http autentification with android this is my class http://pastebin.com/SB9TKtQZ I use like this EditText user = (EditText)findViewById(R.id.referent_login_input); EditText password ...
0
votes
0answers
309 views

Android HttpURLConnection Server not respond when send long cookie

I trying to make HTTP POST to the website by use HttpURLConnection. My problem is I have to add the session cookie to the request header, but server not response to my request(noting coming from ...
4
votes
2answers
121 views

URL validation works fine but keep connection and restrict any further requests

public class UrlVarificationTask extends AsyncTask<Void, Void, Integer> { private String url; private UrlVarificationDelegate delegate; private HttpURLConnection huc; public ...
0
votes
0answers
158 views

android redirect url

I am trying to get a redirect to a php page. I am working on android I made an HttpPost with some specific credential to url1. As a response I receive in Headers multiple Set Cookie: ci_session and a ...
0
votes
1answer
99 views

Download files from different domains with one connection

Well this question may sounds a little crazy but I just want to save time and engergy. To open a connection needs time and engergy on a mobile device so I want to reuse open connections if possible. ...
3
votes
0answers
278 views

Android socket & HTTP response headers

The funny thing is: I may have accidentally found the solution for Is it possible to send HTTP request using plain socket connection and receive response without headers?. I hope I'm overlooking ...
3
votes
0answers
345 views

Android Ignores Content-Disposition: Attachment Inside Iframe

I have a link to a download handler inside an iframe. This download handler has "Content-Disposition: Attachment" in the headers to force the user to download the file. This works in every browser ...
-3
votes
2answers
143 views

apache_request_headers and array_key_exists [closed]

This is more of a warning than of a question, but someone may be able to provide a better solution. I am sending a custom request header from my Android application. When the request arrives on the ...
2
votes
0answers
171 views

Send Post request along with HttpHeaders on Android

I need to post data to server (with "referer" header field) and load the response in Webview. Now, there are different methods (from Android WebView) to do parts of it, like there is: void ...
0
votes
1answer
115 views

Setting SESSION elements inside php using data sent from Android

I am trying to send data from Android to php which has to save the data in SESSION. However, my session is still empty. On the other side, when I set SESSION from a website, it works. I assume it is ...
4
votes
1answer
758 views

Set headers using spring android resttemplate and android annotations

I am currently playing with Spring Android Resttemplate to interact with a java-backed REST API. Actually, I am using android annotations to send http calls to this back-end service and I must say it ...
1
vote
2answers
92 views

The best way to identify mobile version of browser

I am facing the problem described in this post. Suggested solution doesn't suit me because I am using some jQuery history/back button plugin. I decided to split css into to versions - one for ...
-1
votes
1answer
448 views

Getting HTML page source code instead of JSON Reponse

I am having one private web-services in which i need to pass authentication and a JSONObject Request also. The Authentication goes perfect and the Response is also OK but in response I am getting HTML ...
0
votes
0answers
124 views

Expected HttpClient behavior when response is truncated

BACKGROUND: I'm writing a wrapper for an HttpClient. My wrapper will allow simple request-response in an easy form for my clients (allowing them to pass a customized message instead of a HttpRequest). ...
3
votes
2answers
1k views

What header should be used for sending GZIP compressed JSON from Android Client to Server?

This question is extension to the question here. I am using the code here reproduced below to GZIP compress a JSONObject. String foo = "value"; ByteArrayOutputStream baos = new ...
0
votes
1answer
312 views

Android check download successful

For downloading stuff I work with the apache classes HTTPResponse HTTPClient etc. I check for a valid download like this: entity.writeTo(new FileOutputStream(outfile)); ...
0
votes
1answer
479 views

Is it better to add accept encoding gzip for HTTP request headers in android?

Just wanted to know if it is better to have "Accept-Encoding", "gzip" in request headers while making HTTP request in android? If not then in which cases it is not preferable? Also can it be used for ...
0
votes
1answer
394 views

send http post with header in android(This code works perfectly-I forgot to put the internet permission in manifest file that's why it didn't worked)

I know there are a few posts on this topic, but I just can figure out what I'm doing wrong. I have to send by post some parameter to a php server that requires a login. Here is the code: ...
1
vote
1answer
338 views

Android 2.2 vs 2.3 - soapaction vs SOAPAction in HTTP header

Using the ksoap2 library (v2.6.4), SOAP version11, I'm executing a web service via a 2.3.3 emulator device. The server recognizes the requested action and provides the expected answer. The HTTP/1.1 ...
2
votes
2answers
2k views

Google TTS API for Arabic, Chinese and Greek

I am trying to download an mp3 file from google TTS API, here is the code try { String path ="http://translate.google.com/translate_tts?tl=en&q=hello"; //this is the name of ...
0
votes
1answer
106 views

Android app POST request to Apache sending Expect 100 header

I've one android application which makes an POST request to one apache server. But the app sends the "Expect: 100" header, apache responds with a 417 status message, and the connection is finished and ...
8
votes
1answer
2k views

Android webview shouldOverrideUrlLoading is not called

In my application, shouldOverrideUrlLoading() is not called on Honeycombe 3.2 version. I have tested it on 2.2 and 4.0.1 and they all are working fine. Is it a bug in Honeycomb? How can I work around ...
0
votes
1answer
373 views

Http interrupted/parial file download - HTTP “Range” header on Android/iPhone

When we download the file from web server it first stored in phone memory and at define moments the data are flushed on the SD card to not fill up the RAM. But when the connection crashes, users set ...
1
vote
2answers
492 views

Header(location: …) not completely working in webview on android

I've created an online store within an android app in webview but have one major problem... When im processing my shopping cart i go to a php file, save the items in a session variable and then use ...
0
votes
2answers
651 views

android, how tosend username and password to webservice as header feilds?

i am trying to create an application on android phone that takes username and password from user, encrypt the password using md5 then connect to url with these parameters. a code to connect worked ...
1
vote
2answers
427 views

Error while posting json data

I am trying to post json object {"venue":"places, US"} using below code- HttpClient client = new DefaultHttpClient(); HttpConnectionParams.setConnectionTimeout(client.getParams(), 30000); ...
0
votes
1answer
31 views

On android framework,Is there any class in which common HTTP HEADER is defined

I don't want to defined them again if they are already provided. So is there something like that: public SomeClass { public static final String CONTENT_TYPE = "Content_Type"; public static ...
0
votes
1answer
59 views

Does somebody know what charset the HTTP Headers used to encode?

Like the problem described by title, my problem is when I read the Http header that returned from the server in the android programs , it appears Disorderly code of strings, so, what I don't know ...
1
vote
3answers
5k views

@ converted to %40 in HTTPPost request

i m trying to send post request to webservice.. when i add special character @ in parameter it is coverted to %40.i have checked server side..they are getting %40 instead of @. can any one help me?? ...
0
votes
1answer
2k views

how to set the sessionID in the request header using android 2.2

I am developing an application using android 2.2. I don't know how to manage the opened session between the server and the mobile app. I have a mobile app with login screen when the user enter his ...
1
vote
1answer
234 views

How to set HttpPost and a header for JavaScript?

When I search for this question I always get the answer for "How to set header WITH JavaScript" but I want to set the HttpPost Header FOR JavaScript. I try to Formlogon on a Website, but the response ...
1
vote
1answer
525 views

Symfony2 basic http auth, works with curl but not on Android

I'm trying to authenticate a user on my symfony2 server. The authentication works with curl in cli : curl "http://localhost:8080/app_dev.php/app/user/profile.json?id=4" -u foo:bar --basic But with ...
0
votes
1answer
131 views

Retrieving error 417 at Post request

I made an API, which I can send a Post request to, for a login. It works fine on Android 4.0, and I have another Android phone with 2.3, which works fine as well. Anyhow, When I test on a HTC Desire, ...

1 2