What is RFC for "Content-Type: application/HTTP-Kerberos-session-enc"

Does anybody know how to process HTTP request with content type "Content-Type: application/HTTP-Kerberos-session-enc" ?
I cannot decode HTTP request:
-- Encrypted Boundary
     Content-Type: application/HTTP-Kerberos-session-encrypted
     OriginalContent: type=application/soap+xml;charset=UTF-16;Length=1624
-- Encrypted Boundary
     Content-Type: application/octet-stream
<octet-stream>-- Encrypted Boundary
Where <octet-stream> starts with four bytes [47, 0, 0, 0]
other bytes from <octet-stream> I am trying to decode "context.unwrap()" method ("context" was created on previous request):
                                        GSSHeader gssHeader = new GSSHeader(new ByteArrayInputStream(content));
                                        log.debug("Incoming warped content length: " + content.length);
                                        log.debug("Incoming GSS header OID: " + gssHeader.getOid());
                                        log.debug("Incoming GSS header length: " + gssHeader.getLength());
                                        log.debug("Incoming GSS header MechTokenLength: " + gssHeader.getMechTokenLength());
                                   byte[] newBytes = context.unwrap(content, 0, content.length, msgProp);
"content" - byte array which was created from <octet-stream> without first four bytes (without [47, 0, 0, 0]).
"gssHeader" is created correctly because in debug log I see:
Incoming warped content length: 1671
Incoming GSS header OID: 1.2.840.113554.1.2.2
Incoming GSS header length: 15
Incoming GSS header MechTokenLength: 1656
but on "unwrap" operation I've got exception:
GSSException: Defective token detected (Mechanism level: Invalid padding on Wrap Token)
     at sun.security.jgss.krb5.CipherHelper.arcFourDecrypt(CipherHelper.java:1226)
     at sun.security.jgss.krb5.CipherHelper.decryptData(CipherHelper.java:532)
     at sun.security.jgss.krb5.WrapToken.getDataFromBuffer(WrapToken.java:230)
     at sun.security.jgss.krb5.WrapToken.getData(WrapToken.java:195)
     at sun.security.jgss.krb5.WrapToken.getData(WrapToken.java:168)
     at sun.security.jgss.krb5.Krb5Context.unwrap(Krb5Context.java:941)
     at sun.security.jgss.GSSContextImpl.unwrap(GSSContextImpl.java:384)
     at com.myproject.ws_management.WSServer$MyHandler.handle(WSServer.java:361)
     at com.sun.net.httpserver.Filter$Chain.doFilter(Filter.java:65)
     at sun.net.httpserver.AuthFilter.doFilter(AuthFilter.java:65)
     at com.sun.net.httpserver.Filter$Chain.doFilter(Filter.java:68)
     at sun.net.httpserver.ServerImpl$Exchange$LinkHandler.handle(ServerImpl.java:552)
     at com.sun.net.httpserver.Filter$Chain.doFilter(Filter.java:65)
     at sun.net.httpserver.ServerImpl$Exchange.run(ServerImpl.java:524)
     at sun.net.httpserver.ServerImpl$DefaultExecutor.execute(ServerImpl.java:119)
     at sun.net.httpserver.ServerImpl$Dispatcher.handle(ServerImpl.java:349)
     at sun.net.httpserver.ServerImpl$Dispatcher.run(ServerImpl.java:321)
     at java.lang.Thread.run(Thread.java:619)
KeyTab instance already exists

It looks like [47, 0, 0, 0] (hex [2F, 0, 0, 0]) is cipher suite, but on http://www.iana.org/assignments/tls-parameters
I fount that it is:
0x00,0x2F TLS_RSA_WITH_AES_128_CBC_SHA [RFC3268]
So... what does this bytes can mean ?

Similar Messages

  • Content-Type=application/x-www-form-urlencoded with UTF-8  data which servlet fails to interpret correctly .

    My Environment is Weblogic 6.1 SP2 on WIN2K.
    I have an HTTP client sending an HTTP request with
    Content-Type=application/x-www-form-urlencoded
    the data in HTTP request is in UTF-8. Note that HTTP client does not specify charset=UTF-8
    as part of the Content-Type.
    I have a servlet "VosXmlEvents" processing this HTTP request.
    The HTTP request contains data like &#8220;Zoë&#8221; which the servlet below
    interprets as &#8220;Zoë&#8221; causing me to think that my deployment settings
    might be wrong.
    My Deployment settings:
    In weblogic.xml deployment descriptor I have specified following:
    <charset-params>
    <!-- I specified this so that I can tell to weblogic that HTTP request data is
    UTF-8 so weblogic can successfully convert it to ISO-8859-1 as per Java servlet
    spec.-->
    <input-charset>
    <resource-path>/vos/events/xml/*</resource-path>
    <!-- I tried both UTF8 and UTF-8 and got same results-->
    <java-charset-name>UTF8</java-charset-name>
    </input-charset>
    <!-- I specified the the settings below just to be on the safe side, as I have
    seen java documentation, newsgroups etc. using slightly different, names for the
    same char encoding/canonical names . Java uses MIME preferred names,I think I
    dont have to do this but I hope specifying these should not do any harm either,
    am I correct in assuming it? (see reference 1 and 2. below for details)-->
    <charset-mapping>
    <iana-charset-name>ISO_8859-1:1987</iana-charset-name>
    <java-charset-name>ISO-8859-1</java-charset-name>
    </charset-mapping>
    <charset-mapping>
    <iana-charset-name>ISO_8859-1:1987</iana-charset-name>
    <java-charset-name>ISO8859_1</java-charset-name>
    </charset-mapping>
    <charset-mapping>
    <iana-charset-name>UTF-8</iana-charset-name>
    <java-charset-name>UTF-8</java-charset-name>
    </charset-mapping>
    <charset-mapping>
    <iana-charset-name>UTF-8</iana-charset-name>
    <java-charset-name>UTF8</java-charset-name>
    </charset-mapping>
    </charset-params>
    My web.xml has:
    <servlet>
    <servlet-name>VosXmlEvents</servlet-name>
    <servlet-class>some class name</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>VosXmlEvents</servlet-name>
    <url-pattern>/vos/events/xml/*</url-pattern>
    </servlet-mapping>
    According to Servlet spec. 2.3 sec. SRV.4.9 Request data encoding, cut pasting
    from spec below:
    "Currently, many browsers do not send a char encoding qualifier with the Content-Type
    header, leaving open the determination of the character encoding for reading HTTP
    requests. The default encoding of a request the container uses to create the request
    reader and parse POST data must be &#8220;ISO-8859-1&#8221;, if none has been
    specified by the client request. However, in order to indicate to the developer
    in this case the failure of the client to send a character encoding, the container
    returns null from the getCharacterEncoding method.
    If the client hasn&#8217;t set character encoding and the request data is encoded
    with a different encoding than the default as described above, breakage can occur.
    To remedy this situation, a new method setCharacterEncoding(String enc) has been
    added to the ServletRequest interface. Developers can override the
    character encoding supplied by the container by calling this method. It must be
    called prior to parsing any post data or reading any input from the request. Calling
    this method once data has been read will not affect the encoding."
    Q1. Should not <input-charset> related settings in weblogic.xml for a servlet
    helps container actually do some thing like setCharacterEncoding(String enc) on
    HTTP Request before it call the servlet?
    Q2. If not then that would mean I have to programatically call setCharacterEncoding(String
    enc)to correctly interpret my HTTP Request?
    Q3. If the answer to Q1 is "yes" then I will assume that getInputStream() or getReader()
    methods on the HttpServletRequest will give the chacter in the client encoded
    format which in this case is UTF-8, i.e I will get "Zoë" as in this example. Am
    I correct here?
    Reference:
    1. http://edocs.bea.com/wls/docs70/webapp/components.html#139932
    2. http://java.sun.com/j2se/1.3/docs/guide/intl/encoding.doc.html

    Stefan,
    Thanks for the information. I have the following question then.
    The Webserver I am interacting with does not recognize user and password provided in the channel. It accepts user and pwd in payload and in application/x-www-form-urlencoded  content type only.
    Sample Raw Post that server server requires looks like this
    User=yourname&Password=yourpassword&INPUT_XML=%3C%3Fxmlversion%3D%221.0%22standalone%3D%22no%22%3F%3E%3CDELIVERY%3E%3CMESSAGE%3E%0D%0A++++%3CDESTINATION_ADDR%3E%2B447900570205%3C%2FDESTINATION_ADDR%3E%%3C%2FMESSAGE%3E%0D%0A%0D%0A%3C%2FDELIVERY%3E%
    What i have done is that constructed the post manually in Java code in un encoded form and expected the HTTP Adapter to do the encoding. Having done this, the HTTP Server is able to scuccessfully parse the xml except for & and < , > chars which err out as invalid XML.
    Is there an elegant way of doing above scenario using XML post and standard HTTP Adapter.
    Best Regards,
    Sudharshan N A

  • How do I change the content-type in http header when using JAX-WS?

    I need to change Content-Type in http Header. I am using JAX-WS to invoke web service call. Can someone tell me how to do it? Thanks a lot!

    LabVIEW does so many wonderful things, but the inability to perform what should be a simple task, such as upgrade a RT chassis within a LV Project, bewilders me. This is going to cost me hours, I just know it...
    Is there anything on the Idea Exchange for this?? A quick search shows nothing, so maybe I'll add an entry.
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • Unsupported Content-Type: application/soap+xml

    I've created a simple composite application with a bpel jbi module using glassfishesbv21.
    The bpel process starts when I invoke a webservice (soap-binding).
    When I run a test case for the ca everything works fine.
    When I call the webservice from an external web application, the client (created with netbeans wizard bundled in glassfishesbv21) obtains the response as expected and doesn't report any exception while the server rises a com.sun.xml.ws.server.UnsupportedMediaException.
    Googoling I found that this maybe caused by the use of soap1.1 and soap1.2 but is also true that JAX-WS runtime should look into the WSDL to determine the binding being used and configures itself accordingly.
    the stacktrace is:
    Finished processing outbound messages.
    Request doesnt have a Content-Type
    com.sun.xml.ws.server.UnsupportedMediaException: Request doesnt have a Content-Type
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:267)
    at com.sun.xml.ws.transport.http.HttpAdapter.decodePacket(HttpAdapter.java:276)
    at com.sun.xml.ws.transport.http.HttpAdapter.invokeAsync(HttpAdapter.java:341)
    at com.sun.jbi.httpsoapbc.embedded.JAXWSGrizzlyRequestProcessor.processAsynchRequest(JAXWSGrizzlyRequestProcessor.java:386)
    at com.sun.jbi.httpsoapbc.embedded.JAXWSGrizzlyRequestProcessor.service(JAXWSGrizzlyRequestProcessor.java:220)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:647)
    at com.sun.jbi.httpsoapbc.embedded.JBIGrizzlyAsyncFilter.doFilter(JBIGrizzlyAsyncFilter.java:95)
    at com.sun.enterprise.web.connector.grizzly.async.DefaultAsyncExecutor.invokeFilters(DefaultAsyncExecutor.java:175)
    at com.sun.enterprise.web.connector.grizzly.async.DefaultAsyncExecutor.interrupt(DefaultAsyncExecutor.java:153)
    at com.sun.enterprise.web.connector.grizzly.async.AsyncProcessorTask.doTask(AsyncProcessorTask.java:92)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
    at com.sun.enterprise.web.connector.grizzly.WorkerThreadImpl.run(WorkerThreadImpl.java:116)
    Unsupported Content-Type: application/soap+xml Supported ones are: [text/xml]
    com.sun.xml.ws.server.UnsupportedMediaException: Unsupported Content-Type: application/soap+xml Supported ones are: [text/xml]
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:291)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:128)
    ====[com.sun.xml.ws.assembler.server:request]====
    <?xml version="1.0" ?>
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing">
    <soap-env:Header>
    <wsa:Action>http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</wsa:Action>
    <wsa:To>http://localhost:19081/coreAnagrafeUpdateService/coreAnagrafeUpdatePort</wsa:To>
    <wsa:ReplyTo>
    <wsa:Address>http://www.w3.org/2005/08/addressing/anonymous</wsa:Address>
    </wsa:ReplyTo>
    <wsa:MessageID>uuid:778b135f-3fdf-44b2-b53e-ebaab7441e40</wsa:MessageID>
    </soap-env:Header>
    <soap-env:Body></soap-env:Body>
    </soap-env:Envelope>
    ============
    ====[com.sun.xml.ws.assembler.server:response]====
    <?xml version="1.0" ?>
    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body>
    <S:Fault xmlns:ns3="http://www.w3.org/2003/05/soap-envelope" xmlns="">
    <faultcode>S:Server</faultcode>
    <faultstring>javax.jbi.messaging.MessagingException: HTTPBC-E00798: Message normalization failed</faultstring>
    </S:Fault>
    </S:Body>
    </S:Envelope>
    ============
    Unsupported Content-Type: application/soap+xml Supported ones are: [text/xml]
    com.sun.xml.ws.server.UnsupportedMediaException: Unsupported Content-Type: application/soap+xml Supported ones are: [text/xml]
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:291)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:128)
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:287)
    ====[com.sun.xml.ws.assembler.server:request]====
    <?xml version="1.0" ?>
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing">
    <soap-env:Header>
    <wsa:Action>http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</wsa:Action>
    <wsa:To>http://localhost:19081/coreAnagrafeUpdateService/coreAnagrafeUpdatePort/mex</wsa:To>
    <wsa:ReplyTo>
    <wsa:Address>http://www.w3.org/2005/08/addressing/anonymous</wsa:Address>
    </wsa:ReplyTo>
    <wsa:MessageID>uuid:778b135f-3fdf-44b2-b53e-ebaab7441e40</wsa:MessageID>
    </soap-env:Header>
    <soap-env:Body></soap-env:Body>
    </soap-env:Envelope>
    ============
    the wsdl is:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <definitions name="coreAnagrafeUpdateService"
    targetNamespace="http://service.box.nexus.com/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:tns="http://service.box.nexus.com/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> <types>
         <xsd:schema>
    <xsd:import namespace="http://service.box.nexus.com/" schemaLocation="core_anagrafe.xsd"/>
    </xsd:schema>
    </types>
    <message name="coreAnagrafeUpdateOperationRequest">
    <part name="parameters" element="tns:requestParameter"/>
    </message>
    <message name="coreAnagrafeUpdateOperationResponse">
    <part name="parameters" element="tns:coreAnagrafeResponse"/>
    </message>
    <message name="coreAnagrafeUpdateOperationFault">
    <part name="part1" element="tns:faultMessage"/>
    </message>
    <portType name="coreAnagrafeUpdatePortType">
    <operation name="coreAnagrafeUpdateOperation">
    <input message="tns:coreAnagrafeUpdateOperationRequest"/>
    <output message="tns:coreAnagrafeUpdateOperationResponse"/>
    <wsdl:fault name="fault1" message="tns:coreAnagrafeUpdateOperationFault"/>
    </operation>
    </portType>
    <binding name="coreAnagrafeUpdateBinding" type="tns:coreAnagrafeUpdatePortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="coreAnagrafeUpdateOperation">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal" />
    </input>
    <output>
    <soap:body use="literal" />
    </output>
    <wsdl:fault name="fault1">
    <soap:fault use="literal" name="fault1"/>
    </wsdl:fault>
    </operation>
    </binding>
    <service name="coreAnagrafeUpdateService">
    <port name="coreAnagrafeUpdatePort" binding="tns:coreAnagrafeUpdateBinding">
    <soap:address location="http://localhost:19081/coreAnagrafeUpdateService/coreAnagrafeUpdatePort"/>
    </port>
    </service>
    </definitions>
    Can anyone help me to understand the problem and solve it?
    Thanks in advance.

    Hi,
    Content-Type: application/xml
    ...check for the content type of the message that is sent ot the WS.....with the above mentioned content-type going to the WS currently...WS is not able to parse the req and hence the error....in other words wrong format being being passed.
    Regards,
    ABhishek.

  • Content type in HTTP adapter

    Hi experts,
    is content type application/x-www-form-urlencoded is supported in XI reciever HTTP adapter when we post some raw data ( without XML tags)? we are testing the same with fiddler ( Mozilla poster).
    Please advise.
    Thanks

    Hi steve,
    Thanks for the reply, but the solution is not there.
    anyone has configured the same, then please help.
    Thanks.

  • Content-type: application/xml and Application server 9

    I have a web service running on Application server 9, implemented using netbeans and JAX-WS.
    When a client sends a request to it with:
    Content-type: application/xml
    the request is rejected because the server does not recognise the mime type.
    Specifically, the response is:
    HTTP/1.1 415 Unsupported Media Type
    X-Powered-By: Servlet/2.5
    Content-Type: text/plain; charset=iso-8859-1
    Date: Fri, 01 Sep 2006 14:49:04 GMT
    Server: Sun Java System Application Server Platform Edition 9.0
    Connection: close
    Everything works fine when the request has:
    Content-type: text/xml
    Is there a way to make my web service accept content type of 'application/xml'?
    -Tony Beaumont
    Aston University
    beaumoaj

    I have fixed this for myself, i.e. decompile, replace in jar.
    My problem was that most tools define the encoding but code was simply testing
    if( contentType.equalsIgnoreCase( "text/xml" ) )
    so sending xml from other tools that send contentType
    "text/xml;encoding=UTF-8" or some such, like soap tools, would mean no XML was seen.
    Is the proper source available for XSQL?

  • Programmatically: Support content types in the gallery and for content types associated with a document library

    Hi there,
    Help appreciated in programmatically 'Supporting content types in the gallery and for content types associated with a document library'.
    Any resources/references or source is greatly appreciated.
    Regards,

    Hi,
    Would you mind providing more details about your requirement? Cause I'm not quite clear about what you really need.
    What’s more, there are seems two questions in your post. If you have several questions to ask, I suggest you post them into every single thread to make them easier to be discussed
    in the forum.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Custom edit page for content type

    Hello,
    I have following problem:
    when i try to open  my custom Edit Form for content type I have next error 
    System.NullReferenceException: Object reference not set to an instance of an object.    at Microsoft.Office.DocumentManagement.Pages.EditVideoSet.AddListFormWebPart()     at Microsoft.Office.DocumentManagement.Pages.EditVideoSet.OnInit(EventArgs
    e)     at System.Web.UI.Control.InitRecursive(Control namingContainer)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    44f6799c-6c5b-f0ab-e8ef-4d53a0f0b5eb
    I think problem is in custom page
    that almost the same as "EditVideoSet.aspx" but have code behind
    <%@ Page Language="C#" DynamicMasterPageFile="~masterurl/default.master" Inherits="Intergation.Layouts.Intergation.ApplicationPage2Edit"   CodeBehind="ApplicationPage2Edit.aspx.cs"       %> 
    public partial class ApplicationPage2Edit : EditVideoSet
    My task - create copy of the already existing edit page, but with code behind possibility.
    What I did wrong?

    Hi
    Thanks.
    I got rid of my earlier error as I was using the conatinerRenderer tag in the wrong way. It should have been
    &lt;containerRenderer class="com.tsynergy.container.SynergyLatestIDDBDrugsContainer"/&gt;
    Now I get to display the my edit content; But I still haven't been able to get rid of the top default portal banner that appears on my edit page. It has the default logo gif and the link to the home page.
    I can now put my own form and &lt;input&gt; types, Just need to get rid of the default banner now.
    Deepak

  • Photoshop Elements 6 and the XML for content type = frame

    Hello.
    I am working with XML files in Photoshop Elements 6.  I am trying to understand the structure for , frames, in the artwork palette.  These XML files are more complex than others so where can I get an explanation of this and other content types.
    Thank you
    David J. Krassen

    I have Leopard and PE6 and had no difficulty installing it. The only problem was with 'Bridge', which turned out to be a conflict with a file installed by the 'Opera' browser:
    Users/[username]/Library/Application Support/Opera/Widgets/widgets.dat
    If you have been using Opera you should remove this and note that if you run Opera again it will reinstall it. Earlier versions of Opera are OK. The presence of this file caused Bridge to hang when selecting 'Home'.
    Since removing that file I have had no problems whatever with PE6.

  • CFHTTP request with content-type "application/atom+xml"

    Is it possible to send a HTTP request (method="post")  with a body that has a set content-type (such as "application/atom+xml")?
    using CFHTTP and CFHTTPPRAM, it seems the tag does not accept a content-type.
    <cfhttpparam type="body" value="#myAtomXML#">
    is there anyway to have CFHTTP , post the body with a given content-type?
    IF NOT, could anyone point me to the right direction to accompolish this using Java?

    Hi,
    Have you tried the "mimetype" attribute of the <cfhttpparam> tag?.
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_g-h_10.html

  • What design aids for large-scale application (using LV6i) exist?

    I have a large-scale application that includes analog and digital I/O, motion control, multiple temperature readings, Ethernet communication, RS-232, DDE and ActiveX controls for communicating with other commercial software. We have to improve the system performance and ease the pain of maintaining and upgrading. What aids are there for large-scale application design and development?

    This doesn't exactly count as development "tools" but I can send you copies of three papers that I found when I was just getting started with LV. They can show you how to think about your problem--and that is really the hardest (and most important) part.
    Contact me directly and I'll email them to you. The archive is to large to post.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • No support for content-type in response header?

    When loading both movies and images Strobe Media Playback does not recognize content-type from the response header.I can't find any documentation for this, but when i look in the source code, there sees to be support for this kind of metadata. For example in the "canHandelResource" function for ImageLoader has a "MIME_TYPES_SUPPORTED" vector that contains the type "image/jpeg". I can't see way, but this function is always falling back to checking the URL for file extensions.
    override public function canHandleResource(resource:MediaResourceBase):Boolean
                var rt:int = MediaTypeUtil.checkMetadataMatchWithResource(resource, MEDIA_TYPES_SUPPORTED, MIME_TYPES_SUPPORTED);
                if (rt != MediaTypeUtil.METADATA_MATCH_UNKNOWN)
                    return rt == MediaTypeUtil.METADATA_MATCH_FOUND;
                var urlResource:URLResource = resource as URLResource;
                if (urlResource != null &&
                    urlResource.url != null)
                    var url:URL = new URL(urlResource.url);
                    return (url.path.search(/\.gif$|\.jpg$|\.png$/i) != -1);
                return false;
    This makes it impossible to load an image (or movie) from a web-service that don't contain a file extension. Even though the response header from the request contains the correct "Content-type". Example response header:
    Date: Wed, 13 Jul 2011 08:07:26 GMT
    Server: Apache/2.2.17 (Unix)
    Cache-Control: max-age=60
    Expires: Wed, 13 Jul 2011 08:08:26 GMT
    Content-Length: 34010
    Content-Type: image/jpeg
    X-Pad: avoid browser bug
    200 OK
    Anybody that know way this is the case?

    There is no need for a constructor when all attributes are assigned.Unless there is a date value, apparently ;)
    It also works if you explicitly <tt>CAST(SYSDATE AS DATE)</tt> so perhaps the internal limitation is to do with the two internal DATE types (type 12 and 13, if you check DUMP output).

  • Properties panel (for Content Types) not showing when creating sharepoint based document

    Hello,
    I've created three Content Types to populate when creating a new Budget document. The problem I'm seeing is that my pc always opens the Budget doc in Word Online and the properties box does not show. When I create a new Budget doc with my test pc, where
    it always opens in Word, the properties box does show the three Content Types.
    Is the idea of Content Type and the properties window supposed to work in Word Online?
    My pc is Win 7, Office 2010 and IE 11
    My test pc is Win 8, Office 2013 and IE 10
    Thanks

    Hi Jimbo, they don't work online. You should change your library settings to open documents in client program.
    cameron rautmann

  • MIME Content Type in HTTP Headers - They don't exist for TIFF images

    Hello,
    I think this may be a bug...
    In an effort to stop client browsers from attempting to render TIF images served up from UCM 11g, I would like to change the MIME Typte to: application/octet-stream
    Supremely, a browser would see this in the HTTP header and simply provide the "OPEN or SAVE" dialog.
    Seems easy enough - from the UCM Configuration Manager, I can set/edit all the mime types I want. I did set .tiff and .tif to application/octet-stream. Apparently Weblogic does NOT honor these settings.
    When I click on a PDF file, I get: application/pdf
    When I click on a TXT file, I get: text/plain
    When I click on a TIF file, I get: NOTHING - no mime type specified in the HTTP header at all.
    Does anybody know where in the stack of Weblogic/UCM 11g that mime types are set? Does anybody know why I'm not seeing ANY mime type when I click on a tif?
    Please let me know.
    Thanks!
    JDM

    Yeah, that does seem a bit unwieldy. Try the following instead:
    Navigate to the "<Middleware_home>/user_projects/domains/<yourdomain>/config/" directory and there create the following file :
    mimemappings.properties
    In this file add the below mapping :
    tiff=application/octet-stream
    Save the changes , restart UCM server and then test to see if the issue still shows up .

  • How to query for content type in plumtree?

    Hi,
    I am able to browse through the documents in knowledge directory and their properties programmatically using IDK. Here I am getting document property ids and their values, but not property name?
    Can anybody suggest me how to get property names for a given document in knowledge directory?
    Regards,
    G

    RemoteSession.getObjectManager(ObjectClass.Property)
    ObjectManager.querySingleObejct(id)
    theObject.getName()
    is that what you mean?
    Edited by: Joel Collins on Dec 5, 2008 5:57 AM

Maybe you are looking for

  • Envio de dados de importação em NF-e para SEFAZ

    Boa tarde pessoal, Estou numa implementação de solução de NF-e e não utilizamos a solução GRC. Porém, meu problema é sobre o envio dos dados de importação para serem montados no momento de criação do arquivo da NF-e. Dados como número de DI, local de

  • Any body has the same problem with youtube ?

    I'm having issues with the video playback on YouTube... it load OK then as I'm watching it the video part freezes as the audio continue. I have a brand new MacBook Pro 13" with 4 GB ram and Core i5 running at 2.5Ghz so there should be no problem with

  • How to devolep inbox in servlets?

    Hi i am having doubt in servlets, In my data base table i have 100,000 records then i want to display only 100 records in each page,without hitting database for displaying 100 records each time, how i can write my servlet code,please help me with par

  • Deleting Shared Assets

    Hi, I have an asset type which is shared between two sites. So whenever a contributor creates a new asset of that type,it will be automatically shared between the sites. But I do not have an option to unshare or delete that asset as it is been shared

  • Installation of Unsigned apps on N8

    how to install unsigned applications on nokia N8. Plz Help me