active questions tagged content-type - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T20:50:37Zhttp://stackoverflow.com/feeds/tag/content-typehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789954/sharepoint-multiple-new-item-forms3SharePoint Multiple New Item FormsDan Revell2009-11-24T13:05:48Z2009-12-02T21:33:48Z
<p>I've got a custom list with a custom content type. I'm aware that when you create a new item you can see a drop down for the different content types on that list which I assume all have their own NewForm.aspx somewhere. I can specify in the content type definition which columns are shown on the New form and that I can replace the new form with a custom one of my own design.</p>
<p>What I'm trying to achieve is to have multiple New forms but for the same content type listed on the New drop down. I would like each new form to expose different fields of the content type. Additionally I'd like to make particular New forms only visable by users with particular permissions although this isn't critical.</p>
<p><em>Scenario:
I've got a content type with all the fields I need for a risk assessment. When a new item is created it only exposes fields to enter contact details. Once this is created a workflow with infopath forms then drives the gathering of the rest of the risk assessment information through booking, the inspection itself and approval of the data. I want the ability to have a second option to easily enter all this information on a different new form for an inspection that's already been done and needs logging in the system.</em></p>
http://stackoverflow.com/questions/1827952/why-where-is-apache-mussing-with-my-content-type0Why/Where is Apache Mussing with my Content-Type?Tom Ritter2009-12-01T18:24:33Z2009-12-01T19:11:15Z
<p>The PHP Code:</p>
<pre><code> header("Content-type: text/css", true);
header("Annoying Header: blarg");
print(cft_css_view()) ;
die();
</code></pre>
<p>The true in the first header is to replace any previous Content-Type Header. The second is to confirm changes in the code take effect.</p>
<p>And yet, here is the result from Fiddler:</p>
<pre><code> HTTP/1.1 200 OK
Date: Tue, 01 Dec 2009 15:45:40 GMT
Server: Apache/2.2.3 (Red Hat)
X-Powered-By: PHP/5.1.6
Annoying Header: blarg
Content-Length: 1220
Connection: close
Content-Type: text/html; charset=UTF-8
</code></pre>
<p>I did some grepping and some searching, and here are some relevent excerpts from config files:</p>
<pre><code> conf.d/php.conf : #AddType text/html .php
conf/httpd.conf : DefaultType text/plain
conf/httpd.conf : #AddDefaultCharset UTF-8
</code></pre>
<p>These were not the defaults - I changed them to this, but they had no effect on the problem. </p>
http://stackoverflow.com/questions/1809138/opening-of-the-spweb-contenttypes-gives-soap-exception-0x800040040Opening of the spWeb.ContentTypes gives SOAP Exception 0x80004004mdi2009-11-27T14:37:40Z2009-11-27T14:37:40Z
<p>Hi everybody!</p>
<p>I have the code which going through the sharepoint contenttypes and changes needed field display names. On my local server everything works fine, but on the client side it gives me an error:</p>
<p>Microsoft.SharePoint.SPException: Operation aborted (Exception from HRESULT: 0x80004004 (E_ABORT)) ---> System.Runtime.InteropServices.COMException (0x80004004): Operation aborted (Exception from HRESULT: 0x80004004 (E_ABORT))
at Microsoft.SharePoint.Library.SPRequestInternalClass.OpenWebInternal(String bstrUrl, Guid& pguidID, String& pbstrRequestAccessEmail, UInt32& pwebVersion, String& pbstrServerRelativeUrl, UInt32& pnLanguage, UInt32& pnLocale, String& pbstrDefaultTheme, String& pbstrDefaultThemeCSSUrl, String& pbstrAlternateCSSUrl, String& pbstrCustomizedCssFileList, String& pbstrCustomJSUrl, String& pbstrAlternateHeaderUrl, String& pbstrMasterUrl, String& pbstrCustomMasterUrl, String& pbstrSiteLogoUrl, String& pbstrSiteLogoDescription, Object& pvarUser, Boolean& pvarIsAuditor, Int32& plSiteFlags)
at Microsoft.SharePoint.Library.SPRequest.OpenWebInternal(String bstrUrl, Guid& pguidID, String& pbstrRequestAccessEmail, UInt32& pwebVersion, String& pbstrServerRelativeUrl, UInt32& pnLanguage, UInt32& pnLocale, String& pbstrDefaultTheme, String& pbstrDefaultThemeCSSUrl, String& pbstrAlternateCSSUrl, String& pbstrCustomizedCssFileList, String& pbstrCustomJSUrl, String& pbstrAlternateHeaderUrl, String& pbstrMasterUrl, String& pbstrCustomMasterUrl, String& pbstrSiteLogoUrl, String& pbstrSiteLogoDescription, Object& pvarUser, Boolean& pvarIsAuditor, Int32& plSiteFlags)
--- End of inner exception stack trace ---
at Microsoft.SharePoint.Library.SPRequest.OpenWebInternal(String bstrUrl, Guid& pguidID, String& pbstrRequestAccessEmail, UInt32& pwebVersion, String& pbstrServerRelativeUrl, UInt32& pnLanguage, UInt32& pnLocale, String& pbstrDefaultTheme, String& pbstrDefaultThemeCSSUrl, String& pbstrAlternateCSSUrl, String& pbstrCustomizedCssFileList, String& pbstrCustomJSUrl, String& pbstrAlternateHeaderUrl, String& pbstrMasterUrl, String& pbstrCustomMasterUrl, String& pbstrSiteLogoUrl, String& pbstrSiteLogoDescription, Object& pvarUser, Boolean& pvarIsAuditor, Int32& plSiteFlags)
at Microsoft.SharePoint.SPWeb.InitWebPublic()
at Microsoft.SharePoint.SPWeb.get_ServerRelativeUrl()
at Microsoft.SharePoint.SPWeb.get_Url()
at Microsoft.SharePoint.SPContentTypeCollection.FetchCollection()
at Microsoft.SharePoint.SPContentTypeCollection..ctor(SPWeb web, Boolean bAll)
at Microsoft.SharePoint.SPWeb.get_ContentTypes()</p>
<p>the code is below:</p>
<pre><code>SPWebApplication webApp = SPWebService.ContentService.WebApplications[someGuid];
foreach (SPSite spSite in webApp.Sites)
{
using (SPWeb spWeb = spSite.RootWeb)
{
try
{
foreach (SPContentType spContentType in spWeb.ContentTypes)
{
...
}}}..
</code></pre>
<p>Could anybody provide me with workaround or with the reason of the problem.</p>
http://stackoverflow.com/questions/151079/name-web-pdf-for-better-default-save-filename-in-acrobat11"name" web pdf for better default save filename in Acrobat?James Baker2008-09-29T22:49:44Z2009-11-26T22:11:17Z
<p>My app generates PDFs for user consumption. The "Content-Disposition" http header is set as mentioned <a href="http://stackoverflow.com/questions/74019/specifying-filename-for-dynamic-pdf-in-aspnet">here</a>. This is set to "inline; filename=foo.pdf", which should be enough for Acrobat to give "foo.pdf" as the filename when saving the pdf.</p>
<p>However, upon clicking the "Save" button in the browser-embedded Acrobat, the default name to save is not that filename but instead the URL with slashes changed to underscores. Huge and ugly. Is there a way to affect this default filename in Adobe?</p>
<p>There IS a query string in the URLs, and this is non-negotiable. This may be significant, but adding a "&foo=/title.pdf" to the end of the URL doesn't affect the default filename.</p>
<p>Update 2: I've tried both</p>
<pre><code>content-disposition inline; filename=foo.pdf
Content-Type application/pdf; filename=foo.pdf
</code></pre>
<p>and</p>
<pre><code>content-disposition inline; filename=foo.pdf
Content-Type application/pdf; name=foo.pdf
</code></pre>
<p>(as verified through Firebug) Sadly, neither worked.</p>
<p>A sample url is</p>
<pre>/bar/sessions/958d8a22-0/views/1493881172/export?format=application/pdf&no-attachment=true</pre>
<p>which translates to a default Acrobat save as filename of</p>
<pre>http___localhost_bar_sessions_958d8a22-0_views_1493881172_export_format=application_pdf&no-attachment=true.pdf</pre>
http://stackoverflow.com/questions/1777887/downloading-pictures-word-documents-using-asp-net0Downloading pictures/Word documents using ASP.NETkilliancomputers2009-11-22T05:15:44Z2009-11-22T16:43:03Z
<p>If I put the following code:</p>
<pre><code> Response.ContentType = "image/jpeg"
Response.AppendHeader("Content-Disposition", "attachment; filename=capitol.jpg")
Response.WriteFile(MapPath("capitol.jpg"))
</code></pre>
<p>into Page_Load, I will get the dialog box to download the image. But when I put the same code into a sub routine:</p>
<pre><code>Private Sub downloadPic()
MsgBox("Hello!")
Response.ContentType = "image/jpeg"
Response.AppendHeader("Content-Disposition", "attachment; filename=capitol.jpg")
Response.WriteFile(Server.MapPath("capitol.jpg"))
Response.End()
End Sub
</code></pre>
<p>I get the MsgBox (just for testing) but I don't get the ability to download the image. Any ideas?</p>
http://stackoverflow.com/questions/1562090/drupal6-content-access-permissions-cant-be-rebuilt0Drupal6: Content Access Permissions can't be rebuiltRosarch2009-10-13T18:29:43Z2009-11-18T20:21:12Z
<p>I created a new content type, so it wants me to rebuild content permissions. I clicked the link to do so. It progressed through but seemed to get hung up towards the end. It stayed in the same position for 20 minutes, so hit refresh. I got the following error message:</p>
<p><code>The content access permissions have not been properly rebuilt.</code></p>
<p>What is wrong here?</p>
<p><strong>UPDATE:</strong> The problem appears to be with the <code>Nodeaccess</code> module. When I disable it, this problem goes away. When I re-enable it, the problem returns. I'm not sure what to do about it, as that module is essential to the functionality of my site.</p>
<p><strong>UPDATE 2</strong>: I installed <code>Content Access</code> instead of <code>Nodeaccess</code>, but the problem persists. Perhaps it's some underlying issue with my site?</p>
http://stackoverflow.com/questions/1462899/how-do-you-add-custom-menu-actions-programmatically-in-sharepoint2How do you add custom menu actions programmatically in SharePoint?Steve2009-09-22T22:11:13Z2009-11-18T17:53:11Z
<p>I need to add a custom menu action to a custom content type programmatically in c#. This is because I will not know the URL I need to link to beforehand. The URL to link to will be pulled from configuration when the feature is activated.
I have tried the following:</p>
<p>Added the CustomAction in my Element.xml file as:</p>
<pre><code><CustomAction
Id="MyID"
RegistrationType="ContentType"
RegistrationId="0x010100ef19b15f43e64355b39431399657766e"
Location="EditControlBlock"
Sequence="1000"
Title="My Menu Item">
<UrlAction Url="" />
</CustomAction>
</code></pre>
<p>In my feature receiver FeatureActivated method, I have:</p>
<pre><code>SPElementDefinitionCollection eleCollection =
properties.Feature.Definition.GetElementDefinitions(
new System.Globalization.CultureInfo(1));
foreach (SPElementDefinition ele in eleCollection)
{
if (ele.Id == "MyID")
{
System.Xml.XmlNode node = ele.XmlDefinition.FirstChild;
node.Attributes[0].Value = "MY URL";
ele.FeatureDefinition.Update(true);
}
}
</code></pre>
<p>I would expect this code to update the UrlAction Url with "MY URL" but it does not. If I hard code a URL in the XML it works but I must be able to do it programmatically.</p>
http://stackoverflow.com/questions/1755640/detecting-custom-folder-content-types-in-moss20071Detecting custom folder content types in MOSS2007Paul-Jan2009-11-18T12:27:51Z2009-11-18T15:50:44Z
<p>Given an SPListItem representing a folder, I need to find out whether it has the builtin folder content type, or a custom folder content type (with additional fields).</p>
<p>Here is what I do</p>
<pre><code> SPContentType folderType = aFolderItem.Web.AvailableContentTypes[SPBuiltInContentTypeId.Folder];
SPContentType contentType = aFolderItem.ContentType;
if ( contentType != folderType )
...
</code></pre>
<p>However, for default folders I still get a different content type than the built in type. They have IDs like 0x0120007C34D9760794FA43AB267F4E1A1BF460 . I'm not sure where this particular GUID suffix comes from, I can't find it in any of the definition of my \features folder.</p>
<p>My best guess is that instantiated folders always get a custom type. If that's the case, any suggestion on how I might be able to differentiate between builtin folders and custom folders? </p>
http://stackoverflow.com/questions/1737149/limit-the-number-of-available-visible-content-types-in-document-libraries1Limit the number of available/visible Content Types in document libraries Kasper2009-11-15T10:06:52Z2009-11-15T20:23:37Z
<p>Users seems to have a hard time picking the right document template when the "New" list contains a lot of items.</p>
<p>Rather then displaying 50 items in the "new" dropdown list I am looking for a solution that will only show the documents which is relevant at the moment. I have a "Life cycle" choice field in another list and only a subset of documents should be visible as per the value of that choice field. My question is whether there is a good reason <b>not</b> to set the Hidden property on each item when the value of "Life cycle" changes.</p>
<p>The suggestions on <a href="http://www.sharepointoverflow.com/questions/401/hide-contenttypes-based-on-listitem-value" rel="nofollow">SharePointOverflow</a> points to a JQuery-based approach where I tends to like a Event Receiver approach ( Iterate through the content types in the document library when the value of the "Life Cycle" field is changed). </p>
<p>What do you prefer and why?</p>
http://stackoverflow.com/questions/1732605/internet-explorer-blocked-file-download-file-of-unknown-file-type0Internet Explorer blocked file download; file of "Unknown File Type"Bungle2009-11-13T23:47:08Z2009-11-14T00:07:54Z
<p>I'm developing a front-end to a Rails application. In cross-browser testing, I immediately discovered that Internet Explorer (apparently all modern versions, but at least IE 7 and IE 8) is not correctly interpreting a file I'm trying to load via AJAX (with jQuery) as JavaScript. A file download warning appears and the user needs to confirm that the file should be downloaded. Unfortunately, this is not acceptable for the purposes of the application.</p>
<p>I created a couple of test files; one is just a JavaScript file served from Amazon S3; the other is actually a resource URL served by Varnish/Rails. The latter is the one that triggers the warning. So:</p>
<p><hr></p>
<p>LINK: <a href="http://wsj.staging.intspot.com/ism/wsj_ism/?url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052748704328104574520112839377366.html%3Fmod%3DWSJ_hpp_sections_smallbusiness&have_content=true&callback=dispatch" rel="nofollow">URL that gives a warning in IE</a></p>
<p>REQUEST HEADERS:</p>
<pre>Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10</pre>
<p>RESPONSE HEADERS:</p>
<pre>Age: 1952
Cache-Control: public, max-age=3598
Connection: keep-alive
Content-Encoding: gzip
Content-Length: 2060
Content-Type: text/javascript; charset=utf-8
Date: Fri, 13 Nov 2009 22:54:18 GMT
Etag: "272d9ec2e59aa92da18758cf42a4d729"
Server: nginx/0.7.61 + Phusion Passenger 2.2.5 (mod_rails/mod_rack)
Status: 200 OK
Via: 1.1 varnish
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.5
X-Runtime: 0.11573
X-Varnish: 176673116 176651738</pre>
<p><hr></p>
<p>LINK: <a href="http://troy.onespot.com/javascripts/ie_security.js" rel="nofollow">URL that does not give a warning in IE</a></p>
<p>REQUEST HEADERS:</p>
<pre>Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10</pre>
<p>RESPONSE HEADERS:</p>
<pre>Age: 14
Connection: keep-alive
Content-Encoding: gzip
Content-Length: 52
Content-Type: text/javascript
Date: Fri, 13 Nov 2009 22:55:03 GMT
Etag: "7b7ded6696ee52551289c856d3173db4"
Last-Modified: Fri, 13 Nov 2009 22:30:45 GMT
Server: AmazonS3
Via: 1.1 varnish
X-Amz-Id-2: CR79uoLC67sr0e0uj4CUOCoBQgcIW/jaJc/FNSA3zsK3Lns/gAqx98/T9h/UeJGm
X-Amz-Request-Id: BCF2F2D69F5126DD
X-Varnish: 1566212056 1566211955</pre>
<p><hr></p>
<p>What immediately sticks out to me is the Content-Type of "text/javascript; charset=utf-8" for the URL that gives a warning - is that valid? I had always assumed that only "text/javascript" would be valid.</p>
<p>Also, the URL that gives a warning returns content of Content-Type "text/javascript," but it is a Rails URL that does not have an extension of .js - could that make a difference?</p>
<p>Is there anything else that sticks out, or does anyone have any other ideas of what could be causing this problem? Thanks very much for any help.</p>
http://stackoverflow.com/questions/945922/nusoap-how-to-change-content-type-of-request0NuSOAP: how to change content-type of request?jao2009-06-03T17:11:44Z2009-11-06T15:15:03Z
<p>When consuming a .NET WCF webservice I get the following response (error):</p>
<blockquote>
<p>Unsupported HTTP response status 415
Cannot process the message because the content type 'text/xml; charset=UTF-8'
was not the expected type 'application/soap+xml; charset=utf-8'.</p>
</blockquote>
<p>How do I change the content type? I can't find it in the NuSOAP forums/docs, or I might be overlooking something....</p>
http://stackoverflow.com/questions/1528611/is-there-a-way-to-filter-unsupported-formats-in-the-routes-file1Is there a way to filter unsupported formats in the routes file?cinematic2009-10-06T23:17:46Z2009-11-06T10:19:19Z
<p>I have a Rails app that's getting hit by ScanAlert calling /login.php, but the app is throwing a 500. I'd like to filter any format that's not supported by my site, and 404 instead.</p>
<p>My original inclination was to create a before_filter in application_controller.rb that removes any :format that's not :html, :xml, or :js, then render 404.</p>
<p>However, it would be better to catch unsupported formats at the routing level. Has anyone approached it this way and what did you put in the routes file?</p>
<p>It would seem that this would be a common problem, yet I wasn't able to find any solutions.</p>
http://stackoverflow.com/questions/1681439/sharepoint-one-feature-that-creates-more-than-one-content-type0Sharepoint - One feature that creates more than one content type?mrmuggles2009-11-05T15:52:24Z2009-11-05T15:57:50Z
<p>Is it possible to create more than just 1 content type with just one feature in Sharepoint?</p>
<p>I've a got a project where a couple of content types inherits from another one and I have 5 features just creating those content types.</p>
http://stackoverflow.com/questions/477816/the-right-json-content-type32The *right* JSON content type?Oli2009-01-25T15:25:19Z2009-11-05T03:56:58Z
<p>Right I've been messing around with json for some time, just pushing it out as text and it hasn't hurt anybody (I know of) but I'd like to start doing things properly.</p>
<p>I have seen <em>so</em> many purported "standards" for the json content type:</p>
<pre><code>application/json
application/x-javascript
text/javascript
text/x-javascript
text/x-json
</code></pre>
<p>But which is right? Or best? I gather that there are security and browser support issues varying between them...</p>
<p>(I know there's <a href="http://stackoverflow.com/questions/404470/what-mime-type-if-json-is-being-returned-by-a-rest-api">a similar question</a> but I'd like a slightly more targeted answer.)</p>
http://stackoverflow.com/questions/1654846/in-c-how-can-i-know-the-file-type-from-a-byte0In C#, how can I know the file type from a byte[]?AndreMiranda2009-10-31T16:25:42Z2009-11-04T16:37:55Z
<p>Hi!</p>
<p>I have a byte array filled from a file uploaded. But, in another part of the code, I need to know this file type uploaded from the byte[] so I can render the correct content-type to browser!</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1646885/flex-download-file-close-new-window-tab-in-ie0Flex: Download file & close new window/tab in IEmazzi2009-10-29T22:06:32Z2009-10-30T06:30:16Z
<p>Hello everybody,</p>
<p>I'm getting an anoying problem in IE6.02 when trying to download a file through flex + struts action, the browser opens a new window and doesn't close it after the download has finished.</p>
<p>The flex code is:</p>
<p>navigateToURL(url,"_blank");</p>
<p>The content headers are:</p>
<p>HTTP/1.x 200 OK
Date: Thu, 29 Oct 2009 22:00:44 GMT
Transfer-Encoding: chunked
Content-Type: application-download; charset=UTF-8
Content-Disposition: attachment; filename=myfile.pdf
X-Powered-By: Servlet/2.4 JSP/2.0</p>
<p>also, we tried with</p>
<p>Content-Type: application/pdf; charset=UTF-8</p>
<p>How do I close the new opened window automatically? In FF works perfectly.</p>
<p>Thanks in advance,</p>
http://stackoverflow.com/questions/919584/how-to-change-content-type-in-php0How to change content type in php?mcfadder_092009-05-28T07:23:16Z2009-10-29T04:42:15Z
<p>I have an image, but it keep doesn't display. I check the image properties (right-click and chose properties), and the I found the "type" is text/html not JPEG image. Is this because the type that cause my images dont show up?? How to change the "Type" value? I am using php...</p>
<p>I display the image in a simple html [img] tag...</p>
<p>EDIT:</p>
<p>Yeah, i tried.. If i include the </p>
<pre><code><?php header('Content-Type:image/jpeg'); ?>
</code></pre>
<p>It display the URL, very weird huh??</p>
<p>I am using apache, the image is generated by php code...</p>
<pre><code><img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&amp;h=195&amp;w=540&amp;zc=1&amp;q=95" alt="<?php the_title(); ?>
</code></pre>
http://stackoverflow.com/questions/1633348/is-there-a-way-to-generate-a-content-type-header-from-a-file-extension-in-java2is there a way to generate a Content-Type header from a file extension in Java?Jason S2009-10-27T20:08:05Z2009-10-27T20:33:58Z
<p>I have a Java application which sometimes has to generate a Content-Type header from a filename alone. Is there a way to estimate the Content-Type for common extensions? (e.g. ".pdf" maps to "application/pdf", etc)</p>
http://stackoverflow.com/questions/1599562/why-http-post-parameter-dissapears-after-content-type-changed0Why http post parameter dissapears after Content-Type changed?MaLKaV_eS2009-10-21T08:59:18Z2009-10-27T17:50:33Z
<p>I'm making an http post to an url.</p>
<p>When using WebClient or WebRequest it all works fine, unless I change the WebRequest.ContentType propertie.</p>
<p>What I'm missing here?</p>
<p>As suggested <a href="http://stackoverflow.com/questions/1537167/how-to-send-parameters-on-an-https-post-with-c">here</a> I'm trying this:</p>
<pre><code>using (WebClient client = new WebClient())
{
NameValueCollection fields = new NameValueCollection();
fields.Add("query", query);
client.UploadValues(url, fields);
byte[] respBytes = client.UploadValues(url, fields);
string resp = client.Encoding.GetString(respBytes);
}
</code></pre>
<p>And this (as suggested <a href="http://stackoverflow.com/questions/1439678/https-post-from-php-to-c">here</a>)</p>
<pre><code> Uri uri = new Uri(url);
ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(new interhanse().AcceptAllCertifications);
request = (HttpWebRequest)WebRequest.Create(uri);
request.Credentials = new NetworkCredential("user", "pass");
request.PreAuthenticate = true;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = postData.Length;
using (Stream writeStream = request.GetRequestStream())
{
UTF8Encoding encoding = new UTF8Encoding();
byte[] bytes = encoding.GetBytes(postData);
writeStream.Write(bytes, 0, bytes.Length);
}
</code></pre>
<p>Being postData a NameValueCollection.</p>
http://stackoverflow.com/questions/1623719/how-to-know-the-contenttypeid-of-a-content-type-made-with-the-sharepoint-interfac0How to know the ContentTypeId of a content type made with the Sharepoint interface?D. Veloper2009-10-26T08:49:24Z2009-10-26T13:41:51Z
<p>I am working on a workflow in VS which creates a task with content type.
The content type I want to use is a custom content type made with the SharePoint interface. </p>
<p>Is there a way to know this content type's Id so I can use it in my workflow?</p>
<p>If not; is there an alternative how to initiate a task containing this content type with my workflow code in VS?</p>
http://stackoverflow.com/questions/1624616/is-content-type-meta-tag-important-if-responce-headers-include-content-type2Is Content-Type meta tag important if responce headers include content-type?rikh2009-10-26T12:55:07Z2009-10-26T13:14:54Z
<p>At the moment we set content-type in our responce headers, a bit like this...</p>
<pre><code>Content-Type text/html; charset=utf-8
</code></pre>
<p>We also have this at the top of html pages...</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</code></pre>
<p>I've left the rest of the page out.</p>
<p>I know that we don't strictly speaking need the meta tag at the top of the html page.</p>
<p>However, do I need to leave it there really, due to known browser bugginess / problems etc? I'd like to take it out to avoid character encoding being set in 2 different places, but need to be sure it won't mess anything up somewhere.</p>
http://stackoverflow.com/questions/1612767/file-extensions-and-mime-types-in-net1File extensions and MIME Types in .NETMarc Climent2009-10-23T11:13:00Z2009-10-26T08:14:16Z
<p>I want to get a MIME Content-Type from a given extension (preferably without accessing the physical file). I have seen some questions about this and the methods described to perform this can be resumed in:</p>
<ol>
<li>Use <a href="http://stackoverflow.com/questions/1029740/get-a-mime-from-an-extention/1029796#1029796">registry information</a>.</li>
<li>Use <a href="http://stackoverflow.com/questions/58510/in-c-how-can-you-find-the-mime-type-of-a-file-based-on-the-file-signature-not-th/58570#58570">urlmon.dll's FindMimeFromData</a>.</li>
<li>Use <a href="http://stackoverflow.com/questions/174888/asp-net-iis6-how-to-search-the-servers-mime-map/174988#174988">IIS information</a>.</li>
<li>Roll your own MIME mapping function. Based on <a href="http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types" rel="nofollow">this table</a>, for example.</li>
</ol>
<p>I've been using no.1 for some time but I realized that the information provided by the registry is not consistent and depends on the software installed on the machine. Some extensions, like .zip don't use to have a Content-Type specified.</p>
<p>Solution no.2 forces me to have the file on disk in order to read the first bytes, which is something slow but may get good results.</p>
<p>The third method is based on Directory Services and all that stuff, which is something I don't like much because I have to add COM references and I'm not sure it's consistent between IIS6 and IIS7. Also, I don't know the performance of this method.</p>
<p>Finally, I didn't want to use my own table but at the end seems the best option if I want a decent performance and consistency of the results between platforms (even Mono).</p>
<p>Do you think there's a better option than using my own table or one of other described methods are better? What's your experience?</p>
http://stackoverflow.com/questions/1595956/how-to-set-webclient-content-type-header0How to set WebClient Content-Type Header?MaLKaV_eS2009-10-20T16:54:22Z2009-10-21T08:19:13Z
<p>To conect to a third party service I need to make a Https Post. One of the requisites set is to sent a custom content type.</p>
<p>I'm using WebClient, but I can't find how to set it. I've tried making a new class and overriding the CreateRequest Method, but that make request crash.</p>
<p>Is there any way to do that without having to rewrite CopyHeadersTo method?</p>
<p>Thanks in advance</p>
<p><strong>EDIT</strong> CopyHeaderTo is a method I've seen using .NET Reflector. It's invoqued from GetWebRequest and sets all Request Headers, including Content-Type, from private properties.</p>
http://stackoverflow.com/questions/1593292/deploy-3-contenttypes-using-1-feature-only-2-gets-deployed0Deploy 3 ContentTypes using 1 Feature - Only 2 gets deployed.Janis Veinbergs2009-10-20T08:53:23Z2009-10-21T06:29:48Z
<p>Hello.</p>
<p>I have a feature which has following manifest file that defines multiple content types:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<ContentType ID="0x01008e5736f1388b4809a9f102da1e573ddb"
Name="$Resources:Balticovo,ContentType_AgendaName"
Group="$Resources:core,CustomContentTypesGroup"
Description="$Resources:Balticovo,ContentType_AgendaDescription"
Version="1">
<FieldRefs>
<!-- Jautājumu pacēla-->
<FieldRef ID="{31b28519-c87e-4e0d-9c1b-d02c5e034cf9}" />
<!-- Kam piešķirts -->
<FieldRef ID="{53101f38-dd2e-458c-b245-0c236cc13d1a}" />
<!-- Saistītās personas -->
<FieldRef ID="{E5C80D9B-4E09-4457-A6A9-5A6F574DEDA5}" />
<!-- Komentāri -->
<FieldRef ID="{6df9bd52-550e-4a30-bc31-a4366832a87f}" />
<!-- Izpildīt līdz -->
<FieldRef ID="{cd21b4c2-6841-4f9e-a23a-738a65f99889}" />
</FieldRefs>
<XmlDocuments>
<XmlDocument NamespaceURI="http://schemas.microsoft.com/sharepoint/events">
<spe:Receivers xmlns:spe="http://schemas.microsoft.com/sharepoint/events">
<Receiver>
<Name>AgendaToTaskOnAdd</Name>
<Type>ItemAdded</Type>
<SequenceNumber>10000</SequenceNumber>
<Assembly>Balticovo.SharePoint, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9f4da00116c38ec5</Assembly>
<Class>Balticovo.SharePoint.AgendaToTask</Class>
<Data></Data>
<Filter></Filter>
</Receiver>
<Receiver>
<Name>AgendaToTaskOnUpdate</Name>
<Type>ItemUpdating</Type>
<SequenceNumber>10000</SequenceNumber>
<Assembly>Balticovo.SharePoint, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9f4da00116c38ec5</Assembly>
<Class>Balticovo.SharePoint.AgendaToTask</Class>
<Data></Data>
<Filter></Filter>
</Receiver>
</spe:Receivers>
</XmlDocument>
</XmlDocuments>
</ContentType>
<ContentType ID="0x0100AD4DFC626A3F4db492A4FCF91B0E47A0"
Name="$Resources:Balticovo,ContentType_ReglarAttendeeName"
Group="$Resources:core,CustomContentTypesGroup"
Description="$Resources:Balticovo,ContentType_ReglarAttendeeDescription"
Version="1">
<FieldRefs>
<FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Required="FALSE" Hidden="TRUE" />
<FieldRef ID="{37D4FF81-9DE1-436a-B270-923E93258507}" />
</FieldRefs>
<XmlDocuments>
<XmlDocument NamespaceURI="http://schemas.microsoft.com/sharepoint/events">
<spe:Receivers xmlns:spe="http://schemas.microsoft.com/sharepoint/events">
<Receiver>
<Name>AddAttendeeToCurrentMeeting</Name>
<Type>ItemAdded</Type>
<SequenceNumber>10000</SequenceNumber>
<Assembly>Balticovo.SharePoint, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9f4da00116c38ec5</Assembly>
<Class>Balticovo.SharePoint.RegularAttendeesEventReceiver</Class>
<Data></Data>
<Filter></Filter>
</Receiver>
</spe:Receivers>
</XmlDocument>
</XmlDocuments>
</ContentType>
<ContentType ID="0x01008606FC8499F9407b83AF3DBAD6865F58"
Name="$Resources:Balticovo,ContentType_WebApplicationQueryName"
Group="$Resources:core,CustomContentTypesGroup"
Description="$Resources:Balticovo,ContentType_WebApplicationQueryDescription"
Version="1">
<FieldRefs>
<FieldRef ID="{acbe30d6-ea25-40a2-b6e5-9df76e9c881e}" />
<FieldRef ID="{6c732395-7404-4ad4-9b03-50195b70c006}" />
<FieldRef ID="{cb16a530-21ca-43b1-b270-dbb33fa3f7a7}" />
<FieldRef ID="{bd94a837-82ab-4a8b-b7df-9978cd35f9ec}" />
<FieldRef ID="{c05e3059-b1fc-4116-8f7d-1cfde24b96f4}" />
<FieldRef ID="{32fb6f25-cf6e-4e9c-8244-137d017c9348}" />
<FieldRef ID="{e42ca75d-f017-4eb7-91a6-236dfd71017a}" />
<FieldRef ID="{EAA39077-D6AF-464e-8052-9001B4E99834}" />
</FieldRefs>
</ContentType>
</Elements>
</code></pre>
<p>So, there are 3 CT's, however first one doesn't deploy. It's not hidden, because when checking SPWeb.AvailableContentTypes - there is no such CT available.</p>
<ul>
<li>ID of CType is Unique.</li>
<li>Receiver classes are publicly
available.</li>
<li>Referencing fields are also
available.</li>
<li>Trying this on a fresh web application.</li>
</ul>
<p>Oh, what could be wrong?</p>
http://stackoverflow.com/questions/1594787/how-to-get-contenttype-for-file-in-asp-net-mvc-when-using-file-action-method0How to get ContentType for file in ASP.NET MVC when using File Action MethodSergio2009-10-20T13:54:45Z2009-10-20T23:47:16Z
<p>Hi there,</p>
<p>Attempting to use asp.net mvc's Action Result of File.</p>
<p>So it would seem that I have to specify a ContentType for the file to be sent to the browser. Currently there is no real limit to what types of files may be sent to the browser in my application, so I can't always assume it will be a "text/pdf", for example.</p>
<p>What's the best way of working out the ContentType of a file, or is there a way where this can be set to something 'generic'?</p>
<p>The simpler the better!</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/809179/saving-a-document-to-sharepoint-brings-up-web-file-properties-dialog-with-incor1Saving a document to SharePoint brings up "Web File Properties" dialog with incorrect metadataKit Menke2009-04-30T21:26:27Z2009-10-19T16:08:10Z
<p><b>Situation:</b></p>
<ul>
<li>A custom "Master Document" content type inherits from Document</li>
<li>The "Master Document" content type has five additional choice fields</li>
<li>There are five custom "Document Template" content types that inherit from the "Master Document" content type</li>
<li>Each of the "Document Template" content types uses a different Word document template (.dot) file</li>
<li>Each of the "Document Template" content types have been added to a document library</li>
</ul>
<p><b>Problem:</b><br/></p>
<ol>
<li>I click on a document in the library</li>
<li>Document opens up in Word 2003 for me to edit</li>
<li>I make some changes and save</li>
<li>A box pops up called "Web File Properties". The window contains all of my custom metadata properties and the ContentType field. The ContentType field is set correctly to the current content type. The other fields are reset to their default values. This same window can apparently be opened by going to File -> Properties</li>
</ol>
<p>This window by itself would be fine except for two reasons:</p>
<ul>
<li>It includes the ContentType column</li>
<li>All of my custom metadata properties are visible but are reset to their default values instead of whatever values were previously selected. This means, every time the user wants to save the document, they have to remember what properties were tagged and set them back.</li>
</ul>
<p><b>Question:</b></p>
<ol>
<li>Can I disable this Web File Properties box?</li>
<li>If no... can I get the fields that show up to be populated to their correct values?</li>
<li>If no... is there a way to disable my fields from displaying in this window?</li>
<li>If no... is this a SharePoint page that I can modify?</li>
</ol>
<p><code>***</code><b><em>Edit with some more information</em></b><code>***</code></p>
<p>It looks like this only happens in Office 2003 and looks like it affects Choice fields. If I create the same column as a <em>Lookup</em> field, it seems to work.</p>
<p><em>Edit again</em></p>
<p>Looks like if the lookup field is a multi-select field then it will not show up in the Web File Properties box at all (single select lookups still work).</p>
<p><em>edit 10/14/2009</em></p>
<p>Link to the KB Article mentioned below by Brenda:
<a href="http://support.microsoft.com/kb/971500/" rel="nofollow">http://support.microsoft.com/kb/971500/</a></p>
http://stackoverflow.com/questions/1563753/content-type-and-representations4Content-Type and Representationsnotnoop2009-10-14T00:57:05Z2009-10-14T01:05:21Z
<p>What is the common convention for supporting multiple representation (e.g. html, json, xml) for resources (e.g. blog, user) in django?</p>
<p>First, I don't know how I should format my urls. For example, what your take on using either of these urls to request xml format</p>
<ul>
<li><code>/<resource>.<format></code>, e.g. <code>/blogs/123.xml</code></li>
<li><code>/<format>/<resource></code>, e.g. <code>/xml/blogs/123</code></li>
<li><code>/<resource>?format=<format></code>, e.g. <code>/blogs/123?format=xml</code></li>
</ul>
<p>Should I just rely on the <code>Content-Type</code> passed parameter? What about having multiple mobile representation (e.g. iphone, mobile, palm) and full browser representation?</p>
<p>What about views? What's the convention for choosing the right templates without having a lot of if statements or much duplicate code.</p>
http://stackoverflow.com/questions/1549512/categorizing-non-id-categories-php-loop0Categorizing non-ID categories PHP loopkonzepz2009-10-11T00:51:57Z2009-10-11T01:47:47Z
<p>On my project there're various search results of different content-types. For unimportant reasons, not all content-types carry a unique ID. However, I tried to write this loop that will detect IDless content-types, and will give them a unique ID.</p>
<p>Basically, the results look like this:</p>
<ul>
<li>Category ID 3</li>
<li>Category ID 3</li>
<li>Category ID 4</li>
<li>NON-ID Category 1</li>
<li>NON-ID Category 2</li>
</ul>
<p>[...]</p>
<p>I tried this:</p>
<pre><code>$current = $result->section;
// if there's a category ID -- use it
if ($current != null) echo $result->sectionid;
else
// if this is the first IDless category -- initialize. this happens once.
if ($virginity == true) {
$store = $current;
$virginity = false;
}
// if initialized and current category string is the same as stored category string -- print it
if (($virginity == 0) && ($store = $current)) {
echo $defaultID;
}
// if initialized and current category string is different from the stored category string -- set new default category +1 and print it
if (($virginity == false) && ($store != $current)) {
$defaultID = $defaultID++;
echo $defaultID;
$store = $current;
}
</code></pre>
<p>Can you see where I'm going here?
Trying to give each new category that comes up in the search results a unique ID, on the next loop session - check if the category string is same as the previous one, if so -- use the same ID, else -- bump ID by 1, print the new ID and store a new category.</p>
<p>However: This doesn't work properly.</p>
<p>Why?</p>
http://stackoverflow.com/questions/1545427/cascaded-listboxes-using-spfieldmultichoice-issue-defaults-to-default-content-t0Cascaded ListBoxes using SPFieldMultiChoice - issue defaults to default Content typePoonam2009-10-09T18:41:21Z2009-10-10T22:15:22Z
<p>I wound up modifying the source from a publically posted POC: <a href="http://datacogs.com/datablogs/archive/2007/08/26/641.aspx" rel="nofollow">http://datacogs.com/datablogs/archive/2007/08/26/641.aspx</a>, which is a custom field definition for cascading drop downs. The modifications were to allow parent-child list boxes where a user can multiselect for filtering and selecting the values to be written back to a SharePoint list.
I got the parent-child cascading behavior working, but the save operation only takes the default Content Type value.</p>
<p>I changed the base type for the custom field control from "SPFieldText" to "SPFieldMultiChoice", along with changing the FLD_TYPES field definition values from: "Text" to "MultiChoice" </p>
<p>Steps Explained:
1. The custom field is created which is derived from ‘SPFieldMultiChoice’ class. The custom field allows multiple values to be selected.
2. The Field created using above custom field is added to custom content type created from GUI derived from ‘Document’ Content type.
3. The custom content type is added to the document library.
4. The document is uploaded and custom content type is selected and tagged to document.
A. The correct content type gets tagged with correct metadata if type of document is .xls,.doc,.txt etc
B. The default content type i.e. ‘Document Content Type’ gets tagged if type of document is .xlsx, .docx.</p>
<p>Issue Summary – Point#B: is an issue as correct content type is not tagged and default content type gets tagged if type of uploaded document is .xlsx or .docx.
However same content type , same custom field works if type of document is .xls or .doc.</p>
<p>Appreciate your inputs in this regard.</p>
<p>Thanks for taking the time to read through my post.</p>
<p>Cheers, ~Poonam</p>
http://stackoverflow.com/questions/1507929/preserving-content-type-when-posting-a-file-from-iphone-to-rails0Preserving content-type when posting a file from iPhone to Railswdlindmeier2009-10-02T05:57:21Z2009-10-10T02:09:27Z
<p>I am posting a .zip file from the iPhone to a Rails server using an NSURLRequest. The problem is that the content-type of the zip file is lost in-transit. When I upload the same zip file from a web-browser to Rails, the content-type is preserved. This leads me to believe it's related to the way I'm sending it from the iPhone. Does anyone have any idea why this might happen? I've posted the iPhone code below.</p>
<p>NSString *filePath = [self filePathForExportedData];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:kExportURLString]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:20.0];</p>
<pre><code>[theRequest setHTTPMethod:@"POST"];
[theRequest setValue: [NSString stringWithFormat:@"multipart/form-data; boundary=%@", BOUNDARY]
</code></pre>
<p>forHTTPHeaderField:@"Content-Type"];
NSMutableData *fileData = [NSMutableData dataWithContentsOfFile:filePath];
NSMutableData *postData = [NSMutableData dataWithCapacity:[fileData length] + 512];
[postData appendData: [[NSString stringWithFormat:@"--%@\r\n", BOUNDARY] dataUsingEncoding:NSUTF8StringEncoding]];
[postData appendData: [[NSString stringWithFormat: @"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n\r\n", @"archive_file", @"export.zip"]
dataUsingEncoding:NSUTF8StringEncoding]];
[postData appendData: [[NSString stringWithFormat:@"Content-Type: application/zip\r\n\r\n"]
dataUsingEncoding:NSUTF8StringEncoding]];
[postData appendData: fileData];
[postData appendData: [[NSString stringWithFormat:@"\r\n--%@--\r\n", BOUNDARY] dataUsingEncoding:NSUTF8StringEncoding]];
[theRequest setHTTPBody:postData];
[self makeRequest:theRequest]; # This will send the request</p>