Text track russian (utf-8) problems in windows

Hi,
I am working with QT Pro on a Windows 7 PC and need to create several subtitled versions of a Movie.
For european languages everything went fine, but i have problems with Russian, Polish and Turkish.
When i open my utf-8 encoded *.txt file with Quicktime I only get gibberish characters.
I spent at least 2 hours searching the internet for similar issues, but couldn't find anything.
Can anybody help me with this, please?
thanks a lot!

The character set in your e-mail headers is set to iso-8859-1 (Western European).  Change that to utf-8.
$headers = "MIME-Version: 1.0\n"
            ."From: \"".$name."\" <".$email.">\n"
            ."Content-type: text/html; charset=iso-8859-1\n";
Nancy O.

Similar Messages

  • Video changes after applying text track

    Has anyone here seen this problem.
    I work for education, so by federal law we must caption all video used by students. The problem I'm encountering is that when I apply a text track to a QT file, so that it is captioned, it changes the video track, so that the color doubles and the contrast of the image darkens.
    If I turn off the text track this problem persists. If I extract the video from this file, (using the extract track option) into a new movie, (no text track brought over from the old movie) the video is fine again, till I add a new text track, then the whole problem presents itself again.
    Has anyone seen this problem and if so, is there a soultion?
    This also happens, if you apply a chapter text track as well.

    Thanks for the resonse
    The files are generated from an uncompressed 10bit video file, (exported out of FCP) and encoded, using Cleaner 6.5.
    Chapter, (added in FCP) and captioning, (via Mac Caption Pro software) is added to the file, via text tracks, to the origianl video. These tracks are turned off prior to encoding the QT streaming files. But the data is transfered to the final QT streaming file during the creation of the steraming file.
    All settings are set at default, the videos transparency is set to "None (allow dithering)" Layer 0. I've never change any of the settings of the tracks from there default settings.
    To see this issue on your end, just extract the video from one of your current QT files, which will open it into a new window an compare the two videos at the same frame. More than likely, you will see what I'm seeing. Once a text track has been turned on, unchecking it will not return the video to normal, only extraction of the video to a new movie will reveal the original state of the the QT video.
    Let me know what you find, thanks!

  • Problems adding Text track to .mov file

    I am having a problem adding a text track to a quicktime file. I want to overlay text onto a PAL DV file. The original file size is 720 x 576 but when I add the text (as per the instructions in the QT Player Help) instead of having the text overlaid, it appears next to the Video image and gives me an image size of 1325 x 577. If I now export this as a "PAL DV" file, QT Player shows the whole 1325x577 frame whilst FCP accepts the file but shows only the video part of the frame.
    I'm running QT 7.4.5 on a MacBook Pro with OS10.5.2. I have tried re-installing QT without success - this maybe because the Preferences seem to stick when upgrading/re-installing (?)
    Any thoughts, help or, better still, a definitive answer to my problem would be most welcome.

    Use the Movie Properties window to size your added text track to match the 720 width.
    For viewing a DVD on a TV size it even smaller (700) and set an offset value of 10 pixels so your text doesn't get cut off during playback.

  • Export H264 pass-through movie with embedded text track QuickTime Pro 7 Windows?

    Using QuickTime Pro 7 for Windows, I add a text track with closed captions to my H264 .mp4 videos. 
    The text track works great until I try to export it.  After I've added the text track, the text track is displayed as long as the track is selected to be active using the Movie Inspector track GUI.
    My movies are encoded as H264 for cross-platform compatibility, and need to remain in this format.  The only way to save them in QuickTimePro 7 for Windows is to Export Movie to MPEG-4.  I select Pass-Through mode to retain the resolution and bandwidth parameters that I initially encoded the video with.
    Unfortunately, after I export to MPEG-4, the caption track is lost.  It disappears.  When I open the newly exported MPEG-4 caption file, and select Movie Inspector, the caption track is missing.  Inspector only shows video and audio tracks.
    If QuickTime Pro 7 for Windows correctly exported my text track with the video and audio tracks, then users would be able to view the closed captions upon playback in QuickTime Player by selecting View--> Show Closed Captioning (Ctrl+Alt+T).
    Anyone been able to export to MPEG-4 pass-through movie with embedded text track QuickTime Pro 7 Windows?
    Thank you!

    Sorry here is the code
    <body>
    div id="myAlternativeContent"
    a href="videofolder/video.mov"
    img src="videofolder/video-poster.jpg"
    /a
    /div
    </body>
    videofolder/video
    Message was edited by: SFlocation
    Message was edited by: SFlocation

  • Text tracks no longer visible in Quicktime Pro for Windows 7.7.2?

    I opened a text track in Quicktime Pro 7.7.2, and none of the text was visible. I verified with a text track that I know used to work a few months ago, and it also was not visible.
    I rolled back to Quicktime Pro 7.6 for Windows, and re-opened the files, and they worked again. Has anyone else encountered this issue? I know the 7.7.2 update involved a security patch to the way text tracks were handled.
    Thanks.

    I love computers.
    Have managed to fix this already. Been working the issue for a few days now, and a few minutes after writing the above post I decided to reset the Time Capsule to factory default settings.
    After entering all my details again (used same network names, passwords etc) the Time Capsule was rebooted. When it came back on line - guess what? Yep, the MyBook WD drive is now visibile. I can connect via the network from my other machines to the drive, and iTunes is back.
    So - thought I would post my resolution in case it helps others.

  • UTF-8 problem on Mac OS X

    Hello,
    We have a 1.4.1 Java app on Mac OS X.
    This app writes out a text file, encoded using UTF-8, to a Windows folder. The following code is used:
    FileOutputStream fout = new FileOutputStream(<windows path>, false);
    OutputStreamWriter osw = new OutputStreamWriter(fout, "UTF-8");
    osw.write(str, 0, str.length());
    osw.flush();
    fout.flush();
    fout.close();
    Windows app tries to read that file as UTF-8 and is having a problem doing that. When you pull it up in Notepad - it's wrong.
    When we run the same Java app on Windows and write out a UTF-8 encoded file - other Windows apps understand it.
    This only happens when the encoded characters are not in the ASCII range. Therefore accented French characters, Japanese characters, etc. are all wrong.
    It seems to be an OS X Java implementation that "decomposes" accented characters as apparently required by the HFS file system.
    Has anyone else run into this?
    What would be a work around - or are we doing something wrong here?
    Thanks, any help will be greatly appreciated!!!
    Dave Raskin

    The main problem here seems to be that you are writing a text file. Text files do not contain meta-data and therefore applications like notepad can not tell what encoding was used to write the file and will assume a default encoding.
    Depending on what you are trying to do you could either change the encoding you use to write the text file to match the default encoding used on your target system or use a file format that contains meta-data like rtf, html, pdf, or doc.
    Thomas

  • Unicode support for QT text tracks?

    Does Quicktime NOT support unicode text? Is it not possible to create a text track with Chinese, Korean or other subtitles? I have a unicode file, but the text gets garbled when I try to open it in QT Pro. I have tried the language descriptor {language:23}, but no luck, and putting {textencoding:256} does not help either. That is for UTF-16, but it does not display correctly. There does not seem to be a descriptor for UTF-8. I tried {textencoding:64} but no luck either.

    hi,
    Use atinav.com driver. I hope it will solve ur problem......
    regards,
    Shaan

  • Sharepoint error - Search Issue - The content type text/html; charset=utf-8 of the response message does not match the content type of the binding (application/soap+msbin1).

    i see this error everywhere - In ULS logs, on site. On the site > Site settings > search keywords; I see this - 
    The content type text/html; charset=utf-8 of the response message does not match the content type of the binding (application/soap+msbin1). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 1024 bytes of the response were: '<!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"> <head> <title>IIS 7.0 Detailed Error - 500.19 - Internal Server Error</title> <style type="text/css"> <!-- body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;background:#CBE1EF;} code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;} .config_source code{font-size:.8em;color:#000000;} pre{margin:0;font-size:1.4em;word-wrap:break-word;} ul,ol{margin:10px 0 10px 40px;} ul.first,ol.first{margin-top:5px;} fieldset{padding:0 15px 10px 15px;} .summary-container fieldset{padding-bottom:5px;margin-top:4px;} legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;} legend{color:#333333;padding:4px 15px 4px 10px;margin:4px 0 8px -12px;_margin-top:0px; border-top:1px solid #EDEDED;border-left:1px solid #EDEDED;border-right:1px solid #969696; border-bottom:1px solid #969696;background:#E7ECF0;font-weight:bold;'.
    I am facing issues in searching, my managed metadata service is not running, search results page throws internal error. Any Idea why this above error comes.
    P.S: We use windows authentication in our environment.

    Hi IMSunny,
    It seems you have solved this issue based on your another post.
    http://social.technet.microsoft.com/Forums/en-US/aa468ab0-1242-4ba8-97ea-1a3eb0c525c0/search-results-page-throws-internal-server-error?forum=sharepointgeneralprevious
    Thanks
    Daniel Yang
    TechNet Community Support

  • Text Track font is missing on one computer, but not on another

    I brought in a text track into my QT movie, then saved the whole thing as "self-contained". The font that I set for the text track (with QT descriptor) is Verdana. The problem is that on one computer, the text shows up fine, yet on another laptop, the text shows up as a bunch of boxes instead of characters.
    I know that laptop has Verdana as a font on the system, so I am not sure what's going on.
    has anyone had that problem before?
    Thanks!

    I use a lot of text tracks in my "movies". Since mine are made on a Mac I also use Mac "specific" fonts for some of them. When viewed on a PC the Mac only font always defaults to an appropriate substitute and no one is the wiser.
    If there is an issue with a PC only font it should also revert to a similar substitute.
    Other issues could be a corrupt font or even duplicates or a conflict.
    You may want to experiment a bit with some text track QT files.
    Create your plain text (.txt) file and import into QuickTime.
    Export it (with text descriptors) back to a text file so you can edit the font. Make a few versions and test the file onvarious computers (Mac and PC).
    More info:
    http://www.apple.com/quicktime/tutorials/textdescriptors.html

  • Unsupported Content-Type: text/html;charset=utf-8 Supported ones are: [text

    Hi I am in trouble with JAX-WS 2.1.2M1
    I try to call my Webservice like this:
    Service service = Service.create(serviceName);
            service.addPort(portName, SOAPBinding.SOAP11HTTP_BINDING, "http://spblue.liberty:8084/SPBlue/GlobalLogoutService");
    Dispatch<SOAPMessage> disp = service.createDispatch(portName, SOAPMessage.class, Service.Mode.MESSAGE);
            SOAPMessage message = XmlUtil.getSOAPMessageFromString(request);
            SOAPMessage response = disp.invoke(message);when my disp invokes I get following Exception which seems to as a little Problem, anyway I don�t know how to get rid of this Exception.
    com.sun.xml.ws.server.UnsupportedMediaException: Unsupported Content-Type: text/html;charset=utf-8 Supported ones are: [text/xml]
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:116)
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:280)
    at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:158)
    at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:74)
    at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:559)
    at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:518)
    at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:503)
    at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:400)
    at com.sun.xml.ws.client.Stub.process(Stub.java:234)
    at com.sun.xml.ws.client.dispatch.DispatchImpl.doInvoke(DispatchImpl.java:166)
    at com.sun.xml.ws.client.dispatch.DispatchImpl.invoke(DispatchImpl.java:192)
    at test.service.Logout.requestLogout(Logout.java:115)
    at test.service.Logout.main(Logout.java:149)
    ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2
    JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:820]
    my ServiceClass is:
    @ServiceMode(value=Service.Mode.MESSAGE)
    @WebServiceProvider( targetNamespace="http://spblue.liberty:8084/wsdl/globalLogout")
    public class GlobalLogoutServiceImpl implements Provider<SOAPMessage> {
         * Web service operation
        public SOAPMessage invoke( SOAPMessage logoutRequest ){
            return logoutRequest;
    }So how can I set the Charachter set before invokikng the service.
    Or how can I change the Service to accept UTF-8.
    Well, I don�t know.
    Any help is welcome.

    Hi,
    I don't know if this can help you, but I had a similar problem while invoking a web service. Eventually, I found out that the server was returning an html error page, and not the expected xml answer.
    That's why the client code raises such an error... It means that the MIME type of the anser is text/html (for the html page) and not the text/xml type of the 'nominal' web service answer.
    You can verify this by using a proxy to intercept the http request and answer involved in this web service invocation (use Fiddler for instance). Then, you will see that the server responds by sending an html page saying that something is wrong.
    Hope this helps...
    Sam

  • Text Layout Framework columncount Undo problem

    Text Layout Framework columncount Undo problem ::
        The number of times columncount is changed it gets applied to textflow
    and those number of operation is stored in undoStack(UndoManger).But when i
    undo it, it comes back to intial state, without undoin step by step.
    I have given my source code..
    Y so or any other alternative to achieve this..
    Thanx in advance..  
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="init()">
        <fx:Script>
            <![CDATA[
                import flashx.textLayout.container.ContainerController;
                import flashx.textLayout.conversion.ITextImporter;
                import flashx.textLayout.conversion.TextConverter;
                import flashx.textLayout.edit.EditManager;
                import flashx.textLayout.edit.IEditManager;
                import flashx.textLayout.edit.ISelectionManager;
                import flashx.textLayout.edit.SelectionState;
                import flashx.textLayout.elements.InlineGraphicElement;
                import flashx.textLayout.elements.ParagraphElement;
                import flashx.textLayout.elements.TextFlow;
                import flashx.textLayout.events.SelectionEvent;
                import flashx.textLayout.events.StatusChangeEvent;
                import flashx.textLayout.formats.Direction;
                import flashx.textLayout.formats.TextLayoutFormat;
                import flashx.undo.UndoManager;
                import mx.collections.ArrayCollection;
                import mx.controls.Alert;
                import mx.controls.CheckBox;
                import mx.events.FlexEvent;
                import mx.events.SliderEvent;
                import spark.components.Group;
                import spark.components.TextArea;
                import spark.core.SpriteVisualElement;
                public var directions:ArrayCollection = new
    ArrayCollection(
                        {label:"Left-to-Right",
    data:Direction.LTR},
                        {label:"Right-to-Left",
    data:Direction.RTL}
                private var _textContainer:SpriteVisualElement = null;
                private static const textInput:XML = <TextFlow
    xmlns="http://ns.adobe.com/textLayout/2008">
                    <div>
                        <p><span>The Text Layout Framework is
    an extensible library, built on the new text engine in Adobe Flash Player 10,
    which delivers advanced, easy-to-integrate typographic and text layout features
    for rich, sophisticated and innovative typography on the web.
                    Some benefits provided by this framework
    include: 1) rich typographical controls, including kerning, ligatures,
    typographic case, digit case, digit width and discretionary hyphens
                    2) cut, copy, paste, undo and standard keyboard
    and mouse gestures for editing 3) selection, editing and flowing text across
    multiple columns and linked containers
                    4) bidirectional text, vertical text and over
    30 writing scripts including Arabic, Hebrew, Chinese, Japanese, Korean, Thai,
    Lao, Vietnamese, and others
                    5) vertical text, Tate-Chu-Yoko (horizontal
    within vertical text) and justifier for East Asian typography. Try editing this
    text and playing with the options below! Notice an inline image is also
    included.</span></p>
                    </div>
                    </TextFlow>;
                private var _textFlow:TextFlow;
                private function init():void {
                    _textContainer = new SpriteVisualElement();
                    canvas.addElement(_textContainer);
                    var importer:ITextImporter =
    TextConverter.getImporter(TextConverter.TEXT_LAYOUT_FORMAT);
                    _textFlow = importer.importToFlow(textInput);
                    _textFlow.flowComposer.addController(new
    ContainerController(_textContainer, canvas.width-40, canvas.height));
                    _textFlow.interactionManager = new
    EditManager(new UndoManager());
                    _textFlow.flowComposer.updateAllControllers();
                private function changeNoColumns(event:Event):void {
                    var tlf:TextLayoutFormat = new
    TextLayoutFormat();
                    tlf.columnCount = cols.value;
                    tlf.columnGap = 15;
                    tlf.direction = direction.selectedItem.data;
                    var em:EditManager =
    _textFlow.interactionManager as EditManager;
                    em.selectAll();
                    (_textFlow.interactionManager as
    EditManager).applyFormat(tlf,tlf,tlf);
                    _textFlow.flowComposer.updateAllControllers();
                protected function
    undo_clickHandler(event:MouseEvent):void
                    var em:EditManager =
    _textFlow.interactionManager as EditManager;
                    trace("Can undo " + em.undoManager.canUndo() +
    " can redo " + em.undoManager.canRedo());
                    em.undo();
                protected function
    redo_clickHandler(event:MouseEvent):void
                    var em:EditManager =
    _textFlow.interactionManager as EditManager;
                    trace("Can undo " + em.undoManager.canUndo() +
    " can redo " + em.undoManager.canRedo());
                    em.redo();
            ]]>
        </fx:Script>
        <s:Panel title="Text Layout Framework Sample" width="100%"
    height="100%">
            <s:layout>
                <s:VerticalLayout paddingTop="8" paddingLeft="8"/>
            </s:layout>
            <s:VGroup>
                <s:Group id="canvas" width="600" height="200" />
                <s:HGroup width="100%" verticalAlign="middle">
                    <s:Label text="# Columns:"/>
                    <s:NumericStepper id="cols"  minimum="1"
    maximum="20" snapInterval="1" change="changeNoColumns(event)" />
                    <s:Label text="Text Direction:"/>
                    <s:DropDownList id="direction"
    change="changeTextDirection(event)" dataProvider="{directions}"
    selectedItem="{directions[0]}"/>
                    <s:Button label="Undo"
    click="undo_clickHandler(event)"/>
                    <s:Button label="Redo"
    click="redo_clickHandler(event)"/>
                </s:HGroup>
            </s:VGroup>
        </s:Panel>
    </s:WindowedApplication>

    It cannot be reproduced with TLF 3.0 + SDK 4.5.

  • Administrators unable to write to a text file created by another Administrator on Windows Server 2008.

    Why are Administrators unable to write to a text file created by another Administrator on Windows Server 2008?
     --- The Administrators already have full control so how do I fix this? ---
    Example:  On a Windows Server 2008 (SP1): user A (who belongs to the Administrators group) logs in and creates a directory C:\foo and creates a file readme.txt in the foo directory.  User B (also a member of the Administrators group) logs in and opens C:\foo\readme.txt in notepad. User B types something and tries to save the file. User B cannot save the file…an option to save as some other file name is presented. The security permissions of C:\foo\readme.txt show that Administrators have full control.  
    Work around 1: Explicitly add user B to have full control over the foo directory. The problem is that all the all other Administrators still need to be added (current and future).
    Work around 2: Change the Users security permission to be full control on the foo directory. (this seems dangerous!)
    It is interesting to not that this same procedure is not a problem in Windows Vista. (Any insight about the difference?)
    Sincerely,
    Ian 

    so there is no way to change this without literally shutting down the UAC?
    I have files that  I need to modify all the time, and it is very annoying to have to save as to my desktop modify and then copy and paste the file again.
    I would also rather not give myself permissions to the entire C:\ Drive even specified Folders or documents, etc......
    You can change these settings without bringing down the UAC
    <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:Calibri; mso-bidi-font-family:"Times New Roman";} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} -->
    1.    Click Start, type gpedit.msc and press Enter.
    2.    Expand Computer Configuration -> Windows Settings -> Security Settings -> Local Policies -> Security Options.
    <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:Calibri; mso-bidi-font-family:"Times New Roman";} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} -->
    3.    Double-click “User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode” on the right pane.
    a.    Choose “Elevate without prompting” and click OK.
    b.    Double-Click “User Account Control: Admin Approval Mode for the Built-in Administrator account”, Click Enable, Apply and then OK
    c.     Double-Click “User Account Control: Run all users, including administrators, as standard users”,Click Enable, Apply and then OK
    Then reboot the Server. You should now have the ability to modify any document, etc....

  • How to  get rid of "Content-type: text/html; charset=UTF-8 Set-Cookie..." ?

    Hi
    I have several applications and I am working on making some kind of APEX "SSO".
    An user is authentified in one application. Then he may go to another application. The cookie has the same name from one application to another. The session ID is preserved from one application to another : i use this kind of URL : "f?p=109:1:&SESSION.:"
    I have seen that I need to authentify automatically the user when he swap to another application. For that i have a process in the welcome page that authentify the user, using the :app_user and the password, a PL/SQL after header:
    wwv_flow_custom_auth_std.login(
        P_UNAME       => :APP_USER,
        P_PASSWORD    => :P1_PASSWORD,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => :APP_ID||':1'
        );So far so good. User is authenticated. The problem I face is that this message appears :
    Content-type: text/html; charset=UTF-8 Set-Cookie: TELEGESTION_AUTH=-1; path=/; Location: /pls/apex/f?p=109:1How to get rid of this message ?
    Thank you for your kind help !
    Christian
    PS: My question has not been answered... I hope somebody could help me on this topic.
    Edited by: Christian from France on Mar 4, 2010 2:02 AM

    Hi
    Have you tried using "f?p=109:1:&APP_SESSION.:" instead of "f?p=109:1:&SESSION.:".
    I don't see why you need to reauthenticate if they're in the same workspace?
    Cheers
    Ben

  • Create new text file in UTF-8 format by default

    I'm working a lot with UTF-8 text files and mainly in this format. It's becoming annoying when I have to manually save every text file as UTF-8.  After several trial-and-errors, I've made up a procedure that I've put in a blog. I think I could share
    it here for those who need it.  Hope it helps.
    http://instrumenti-meliora.blogspot.com/2014/04/create-new-text-file-in-utf-8-format-by.html

    You've made a procedure?
    Are you sure you didn't :
    Didn't what?
    https://www.google.com/#q=change+notepad+default+encoding
    Well, I'm not sure what you want me to see, but your search keywords do
    NOT make sense.  You do note change *Notepad* default encoding.  What you can change is a
    TEXT file's default encoding.
    Well, of course, if you have access to Notepad source code and you're able to change it and re-compile again, then you could really say you change Notepad's "default encoding", which I suppose would mean "default encoding every time we save".
    Why wouldn't you just provide a link (or some attribution) to the top result
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/default-utf-8-encoding-for-new-notepad-documents/525f0ae7-121e-4eac-a6c2-cfe6b498712c
    or a link to watch this done on youtube?
    http://www.youtube.com/watch?v=GnL6smxQE9k
    The title of that forum post and Youtube video is a non-sense.  New
    "Notepad" document?  Come on!  That's apparently how a newbie think what it is and it's very likely he has not a clue what it is and what he is doing.  And what if I don't use Notepad to create such file?  If I
    use UltraEdit, then mine should be "UltraEdit" document and that should be different from Notepad document, correct? LOL
    The fact that you're able to find this video would also mean you're thinking like him in that the file is really called Notepad document LOL
    For your information, that's called a text file (or document if you prefer this prettier term).  It's also called plain text file.
    Now, let's see the content of both links:
    First of all, why did they tell people to create a new text file somewhere and then
    COPY it to template folder?  That's really so dumb
    LOL  Isn't it more intelligent to create such file directly INSIDE the folder?
    Secondly, their procedures are not foolproof.  What if the Windows directory is not c:\windows?  They should tell people to open %Systemroot%\ShellNew instead.  I suppose they don't even know how this folder is called because
    nowhere is the term "template folder" ever mentioned.
    Thirdly, what if that folder doesn't work for unknown reason (which might happen in XP)?  Did they give any hint to a "failover" folder?  No, they didn't.  But I do in my procedure.
    Fourthly, they are saying as if the file name has to be "TXTUTF-8.txt", but actually we can call it whatever we like.  But smart people would have figured this out at the end.
    5 (I'd stop saying fifthly and so on LOL) I'm not sure it's necessary (or recommended) to change "fSavePageSettings" & "fSaveWindowPositions" DWORD values for Notepad as "advised" in that answer.
    As a side-note, I don't know what
    http://www.pc1news.com/saving-changes-to-notepad-configuration-1216.html is supposed to give but when I open this, I got some uTorrent warning.  Really seems like some malware webpage which tries to deceive people!
    I actually searched how a (generic) new file is created and started from there.
    So, maybe next time when you want to criticize or discredit somebody else, try to be more expert first? ;)

  • Display UTF-8 problem

    configuration:
    1. HP-UNIX 11
    2. Oracle 8.1.7
    3. Weblogic6 sp1
    Our application needs to support english, big5 chinese and Portuguese
    and I have set NLS_CHARACTERST=UTF8 and NLS_NCHAR_CHARACTERSET = UTF8 in
    oracle
    I have also set NLS_LANG=AMERICAN_AMERICA.UTF8 in shell of start up
    weblogic
    However, u can only read English, Protuguese in jsp file. The Chinese
    character cannot be displayed correctly.
    I have tried to use weblogic5.1 sp9 to retieve data from oracle. The
    charasters displayed correctly.
    Is there any problem about my setting or my code?
    Driver myDriver = (Driver)Class.forName
    ("weblogic.jdbc.oci.Driver").newInstance();
    Properties props = new Properties();
    props.put("weblogic.oci.min_bind_size", "660");
    props.put("weblogic.codeset", "UTF8");
    props.put("user", "oracle");
    props.put("password", "oracle");
    props.put("server", "devdb");
    try{
    Connection conn = myDriver.connect("jdbc:weblogic:oracle", props);
    Statement stmt = conn.createStatement();
    stmt.execute("select * from test");
    ResultSet rs = stmt.getResultSet();
    while (rs.next()) {
    out.println(" loginid = " +rs.getString("loginid"));
    out.println("<br>");

    Do you have the following page directive in the jsp files?
    <%@ page contentType="text/html; charset=utf-8" %>
    "shall" <[email protected]> wrote in message
    news:[email protected]..
    configuration:
    1. HP-UNIX 11
    2. Oracle 8.1.7
    3. Weblogic6 sp1
    Our application needs to support english, big5 chinese and Portuguese
    and I have set NLS_CHARACTERST=UTF8 and NLS_NCHAR_CHARACTERSET = UTF8 in
    oracle
    I have also set NLS_LANG=AMERICAN_AMERICA.UTF8 in shell of start up
    weblogic
    However, u can only read English, Protuguese in jsp file. The Chinese
    character cannot be displayed correctly.
    I have tried to use weblogic5.1 sp9 to retieve data from oracle. The
    charasters displayed correctly.
    Is there any problem about my setting or my code?
    Driver myDriver = (Driver)Class.forName
    ("weblogic.jdbc.oci.Driver").newInstance();
    Properties props = new Properties();
    props.put("weblogic.oci.min_bind_size", "660");
    props.put("weblogic.codeset", "UTF8");
    props.put("user", "oracle");
    props.put("password", "oracle");
    props.put("server", "devdb");
    try{
    Connection conn = myDriver.connect("jdbc:weblogic:oracle", props);
    Statement stmt = conn.createStatement();
    stmt.execute("select * from test");
    ResultSet rs = stmt.getResultSet();
    while (rs.next()) {
    out.println(" loginid = " +rs.getString("loginid"));
    out.println("<br>");

Maybe you are looking for

  • How can I delete multiple files at a time from "Finder"

    I can't possible delete the thousands of junk files that showed up in Finder once I downloaded Maverick.  I can't delete more than one at a time now.  Why won't the highlighting stay in place on more than one file that I want to delete?

  • Matrix style report without aggregation

    Hi, I have this source data. Chassis Blade Server Component C1     B1     S1     COMP1 C2     B2     S2     COMP1 C3     B3     S3     COMP1 C1     B4     S4     COMP2 C3     B6     S5     COMP2 C1     B1     S6     COMP3 C2     B2     S7     COMP3 C

  • AppStore version of Premiere Elements 11 crashes when I open it.

    Bought Premiere Elements 11 Editor on the AppStore on April 29, 2013. It crashed everytime I opened it while it was loading. I deleted it and downloaded it from the Appstore a second time. It still crashes everytime I open it. It crashes while it's l

  • What's "CX_SY_MESSAGE_ILLEGAL _TEXT"

    hi all, i'm trying to do one screen exit in my development client by assinging one enhancement implementation in t-code se38.When i select the EI to continue...its going dump and saying that class "CX_SY_MESSAGE_ILLEGAL _TEXT" was not caught in and p

  • How to sync schema changes?

    Hi everybody, my question is: if I made some changes in application schema on desktop database (e.g. alter table, add constraint or else) how could I sync these changes with mobile schema? I've tried to re-package application with Packaging Wizard an