The Content-Type entity-header field indicates the media type of the entity-body sent to the recipient or, in the case of the HEAD method, the media type that would have been sent had the request been a GET.

learn more… | top users | synonyms

1
vote
1answer
15 views

How do you make a browser download a file without changing its name/extension?

Question: is it possible to make a file download from a web browser to the user's machine without the browser changing its filename? Background: I have a shareware app and users may buy a license to ...
0
votes
0answers
13 views

raw notifications windows azure

Im working with windows azure and got toast notifications working having watched a tutorial online. I found no such tutorial for raw notifications and I'm wondering if anyone could help me. The ...
0
votes
1answer
41 views

How do I check the inbound header “content-type” response in mule?

I've got a flow that processes the response from a REST service: <http:outbound-endpoint method="GET" address="http://www.SomeAddress.com" ...
0
votes
1answer
11 views

Nginx default content-type

I would like NGINX send the content-type application/xml for all response of a location: My configuration is base on the documentation http://wiki.nginx.org/HttpCoreModule#types : server { ...
0
votes
1answer
11 views

Amazon S3 - setting content-type while uploading an object is important

I need to know setting the content-type for an S3 object while uploading is important or it will take the default content-type automatically? Also, which is the good practice? Also, I want to know if ...
0
votes
1answer
28 views

How to set the content type and content encoding when uploading to S3?

I am uploading some files to the S3 buckets. One zip file, one .json file. When I upload them, both files will have: Content-Type: application/octet-stream I need the zip files to have: ...
0
votes
1answer
16 views

Alternative to finfo(FILEINFO_MIME)->buffer() in Linux command line

Instead of using finfo on files to retrieve the content-type you can execute a command in linux if(PHP_OS == 'WINNT'){ $finfo = new finfo(FILEINFO_MIME); $content_type = ...
0
votes
0answers
41 views

Sending data to php from android - content type encoding error

I am sending some data from my android app to my php web service. It is intended for the web service to then insert my data into my PostGreSQL database which as UTF8 encoding enabled. However I am ...
0
votes
3answers
43 views

getContentType method returning always 'application/force-download'

I have an URL to file which I can download. It looks like this: ...
0
votes
0answers
13 views

Get image from Imagick object?

PHP Code <?php header('Content-Type: image/jpg'); $image = new Imagick(... path to image ...); $image->cropThumbnailImage(200,200); echo $image->getImageBlob(); ?> How ...
0
votes
0answers
20 views

Selenium through PHPUnit with pages that have Content-Type: application/json

I am using PHPUnit and Selenium to access a page that returns a page that has a json header. When I call $this->source(); It doesn't return a json string, but a string containing an html page with ...
0
votes
0answers
11 views

how to convert this uri file://mnt/ to this uri content://media

I posted a similar question, but I have not received an answer that solves the problem. convert url from sdcard to content uri i need simple code that convert this format: ...
0
votes
0answers
22 views

How could i change CONTENT-TYPE of WebView#PostUrl()?

in Android WebView. i'm trying to Use WebView#postUrl() with postData. but i couldn't find the way of changing the Content-Type of request. it's always "application/x-www-form-urlencoded". How can I ...
0
votes
1answer
45 views

Could not set content type to application/javascript while returning jsonp from node.js

One quick question: The following code is returning jsonp with json content from a file as expected, but the content-type of the response is text/javascript. How can I convert it to ...
0
votes
0answers
9 views

MOSS 2007 Child Content Types not Updating properly

I have a MOSS 2007 environment where we are using content types to control content for page layouts. Essentially, we have one content type, lets call it PL1, that has a few custom fields which are ...
0
votes
2answers
44 views

Extract the Spray.io Content-Type from request?

Since Spray.io is defining content types at a low-level, how do I simply reference the content-type of the incoming request? Here's a short example where an image is PUT. put { ...
0
votes
1answer
23 views

finding content-type from wireshark

Here are the wireshark logs of 3 POST's. All posting the same data but with different content-types, resulting in different ways the data is read on the server. I'm attempt to to understand how to ...
0
votes
1answer
26 views

How to mod_rewrite based on http-header content-type

is it possible to redirect the user, based on the HTTP-Header content-type? For example: 1) An Application is trying to load localhost/res/123/var/abc and the content-type is set to: ...
0
votes
0answers
28 views

Backbone collection.create always return error

I'm using tastypie on django backends, here is how I create a new model addEdu:function(e){ e.preventDefault() var form_data = { user: ...
2
votes
2answers
47 views

What content-type header has been set?

How can I find out if this header: header('Content-Type: application/json') has been set during script execution? `
0
votes
0answers
51 views

content-type causes chrome to call function twice

Most peculiar problem with following code. It returns a pdf report to the browser. function cart_aspdf() { trace('cart_aspdf_in'); $file = 'order_WS000250.pdf'; header('Content-type: ...
0
votes
0answers
25 views

How does Chrome determine the content type of an HTTP response?

I would like to know what the exact process is that Chrome uses to determine the contents of an HTTP response. A reference to the relevant part of the source code would be preferred. (I couldn't find ...
0
votes
1answer
36 views

Drupal 7 - Content type inside a content type - Like field collection

I´d like to create a content type called "contact" that will be share in other content types, like "client" and "prospect". When I create a new client, I´d like to be able to create, in the same form, ...
0
votes
0answers
54 views

Ajax Post Content Type : Application / Json Block the request

Here is my Ajax request : $.ajax({ url: '', type: 'POST', data: JSON.stringify({country : jcountry, region : jregion, from : jfrom, to : jto, currency : jcurrency}), ...
0
votes
1answer
39 views

abort curl download if content type is wrong

I'm setting up a site where users will be able to post links, and curl (in php) will crawl the url, and format something based on the metadata, open graph tags, etc. I have it set up to run ...
1
vote
0answers
21 views

How can I determine the real content type of an HTTP response with an incorrect one?

I'm trying to write an extension that corrects 'incorrect' content types. An example situation is a user might click on a link to a PDF file that has the HTTP Content-Type set to ...
0
votes
0answers
12 views

How can I programmatically find the content types handled by Chrome?

Within a Google Chrome extension, I would like to be able to programmatically obtain a list of all of the HTTP Content-Types that it can handle. For example, some of the ones it handles are ...
0
votes
0answers
48 views

Java REST service which returns HTML or JSON, depending on the content-type request

I've made some easy REST services on Ruby on Rails, and I could use a single method which returns an HTML page or a JSON object, depending on the request's type-content. It's really confortable if I ...
0
votes
0answers
42 views

Mac find local file content-type / MIME type

Does anyone know of a way to determine the content type of a local file in OSX 10.8? I've tried file filename.ext but that doesn't give me enough info.
0
votes
1answer
68 views

new lines (\r\n) are not working in email body

I am using PHP mail() function: $to = 'AAAA <postmaster@xxx.xx>'; $subject = 'BBBB'; $message = "CCCC\r\nCCCC CCCC \r CCC \n CCC \r\n CCC \n\r CCCC"; $headers = 'From: ...
0
votes
0answers
16 views

Unable to output image for saving with PHP GD-Content-Disposition: attachment not working [duplicate]

I have this little problem with my script since I'm able to output my image and "save it as" locally but I cannot do it when I try with the document uploaded to my server, what I need is that once I ...
1
vote
0answers
63 views

Showing missing CSS file when using Content Type as ms-word in MS Word 2010

In classic asp using the following code to print the document in MS Word Response.ContentType ="application/msword" Response.AddHeader "content-disposition", "attachment; filename=report.doc" ...
0
votes
2answers
39 views

Getting the response as PDF in browser

I want to setup response for PDF output. How do I achieve this? I can setup for Excel output and successfully get the desired excel sheet from the browser, but for PDF I could not get the desired ...
0
votes
1answer
78 views

Getting html Email Content in JavaMail

I've made an E- Mail Client for my Android- Phone using the JavaMail API. I dont knoq how to get the E- Mail Content if it's a html- Mail. I'm using the following Code to get the Content: public void ...
3
votes
1answer
166 views

Modifying the content type of an attachment in a CDO.Message object

When I try to add an MHTML file as an attachment to an email message in VBScript, the ContentMediaType is incorrectly set to "message/rfc822" (RFC 822). From what I understand, this is correct ...
0
votes
1answer
33 views

Cannot retrieve attachments with blankspaces in the filename with javamail

I have problems when downloading attachments with javamail when they have a blankspace in the file name and no extension. This is due to the content-type of the BodyPart. For the files example.pdf ...
0
votes
2answers
161 views

JSON.parse() does not work when content-type is set to application/json

I am running into a jquery (bug/error) when trying to parse a JSON string returned from the server: Timestamp: 10/04/2013 21:05:12 Error: SyntaxError: JSON.parse: unexpected character Source File: ...
-1
votes
1answer
29 views

what is that: Content-Type: application/x-bxml?

I've recently discovered one public undocumented web service that I would like to use. The Problem is in Content Type that is used by the web serivice. Content-Type: application/x-bxml What is that? ...
0
votes
0answers
290 views

Spring3.2 RequestMapping produces = “application/json” not written to HttpServletResponse.ContentType

I'm using Jetty8,the servletResponse implmentation of jetty is org.eclipse.jetty.server.Response,which has a default ContentType "text/html;UTF-8", my request mapping method: @RequestMapping(value = ...
0
votes
0answers
26 views

Content type for word document?

What would be the content type for word documents? ms word- ? openoffice word -?
0
votes
0answers
214 views

Asp Classic Write PDf and keep filename when printed

I'm trying to write a pdf file to the browser and when the client print the pdf the filename sent to the printer is the name of the file. But now i'm getting the name of the asp page sent to the ...
0
votes
0answers
103 views

ASP.MVC 4 View Content Type changes automatically

I've encountered weird problem. My application changes view's content type on its own after page reload. I've tried setting it in markup (aspx file) and in controller as well, weirdly content type of ...
0
votes
0answers
17 views

What are options for specifying the schema of an http document

I'm working on a RESTful webservice that could possibly transport different kinds of payloads, specifically different structures serialized as either xml or json. I know I can set the content-type ...
0
votes
3answers
88 views

How to get content type of a n given url inside Javascript?

I want to know the content type of a given url input by the user inside my Javascript code. Actually, I have a drop-down list (html,csv,xls etc.) and I want to make it so when the user inputs an url, ...
0
votes
1answer
60 views

What is the correct Content Type of an .xps file

I'm creating an asp.net web application in c# to convert a bunch of .xps files to .pdf and I want to validate the input file to be converted by its content type instead of the file extension for ...
3
votes
1answer
257 views

Android set content type HttpPost

How can you change the content-type of a HttpPost in android? For a request I need to set the content type to application/x-www-form-urlencoded So i got this bit of code: httpclient=new ...
0
votes
0answers
44 views

Manipulate Database from Data module within Drupal interface

I've installed the Data module and enabled all of its sub-modules, created a custom table, confirmed that the table was stored correctly in the mysql database, but I can't figure out how to add fields ...
0
votes
1answer
23 views

Is there a mime-type that is invalid by definition?

I am writing an http middleware using Node.js that responds to requests with a certain content-type set as header. Now I'd like to unit test that the middleware does not respond to requests with the ...
0
votes
1answer
155 views

Adding files into Zip and sending them via Mail issues C#

I have created a method that collect every file in a folder and then inserts them into a zip file. The zip file is then sent via mail to a customer. My problem is that I can send a mail message with ...
0
votes
1answer
34 views

Different Content Types in email

I was reviewing the source of some emails sent to me and noticed in one that the content type for the text part is different from the HTML part - see below. --_----------=_MCPart_1153762294 ...

1 2 3 4 5 19