Encoding for content in KM

Hi All,
I'm modifying and updating an existing file in KM. I use DOM to parse the file and update it as follows:
Element rootElem = doc.getDocumentElement();
<code to update rootElement>
Finally, I want to convert the Document or rootElement to IContent and update it in the repository. I use the following code:
IContent newContent = (IContent)MimeUtils.getContentFromString(rootElem.toString(),"text/xml");
IContent newFile = new Content(newContent.getInputStream(),"text/xml",newContent.getContentLength(),"ISO-8859-1",null);
resource.updateContent(newFile);
The file is updated with the above code, however the encoding "ISO-8859-1" does not seem to be set. There are spanish characters in the file and upon opening the updated xm file in the browser, I get "Invalid character" errors for the spanish characters..
Is there an alternative method to set the encoding for the created "Content" object? Appreciate any pointers on this. Thanks!
~Prachi

resolved by creating content from the string "<?xml version="1.0" encoding="ISO-8859-1"?>" + rootElement.toString()

Similar Messages

  • How to change the Content-Transfer-Encoding for the fmddataa.fmd from base

    Dear all,
       When I using this SO_DOCUMENT_REPOSITORY_MANAGERto send email,I find the fmddata.fmd  file have been changed  to binary file attachment. I don't hope so.any one have good idea to avoid this case occur?
      Can you tell me how to change the Content-Transfer-Encoding for the fmddata.fmd from base64 to quoted-printable.  The quoted-printable is the Content-Transfer-Encoding for text file with extension .txt
    Best Regards,
    Merry

    Thank you

  • Content-Transfer-Encoding for mail from Portal

    Hi,
    I work on Portal 7.0 SP 12.
    Do You know how to change encoding (Content-Transfer-Encoding) for mails send from portal by users (ex. from Collaboration Launch Pad) ?
    Regards,
    Jarek

    Thank you

  • I need import dvd content to compressor or FCP to re encode for web

    I need import dvd content to compressor or FCP to re encode for web
    Is there a short cut?
    When I tried, only the video went as the audio seems to be embedded. How can I encode a DVD to and Mpeg4 file with the audio?
    Thank you all in advance.

    Google MPEG Streamclip. It's free and works! This questions gets asked a lot. Take advantage of search when you can.

  • Data control issue for content repository when running apps in webcenter .

    Hi All ,
    I have created content repository connection in my local jdeveloper and
    exposed it as a data control .
    from data control i am displaying some path and name based on some search criteria .
    Whenever i am runnig this application i am getting following exceptions and no datas are displayed .
    Since i have define connection for content server locally on my jdeveloper do i need to create some jndi
    on server side .
    TestContentServer is the content repository connection i have created in jdeveloper .
    if yes tell me how can i do it and how it will port to my data control .
    [2010-10-05T09:34:39.245-07:00] [wc_custom] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: 0000IhxFdvi4ulWpTwp2ic1CemrZ0000fT,0:1] [WEBSERVICE_PORT.name: WSRP_v2_Markup_Service] [APP: application1] [J2EE_MODULE.name: TestContentService-ViewController-context-root] [WEBSERVICE.name: WSRP_v2_Service] [J2EE_APP.name: application1] ADF: Adding the following JSF error message: TestContentServer[[
    javax.naming.NameNotFoundException: TestContentServer; remaining name 'TestContentServer'
    Thanks,
    Arun

    Hi Yanic ,
    1. code for my jspx page
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:inputText value="#{bindings.path.inputValue}" simple="true"
    required="#{bindings.path.hints.mandatory}"
    columns="#{bindings.path.hints.displayWidth}"
    maximumLength="#{bindings.path.hints.precision}"
    shortDesc="#{bindings.path.hints.tooltip}" id="it1">
    <f:validator binding="#{bindings.path.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.type.inputValue}" simple="true"
    required="#{bindings.type.hints.mandatory}"
    columns="#{bindings.type.hints.displayWidth}"
    maximumLength="#{bindings.type.hints.precision}"
    shortDesc="#{bindings.type.hints.tooltip}" id="it2">
    <f:validator binding="#{bindings.type.validator}"/>
    </af:inputText>
    <af:commandButton actionListener="#{bindings.getItems.execute}"
    text="getItems"
    disabled="#{!bindings.getItems.enabled}" id="cb1"
    partialSubmit="true"/>
    <af:table value="#{bindings.Items.collectionModel}" var="row"
    rows="#{bindings.Items.rangeSize}"
    emptyText="#{bindings.Items.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.Items.rangeSize}"
    rowBandingInterval="0" id="t1" partialTriggers="::cb1">
    <af:column sortProperty="name" sortable="false"
    headerText="#{bindings.Items.hints.name.label}" id="c2">
    <af:inputText value="#{row.bindings.name.inputValue}"
    label="#{bindings.Items.hints.name.label}"
    required="#{bindings.Items.hints.name.mandatory}"
    columns="#{bindings.Items.hints.name.displayWidth}"
    maximumLength="#{bindings.Items.hints.name.precision}"
    shortDesc="#{bindings.Items.hints.name.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.name.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="path" sortable="false"
    headerText="#{bindings.Items.hints.path.label}" id="c3">
    <af:inputText value="#{row.bindings.path.inputValue}"
    label="#{bindings.Items.hints.path.label}"
    required="#{bindings.Items.hints.path.mandatory}"
    columns="#{bindings.Items.hints.path.displayWidth}"
    maximumLength="#{bindings.Items.hints.path.precision}"
    shortDesc="#{bindings.Items.hints.path.tooltip}"
    id="it8">
    <f:validator binding="#{row.bindings.path.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="URI" sortable="false"
    headerText="#{bindings.Items.hints.URI.label}" id="c5">
    <af:inputText value="#{row.bindings.URI.inputValue}"
    label="#{bindings.Items.hints.URI.label}"
    required="#{bindings.Items.hints.URI.mandatory}"
    columns="#{bindings.Items.hints.URI.displayWidth}"
    maximumLength="#{bindings.Items.hints.URI.precision}"
    shortDesc="#{bindings.Items.hints.URI.tooltip}"
    id="it7">
    <f:validator binding="#{row.bindings.URI.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="primaryType" sortable="false"
    headerText="#{bindings.Items.hints.primaryType.label}"
    id="c7">
    <af:inputText value="#{row.bindings.primaryType.inputValue}"
    label="#{bindings.Items.hints.primaryType.label}"
    required="#{bindings.Items.hints.primaryType.mandatory}"
    columns="#{bindings.Items.hints.primaryType.displayWidth}"
    maximumLength="#{bindings.Items.hints.primaryType.precision}"
    shortDesc="#{bindings.Items.hints.primaryType.tooltip}"
    id="it6">
    <f:validator binding="#{row.bindings.primaryType.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="title" sortable="false"
    headerText="#{bindings.Items.hints.title.label}" id="c1">
    <af:inputText value="#{row.bindings.title.inputValue}"
    label="#{bindings.Items.hints.title.label}"
    required="#{bindings.Items.hints.title.mandatory}"
    columns="#{bindings.Items.hints.title.displayWidth}"
    maximumLength="#{bindings.Items.hints.title.precision}"
    shortDesc="#{bindings.Items.hints.title.tooltip}"
    id="it9">
    <f:validator binding="#{row.bindings.title.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="docType" sortable="false"
    headerText="#{bindings.Items.hints.docType.label}" id="c6">
    <af:inputText value="#{row.bindings.docType.inputValue}"
    label="#{bindings.Items.hints.docType.label}"
    required="#{bindings.Items.hints.docType.mandatory}"
    columns="#{bindings.Items.hints.docType.displayWidth}"
    maximumLength="#{bindings.Items.hints.docType.precision}"
    shortDesc="#{bindings.Items.hints.docType.tooltip}"
    id="it5">
    <f:validator binding="#{row.bindings.docType.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="displayName" sortable="false"
    headerText="#{bindings.Items.hints.displayName.label}"
    id="c4">
    <af:inputText value="#{row.bindings.displayName.inputValue}"
    label="#{bindings.Items.hints.displayName.label}"
    required="#{bindings.Items.hints.displayName.mandatory}"
    columns="#{bindings.Items.hints.displayName.displayWidth}"
    maximumLength="#{bindings.Items.hints.displayName.precision}"
    shortDesc="#{bindings.Items.hints.displayName.tooltip}"
    id="it4">
    <f:validator binding="#{row.bindings.displayName.validator}"/>
    </af:inputText>
    </af:column>
    </af:table>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    2. code for binding .
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="11.1.1.56.60" id="Test1PageDef"
    Package="com.heiwip.cs.view.pageDefs">
    <parameters/>
    <executables>
    <variableIterator id="variables">
    <variable Type="java.lang.String" Name="getItems_path"
    IsQueriable="false"/>
    <variable Type="java.lang.String" Name="getItems_type"
    IsQueriable="false"/>
    </variableIterator>
    <methodIterator Binds="getItems.result" DataControl="TestDC1" RangeSize="25"
    BeanClass="com.heiwip.cs.view.TestDC1.getItems_return"
    id="getItemsIterator"/>
    </executables>
    <bindings>
    <methodAction id="getItems" RequiresUpdateModel="true" Action="invokeMethod"
    MethodName="getItems" IsViewObjectMethod="false"
    DataControl="TestDC1" InstanceName="TestDC1"
    ReturnName="TestDC1.methodResults.getItems_TestDC1_getItems_result">
    <NamedData NDName="path" NDType="java.lang.String"
    NDValue="${bindings.getItems_path}"/>
    <NamedData NDName="type" NDType="java.lang.String"
    NDValue="${bindings.getItems_type}"/>
    </methodAction>
    <attributeValues IterBinding="variables" id="path">
    <AttrNames>
    <Item Value="getItems_path"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="variables" id="type">
    <AttrNames>
    <Item Value="getItems_type"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="getItemsIterator" id="displayName">
    <AttrNames>
    <Item Value="displayName"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="getItemsIterator" id="name">
    <AttrNames>
    <Item Value="name"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="getItemsIterator" id="path1">
    <AttrNames>
    <Item Value="path"/>
    </AttrNames>
    </attributeValues>
    </bindings>
    </pageDefinition>
    3. Table is displayed with no data .
    whenever i am trying to pass something in search criteria to get the result its
    throwing connection error .
    4. I am using oracle UCM (oracle content server) .
    for this i am using identity propogation .
    Thanks,
    Arun.

  • Why did TB set the char encoding for a reply to charset=UTF-16LE ?

    I got a message from Google AdWords in HTML format and wrote a reply. When I sent it I got a timeout trying to send it. I use AVG antivirus to scan outgoing messages using a "local server" at address 127.0.0.1.
    Note that this was my second reply to such a message from AdWords. The only thing I could see that was different was a longer subject line (ending with three periods or dots) and a longer HTML message to which I was replying.
    I tried many things to fix the problem and I cannot remember them, sorry.
    Finally, I got success after truncating the message and the long subject line. The reply was sent instantly, as usual, instead of timing out.
    But it wasn't really success. When I looked at the sent message, the characters in my reply (only) were in Chinese. Looking at the raw (source) message, I see that the charset was set as follows: Content-Type: text/plain; charset=UTF-16LE; format=flowed .
    This seems like a strange charset; nowhere in my settings do I specify anything other than Western (ISO-8859-1).
    I finally was able to send the message successfully (I think) by using Options > Character Encoding > Western (ISO-8859-1), which seems to force the message to be sent using this standard encoding instead of Little Endian.
    What caused this problem to happen? Is there a TB overflow bug for long subject lines?
    I realize that TB is an old and unsupported product, but it seems to be the only good email client to use with Windows 8, so I'm just hoping someone knows something about this.

    Originally posted by: warren.tang.nospam.com
    Warren Tang wrote:
    > Warren Tang wrote:
    >> Warren Tang wrote:
    >>> Hi everybody,
    >>>
    >>> I've been trying to set the default encoding of new files as UTF-8.
    >>> Here are the two settings I've set:
    >>>
    >>> 1. Windows > Preferences > General > Content Types, set UTF-8 as the
    >>> default encoding for all content types.
    >>> 2. Windows > Preferences > General > Workspaces, set "Text file
    >>> encoding" to "Other : UTF-8".
    >>>
    >>> However when I create a new text file, the encoding is always
    >>> ANSI/ISO-8859-1. What did I missed? Thanks.
    >>>
    >>> Regards,
    >>> Warren
    >>
    >> I've also tried
    >> Project Properties > Resource > Text file encoding = UTF-8
    >> However it doesn't work either.
    >>
    >> The only thing that works is changing the file's encoding property,
    >> but I don't want to change it every time I create a new file.
    >>
    >> Is it a bug?
    >
    > It turns out that there are other places I need to set up for HTML and
    > CSS files:
    >
    > Windows > Preferences > Web > CSS Files > Encoding = UTF-8
    > Windows > Preferences > Web > HTML Files > Encoding = UTF-8
    I'm getting mad... The file (on the disk) is still not encoded in UTF-8
    but ANSI.

  • Specs for content on ATV

    Is there an ideal resolution for content on ATV. I've got a couple of options for resolution and bitrate. What should I make my home movies without making them too big?

    AppleTV supports H.264 codec with a maximum resolution of 720p (1280x720) at 24fps, or MPEG-4 with a maximum resolution of 720x432 at 30fps. Audio sound support is either AAC, MP3, Apple Lossless, AIFF, or WAV. Up to 7.1 digital surround channels can be encoded.
    For most of my older home movies, I have been using Anamorphic 850x480 (from standard-def DVD size of 720x480) with a bitrate of 2000kps (using open-source Handbrake to encode), with AAC+AC3 audio tracks, and they look almost as good as the original, but at about 1/3 the size. I don't have a HD Video camera, so I can't speak for HD sources - I'd probably keep it as close to 720p as I could though.

  • Cross reference markers are deleted for content in text insets

    Cross reference markers are deleted for content text insets. I currently have a chapter that is built from several Import by Reference files. I added an introductory paragraph with cross reference links to heading 2 titles in these text insets. Everything works and saves normally, although the cross reference markers disappear from the chapter when files are checked out a few days later. An extra Heading 2 is also added to the end of the document.
    Steps to reproduce:
    1. Create a chapter composed of several text insets.
    2. Create a list of cross references to headings in these text insets at the beginning of the chapter.
    3. Check in/check out the files from a source control product.
    What went wrong?:
    The cross reference markers are gone, resulting in broken cross references. An empty Heading 2 is also added to the end of the document following the final text inset
    What should have happened?:
    The markers should remain and the heading 2 tag should not be applied to the document.
    Product version:
    Product: FrameMaker
    Version: 7.2
    Platform information:Windows XP
    Hardware: Dell Latitude D620
    OS Version: Windows XP Professional Version 2002, Service Pack 3.
    RAM: 1GB

    Thanks for the information, Van. We did try several techniques including adding the insertion point immediately after the text inset before the normal paragraph tag, but none seemed to consistently work. I will investigate this scenario futher, though, in light of your comments.
    We have managed to determine a workaround for this issue by avoiding a string of text insets. For some reason, using multiple text insets without separating them with normal text causes most of the problems after we add the files to our source control system. The situaton is not ideal, but it does work for the time being anyway.
    Steve

  • Timeout for content

    Hello
    9iAS with Portal 9.0.2 in Sun Solaris
    I am working with Oracle Reports Builder and Oracle Portal.
    I've saved my reports with JSP extension.
    So, I've made some portlets with these reports into PEOPLE_APP db provider.
    Now, when I run my pages with these portlets, some times (most of times) the following error appears instead of the report:
    Timeout for content=[any_number]
    I've already researched in OTN and Metalink forums, I've changed my zone.properties and http.conf files, but it didn't resolve my problem.
    So, what else I need to do in order to solve my problem? Any other ideas?
    Thanks.
    P.S: We've sent lots of questions with no satisfactory response from Oracle.
    We've noticed that Oracle provided extremely poor support.
    Maybe this isn't a good solution. Maybe there isn't a solution, at least in this way.
    Take a look in some fragments of messages, found in OTN and Metalink forums:
    "I've increased the timeout but that doesn't help.
    It's also very strange that after rebooting the server in Portal 3.0.8/ias1.0.2.1 my pages appeared in 10-20 seconds and now in Portal 3.0.9/ias1.0.2.2 it takes two to four minutes. And this slow performance is only while retrieving the page for the first time. The second time I retrieve a page it's there in a few seconds.
    So, I do not think it has anything to do with the provider's timeout...."
    "But maybe it's the Portal-schema itself which causes this problem. I heard someone saying that he missed indexes after a Portal-upgrade --> maybe this is my problem too, although i didn't have any error-messages in the upgrade-logfiles...."
    "Unfortunately we did not yet solve these timeout problems. Oracle is currently studying several logfiles and traces.
    At first we thought that we had the timeout problems only after starting up the server. But now we noticed that the timeouts are repeated after 5 to 7 days. For some reason it looks as if Portal is refreshing the cache at that moment, but we can not find anywhere a refreshperiod of 120 hours or so..."
    "Having wrestled with these Timeout errors for months with no satisfactory response from Oracle, I came across someone's solution yesterday and, for me, it worked immediately. Please keep in mind before doing this that it is in direct opposition to what the new "Troubleshooting Issues in Oracle9iAS Portal Architecture and Performance (3.0.9.8.2)" whitepaper states....."
    "After many many performance problems and timeouts issues which Oracle provided extremely poor support we finally learned that all of our problems where related to the same things - Oracle has not tuned this product before shipping it. Numerous little bugs and coding errors were a small part of the fixes. The real problem is that all the indexes have subscriber id as the first column which is always set to one and is not used in the majority of querys which makes these indexes useless for performance... (http://metalink.oracle.com/metalink/plsql/ml2_gui.startup)"
    "Sr. Oracle how long do I need to wait for real solutions? (http://metalink.oracle.com/metalink/plsql/ml2_gui.startup)"

    You must have registered some provider for your portlets. Go to adminstration screens of portal. Goto edit provider from there and increase the portlet timeout.
    Also change the time out value in your provider.xml for the corresponding JSPs.

  • Carrier Type In DMS for content server

    Dear All,
    Can anyone help me in telling which carrier type i have to define in dc20 for Content server, if any required.
    i have configured content server in Oac0,oact, csadmin, but while saving file on server (check in) it is giving me this error
    Error while checking in and storing:  Message no. 26253 .
    Regards
    Kashif

    This error usually comes beacuse of improper settings maintained in CSADMIN for repository:
    Do few changes in CSADMIN Settings for repository:
    ContentStorage Host : (Enter name instead of IP)
    ContentStorageName : WCC
    Storage : ContentStorage.dll
    Security : 1
    ContRepDescription : (Enter descreption as given in OAC0)
    driver : LiveCache or MaxDB (Whatever you are using)
    Incase of DB, maintain also
    SAPDMSUser :
    SAPDBPassword :
    Please check after making these changes and revert.
    /Tilak

  • Timeout for content after installation

    Hi all!
    Running w2000, 9i DB and 9ias, I finally managed to install the portal. Took a while.
    ( used the step-by-step guide ). But now after the installation, I get the following errors when opening the /pls/portal30 homepage.
    Portal Community Portlet Timed Out
    Error: Timeout for content=15032
    Error: Timeout for content=15032
    Error: Timeout for content=15032
    Error: Timeout for content=15482
    Upon clicking the Login link, I get the following error:
    You cannot login because there is no configuration information stored in the enabler configuration table. (WWC-41439)
    I have tried to change the JServ settings to solve the timeout problem, but it doesn't help.
    my current zone.properties settings are:
    init.timeout=240000
    servlet.page.initArgs=stall=60
    servlet.page.initArgs=requesttime=240
    Have anyone seen this before?
    all help greatly appreciated.
    JServ log output are appended below.
    regards
    Rune Engseth
    [28/05/2002 14:17:37:108 CEST] page/DEBUG: active=34 Starting servlet, millis=1022588257108
    [28/05/2002 14:17:37:108 CEST] page/DEBUG: active=34 Starting Retrieval of Meta-Data time=1022588257108
    [28/05/2002 14:17:37:108 CEST] page/DEBUG: active=34 mTimeOut=10000000 for page
    [28/05/2002 14:17:37:108 CEST] page/DEBUG: active=26 username is null
    [28/05/2002 14:17:37:108 CEST] page/DEBUG: active=26 content-fetcher7 starting on page
    [28/05/2002 14:17:37:199 CEST] page/DEBUG: active=26 Query String=_mode=3
    [28/05/2002 14:17:54:504 CEST] page/DEBUG: active=34 After connecting to Page Meta, millis=17396
    [28/05/2002 14:17:54:754 CEST] page/DEBUG: active=26 content-fetcher7 Finished working on page, size=null, millis=17555, id=null
    [28/05/2002 14:17:54:754 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher7
    [28/05/2002 14:17:54:754 CEST] page/DEBUG: active=34 Finishing servlet, millis=17646
    [28/05/2002 14:17:55:005 CEST] page/DEBUG: active=34 Starting servlet, millis=1022588275005
    [28/05/2002 14:17:55:005 CEST] page/DEBUG: active=34 Starting Retrieval of Meta-Data time=1022588275005
    [28/05/2002 14:17:55:005 CEST] page/DEBUG: active=34 mTimeOut=10000000 for page
    [28/05/2002 14:17:55:005 CEST] page/DEBUG: active=26 username is null
    [28/05/2002 14:17:55:005 CEST] page/DEBUG: active=26 content-fetcher6 starting on page
    [28/05/2002 14:17:55:005 CEST] page/DEBUG: active=26 Query String=_mode=3
    [28/05/2002 14:17:55:095 CEST] page/DEBUG: active=26 Computed character set from response "x-oracle/portal-page; charset=UTF-8" as "UTF-8"
    [28/05/2002 14:17:55:095 CEST] page/DEBUG: active=26 content-fetcher6 Before reading the data stream page, millis=90
    [28/05/2002 14:17:55:105 CEST] page/DEBUG: active=26 content-fetcher6 xxx Characters=3522 page, millis=100
    [28/05/2002 14:17:55:105 CEST] page/DEBUG: active=34 After connecting to Page Meta, millis=100
    [28/05/2002 14:17:55:105 CEST] page/DEBUG: active=34 Processing data 3.0.8
    [28/05/2002 14:17:55:105 CEST] page/DEBUG: active=34 Computed character set from response "x-oracle/portal-page; charset=UTF-8" as "UTF-8"
    [28/05/2002 14:17:55:105 CEST] page/DEBUG: active=34 x-oracle-portal-expires header derives to: Wed, 29 May 2002 21:37:55 GMT
    [28/05/2002 14:17:55:105 CEST] page/DEBUG: active=34 setting up cache output stream subID is 1
    [28/05/2002 14:17:55:185 CEST] page/DEBUG: active=26 content-fetcher6 xxx Characters=5000 page, millis=180
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=26 content-fetcher6 xxx Characters=3924 page, millis=190
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=34 Starting a Page
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=26 content-fetcher6 Finished working on page, size=12446, millis=190, id=null
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher6
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=34 mTimeOut=15000 for 11
    [28/05/2002 14:17:55:195 CEST] page/DEBUG: active=34 Adding portlet to queue 11
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 mTimeOut=15000 for 12
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 Adding portlet to queue 12
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 mTimeOut=15000 for 13
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 Adding portlet to queue 13
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 mTimeOut=15000 for 14
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 Adding portlet to queue 14
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 mTimeOut=15000 for 16
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 Adding portlet to queue 16
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 mTimeOut=15000 for 17
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 Adding portlet to queue 17
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 timeout =15
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 mTimeOut=15000 for 18
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 Adding portlet to queue 18
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=34 http://bekk-RuneE.BEKK.INT:80//pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:17:55:205 CEST] page/DEBUG: active=26 username is PUBLIC
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=26 content-fetcher5 starting on 11
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=26 Query String=_portlet_id=1&_provider_id=807692&_node_id=80769&_reference_path=11_FAVORITES_807692&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=27 username is PUBLIC
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=27 content-fetcher4 starting on 12
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=27 Query String=_portlet_id=2&_provider_id=807696&_node_id=80769&_reference_path=12_COMPORTLET_TECHNEWS_807696&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=28 username is PUBLIC
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=28 content-fetcher3 starting on 13
    [28/05/2002 14:17:55:215 CEST] page/DEBUG: active=28 Query String=_portlet_id=2&_provider_id=807692&_node_id=80769&_reference_path=13_RECENTOBJECTS_807692&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=29 username is PUBLIC
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=29 content-fetcher2 starting on 14
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=29 Query String=_portlet_id=1&_provider_id=807693&_node_id=80769&_reference_path=14_FOREIGNAPPS_807693&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=30 username is PUBLIC
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=30 content-fetcher1 starting on 16
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=30 Query String=_portlet_id=16&_provider_id=807692&_node_id=80769&_reference_path=16_CREATE+PAGES_807692&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=31 username is PUBLIC
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=31 content-fetcher0 starting on 17
    [28/05/2002 14:17:55:225 CEST] page/DEBUG: active=31 Query String=_portlet_id=3&_provider_id=807697&_node_id=80769&_reference_path=17_CREATESITES_807697&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:235 CEST] page/DEBUG: active=32 content-fetcher24Closing cached HTTP connection, host/port changed
    [28/05/2002 14:17:55:235 CEST] page/DEBUG: active=32 username is PUBLIC
    [28/05/2002 14:17:55:235 CEST] page/DEBUG: active=32 content-fetcher24 starting on 18
    [28/05/2002 14:17:55:235 CEST] page/DEBUG: active=32 Query String=_portlet_id=10&_provider_id=807692&_node_id=80769&_reference_path=18_CREATEOBJECTS_807692&_language=us&_mode=1&_back_page_url=null&_page_url=http%3A%2F%2Fbekk-RuneE.BEKK.INT%2Fservlet%2Fpage%3F_pageid%3D1%2C11%26_dad%3Dportal30%26_schema%3DPORTAL30&_has_title_region=1&_has_border=0&_page_type=PORTLETS
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=26 Computed character set from response "text/html; charset=UTF-8" as "UTF-8"
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=26 content-fetcher5 Before reading the data stream 11, millis=591
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=26 content-fetcher5 xxx Characters=1150 11, millis=591
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=26 content-fetcher5 Finished working on 11, size=1150, millis=591, id=null
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher5
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=34 Writing portlet to browser 11
    [28/05/2002 14:17:55:806 CEST] page/DEBUG: active=34 Done Writing 11
    [28/05/2002 14:17:58:269 CEST] page/DEBUG: active=26 Computed character set from response "text/html; charset=UTF-8" as "UTF-8"
    [28/05/2002 14:17:58:269 CEST] page/DEBUG: active=26 content-fetcher24 Before reading the data stream 18, millis=3034
    [28/05/2002 14:17:58:269 CEST] page/DEBUG: active=26 content-fetcher24 xxx Characters=2 18, millis=3034
    [28/05/2002 14:17:58:269 CEST] page/DEBUG: active=26 content-fetcher24 Finished working on 18, size=2, millis=3034, id=null
    [28/05/2002 14:17:58:269 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher24
    [28/05/2002 14:18:10:247 CEST] page/JNI: Exception when trying to connect in 1.
    [28/05/2002 14:18:10:247 CEST] page/DEBUG: active=26 Timeout occurred, label=13 url=http://bekk-RuneE.BEKK.INT/pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:18:10:247 CEST] page/DEBUG: active=26 ContentFetcher InterruptedIOException Caught, Fetcher Timedout name=content-fetcher3
    [28/05/2002 14:18:10:247 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher3
    [28/05/2002 14:18:10:247 CEST] page/JNI: Exception when trying to connect in 1.
    [28/05/2002 14:18:10:247 CEST] page/DEBUG: active=26 Timeout occurred, label=12 url=http://bekk-RuneE.BEKK.INT/pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:18:10:247 CEST] page/DEBUG: active=26 ContentFetcher InterruptedIOException Caught, Fetcher Timedout name=content-fetcher4
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher4
    [28/05/2002 14:18:10:257 CEST] page/JNI: Exception when trying to connect in 1.
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 Timeout occurred, label=16 url=http://bekk-RuneE.BEKK.INT/pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 ContentFetcher InterruptedIOException Caught, Fetcher Timedout name=content-fetcher1
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher1
    [28/05/2002 14:18:10:257 CEST] page/JNI: Exception when trying to connect in 1.
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 Timeout occurred, label=14 url=http://bekk-RuneE.BEKK.INT/pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 ContentFetcher InterruptedIOException Caught, Fetcher Timedout name=content-fetcher2
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher2
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=34 Writing portlet to browser 12
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=34 Done Writing 12
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=34 Writing portlet to browser 13
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=34 Done Writing 13
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=34 Writing portlet to browser 14
    [28/05/2002 14:18:10:257 CEST] page/DEBUG: active=34 Done Writing 14
    [28/05/2002 14:18:10:267 CEST] page/DEBUG: active=34 Writing portlet to browser 16
    [28/05/2002 14:18:10:267 CEST] page/DEBUG: active=34 Done Writing 16
    [28/05/2002 14:18:10:707 CEST] page/JNI: Exception when trying to connect in 1.
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=26 Timeout occurred, label=17 url=http://bekk-RuneE.BEKK.INT/pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=26 ContentFetcher InterruptedIOException Caught, Fetcher Timedout name=content-fetcher0
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=26 ContentFetcher ready=content-fetcher0
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=34 Writing portlet to browser 17
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=34 Done Writing 17
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=34 Writing portlet to browser 18
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=34 Done Writing 18
    [28/05/2002 14:18:10:707 CEST] page/DEBUG: active=34 Finishing servlet, millis=15702

    I've had the same problem. You can solve it by modifying the timeout-period for the provider. Surf to the portal-homepage- administration- edit provider.

  • Best practice for implementing META tags for content items?

    Hello,
    The portal site I'm responsible for managing our content (www.sers.state.pa.us) runs on the following WebCenter products:
    WebCenter Interaction 10.3.0.1
    WebCenter Publisher 6.5
    WebCenter Studio 2.2 MP1
    Content Service 10gR3
    The agency I work for is one of many for the commonwealth of PA, which use this product suite, and I'm encountering some confusion on how to apply META tags to the content items for our site, so we can have effective search results. According to the [W3C site's explanation on META tag standards|http://www.w3schools.com/tags/tag_meta.asp], the tags for description, keywords, etc, should be within the head region of the HTML document. However, with how the WebCenter suite's configuration is set up, the head section of the HTML is closed off by the end of the template code for a common header portlet. I was advised to add fields to our presentation and data entry templates for content, to add these meta fields, however, since they are then placed within the body section of the HTML as a result, these tags fail to have any positive impact on the search results. Instead, many of our content items, when searched for, the description in the search results only shows text that is displayed in the header and left navigation of our template, which come early in the body section of the HTML.
    Please advise as to possible method(s) that would be best to implement usage of META tags so we can get our pages containing content to come up in search results with this relevant data.
    Thanks in advance,
    Brian

    if i remember right the index server will capture meta tags even if they are not in the <head> section. it is not well formed html but I think i remember that we created meta tags down in the body section and the index server still picked them up. you might try this and see if it still works. i believe it worked in 10gR3. Let me know your results.

  • ECM11g: How to enforce HTTPS access for Content server console

    Hi,
    We have a requirement of accessing Content Server console (https://<hostname>:<port>/cs) with https protocol only. If a user sends a http request (http://<hostname>:<port>/cs) it should get converted to https.
    The managed server is running with non SSL port. The request is comming from Apache where we have used the parameter "WLProxySSL" to enforce the https, however its not getting enforced for Content Server URL.
    Any help in this regard is highly appreciated.
    Thanks.

    Sorry, I forgot to say that
    i don't want to use the popup
    window that appears when JWS
    encounter an URL that requires
    basic authentication.
    In fact, I don't want to have to enter
    login/password for updates each time
    I start my application with JWS.

  • The best place for content server

    Hello,
    We need to install content Server . SAP ECC is in Paris .
    The users who will use the content server will be in New-York.
    Is the best place for content server in Paris or in New-York?
    The question could be : Will a document (for ex. a pdf of 100 Mb) to be checked_in the CS be first transferred from frontend to ECC and then from ECC to CS or directly from frontend to content server ?
    Thanks

    Hi Oda,
    If your users are in New-York, then better to have content server there to optimize network traffic and speed. There is something called as distributed content server concept where you can have different storage areas for different geographical locations.
    And as far as i know, whenever files are checked-in, they are directly stored in content server and it will not route through the ECC. Only DIR stored in the ECC will be linked to the file in the content server.
    Hope this helps.
    Regards,
    Ravi

  • Endpoint Protection error: The source folder for content does not exist.

    I have a single SCCM 2012 SP1 CU4 server running on Windows Server 2012.
    I have been using this for a little more than a month for Endpoint Protection and Windows Updates.
    I just recently started seeing that my Endpoint Deployment Package has Failed.  I click on "Content Status" and select the Endpoint package (which again shows Failed).  I click on "View Status" and I get this
    message in the "Error" tab:
    The source folder for content does not exist.
    The Asset Details point to the exact location  that does not exist:
    The source directory "\\<server>\updates\endpoint\6bd81fde-3a3f-4aa9-bf70-ba007891ca68" for package "<package>" does not exist. 
    I didn't change anything related to this, and that directory path (\\server\updates\endpoint) is
    shared and is populated with a lot of other folders. 
    Is this possibly just a bad update file?  Should I manually create that sub-folder that it says is missing?
    Any help would be great!  Thanks!

    Thanks for the quick reply, Torsten.  (I often forget which logs to check for certain things).
    There are six lines (3 errors -- in italics below) in the log around the same time frame.  They read:
    The source directory \\sccm-corp\updates\endpoint\6bd81fde-3a3f-4aa9-bf70-ba007891ca68 doesn't exist or the SMS service cannot access it, Win32 last error = 2    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM  
     5920 (0x1720)
    STATMSG: ID=2306 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SCCM-Corp.pdcarea.lcl SITE=PDC PID=6008 TID=5920 GMTDATE=Tue May 27 16:54:46.962 2014 ISTR0="\\sccm-corp\updates\endpoint\6bd81fde-3a3f-4aa9-bf70-ba007891ca68" ISTR1="PDC00063"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="PDC00063"    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    Failed to take snapshot of one or more contents in package PDC00063    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    CDistributionSrcSQL::UpdateAvailableVersion PackageID=PDC00063, Version=10, Status=2302    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    STATMSG: ID=2302 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SCCM-Corp.pdcarea.lcl SITE=PDC PID=6008 TID=5920 GMTDATE=Tue May 27 16:54:46.990 2014 ISTR0="Endpoint Protection Definition Updates" ISTR1="PDC00063" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="PDC00063"    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    Failed to process package PDC00063 after 33 retries, will retry 67 more times    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:47 AM    5920 (0x1720)

Maybe you are looking for

  • How to change font size of static text displayed on GUI( Dailog based application) using properties

    In Visual studio 2008 i found in properties/ font option between Behavior and Misc to change font. But in 2012 i am unable to get it.

  • Missing response payload in IE

    Hi, System: PI 2004s SP 23 Problem: Integration engine does not receive payload from adapter engine. Scenario: Synchronous scenario proxy -> xi -> soap Description: This is an old scenario that have been working fine for years but after upgrade from

  • Airport Update and New Problems

    Every since I exposed my rock stable mac to the last airport update and system update, I have had some connectivity problems with my airport. I cannot get Back To My Mac to work. I can't print off of my USB connected to the airport. I went into Airpo

  • How can I edit the Find my Mac Application

    I have just added the find my Mac application/ feature for my Mac Book Pro, and there is no name for it

  • Auto batch pick in 201 movement type

    hello all, i want to pick batch automatically when we issue the goods to costcenter 201 movement type. we already have 4 plants in which auto batch determination is already there.when we enter the * in batch field,batch is automatically picked. all t