Issue with Content Repository

Hi Gurus,
We have created a CR A2 with storage type as SAP database and is successfully.
The HTTP server which is being used as SAP database is just the servername, which is taken by default while creation.
In our scenario, I need to mention a fully qualified server name for accessing the same from portal..
Kindly guide how to edit the repository.
Warm Regards
Dona

Hi Juan,
Thanks for the update.
My question is how can i change the default HTTP server and HTTP port that is being taken.
I have created the repository A2 using OAC0.(storage type is "SAP DATABASE")
In CSADMIN, the HTTP server for A2 is just the servername. There is no another option available in the drop down to select.
This HTTP server is being picked by default from somewhere.
My reqt is to edit and provide the fully qualified name.
I hope my reqt is clear to you.
Regards
Dona

Similar Messages

  • 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.

  • Issues with DOC Repository in CCX 9.0.2

    Non-reactive Debugging of Script doesn't work
    Anyone having issues with XML Documents loading in 9.0.2?  Attached is a Holiday Script that worked in 8.5.1SU3..saved properly in CCX 9.0.2 and don't work now..I'll attach to see if someone can Confirm...

    Hi,
    I tried this in my lab.
    While doing a debug through step over step i noticed and found that the value for variable dateList goes to null and hence the debug gives an error.
    Here is the screenshot:
    I did further research and found that this is due to the bug and i should associate this to an application before i can further troubleshoot this.
    Defect link: http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCue59553
    CSCue59553 Bug Details
    UCCX: Unable to non-Reactively debug script with Doc step
    Symptom:
    When using the non-Reactive debugger to step through a Document step, such as "Create XML Document", it fails to execute showing the following error message:
    "Source Document variable "start" has null value"
    Conditions:
    8.5(1) SU3 and 9.0(2).
    Workaround:
    Use Reactive Debugging instead
    I associated the script to the app and the script went smoothly and is working perfectly.
    I also tested by changing todays date in the XML doc to varify if the script goes "true" and it did.
    Hope this helps.
    Regards,
    Chuck
    Please rate helpful posts and identify correct answers.

  • Hello Experts, i have issue with mime repository image with different languages ?

    Good day !
    I was facing the issue with images : we  are creating the images by using CSS tool  to generate a button. that image type is .png , this images we are importing into webdyunpro component as a mime object.
    These images are binided into button image source property. And i am writing the code for calling this button (this is uniq code for all languages).
    But all langaues are working fine for spanish(ES) langage only it was not displaying the image. it is displyind cross mark.
    Naming standard i ma mainintg for mime object name : Export_ES.png.(spanish).
    Please can any one help me on this .
    Regards,
    Venu

    Hi Kiran,
    Thanks for your Promt reply.
    1. i am creating different images for different languages.
      ex : english : Export_EN.png
             Spanish : Export_ES.png
    Code will be : here i am creating attribute and bing that attribute to button image source.
    me ->get_button_img
        EXPORTING
          im_button_id    = 'Export'
          im_button_value = 'IMG_EXPORT'
          im_type         = '.png'
        CHANGING
          ch_context_ele  = lo_el_images.
    'IMG_EXPORT' : attribute name
    method : get_button_img
       DATA: lv_img_name TYPE string,
            lv_lang     TYPE string.
    *        lv_jpg(4)   TYPE c VALUE '.jpg'.
      lv_lang  =  sy-langu .
      CALL FUNCTION 'CONVERSION_EXIT_ISOLA_OUTPUT'
        EXPORTING
          input  = lv_lang
        IMPORTING
          output = lv_lang.
      CONCATENATE im_button_id  '_' lv_lang IM_TYPE INTO lv_img_name.
      CALL METHOD CH_CONTEXT_ELE->set_attribute
        EXPORTING
          value = lv_img_name
          name  = im_button_value.
    here lv_img_name : Export_ES.png.
    But its not working.
    thank you

  • System update configuration issue with local repository related to machine type

    Hi,
     Sorry if the issue has been posted earlier, i tried searching but cudnt find relevant post. Here is my issue:
     My machine is Thinkpad R52. Type as printed on label is: 1858-CLG 
     While adding machine type in update retriever, I added machine type as 1858 (as it doesnt accept 1858CLG). After connecting to the support site, it downloaded all required updates onto a local(shared) repository.
    I installed system update, configured it to pickup update from local (network) repository in the registry.
    Now when I launch system update, it determines my machine type as 1858CLG & it connects to local repository only to display message as "No updates were found for this machine type"
    Though I cud see updates if I directly connect to help center.
    I think the problem is with machine type identification, not sure though.
    Please advice on what I'm doing wrong. Is it with update retriever configuration or system update configuration.
    Thanks much,

    Solution for me was to change status of packages from "Test" to "Active" using Update Retriever.
     Since this is not documented in Best Practices (but is stated in chapter 5 - modify settings) I spent several hours figuring it out..
    -brian

  • Issues with Content Query Web Part List Override

    I have modified a Content Query web part to show all checked out documents across my site collection. I used this property to get the checked out documents:
    <property name="QueryOverride" type="string"><![CDATA[<Where><Geq><FieldRef Name="CheckoutUser" LookupId="TRUE"/><Value Type="int">0</Value></Geq></Where><OrderBy><FieldRef
    Name="CheckoutUser"/></OrderBy>]]></property>
    It fails when trying to view across the site collection and gives this error:
    "There is a problem with the query that this webpart is issuing. Check the configuration of this webpart and try again."
    However, it works for sub-sites.
    Thus, I followed this blog to modify the ListsOverride property: http://geekswithblogs.net/simonh/archive/2013/05/08/increasing-the-number-of-lists-a-content-query-webpart-can.aspx I modified the property to:
    <property name="ListsOverride" type="string"><![CDATA[<Lists Servertemplate="101" MaxListLimit="2000"></Lists>]]></property>
    But now I am getting this response:
    This query has returned no items. To configure the query for this Web Part, open the tool pane.
    Can anyone tell me what the problem is? I cannot find anything in the ULS logs that would indicate a timeout from the SQL server or any other type of error.

    Hi Susan,
    According to your description, my understanding is that there is something wrong when you override content query web part property.
    As you said, the query override works for sub-site, I suggest you check the data in the parent site whether the data is valid.
    Here are some detailed articles for your reference:
    http://rmanimaran.wordpress.com/2010/10/19/getfind-all-checked-out-documents-from-a-document-library-using-caml/
    http://msdn.microsoft.com/en-us/library/office/aa981241(v=office.14).aspx
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Security issue with content areas

    Hi Everyone,
    I was wondering if anyone else has experienced this. If you have, is there a work around? It seems like some of content area security is cached in the database. This is what happened in my two test cases.
    Test case 1:
    - First I created several content areas with subfolders by using the wwwsbr_api.
    - I granted access to just to the content area, and not the subfolders. I did this because when I looked at the content areas created above, the Add Privileges To All Sub-folders was marked.
    - Then when I login as the test user I was able to see the content area, but none of the subfolders. That didn?t surprise me because I was guessing that the radio button to add privileges to the subfolder was only used when the user pressed the Cascade Privileges button.
    - I granted access to the all subfolders on the content areas the test user should be able to access.
    - Then I login again with the test you. I move into the content area that I viewed the first time, and I still can?t see the subfolders. But I could see all the subfolders of the other content areas the test user had access to.
    - I logged in to make sure the group was added to access the subfolders of the content area. The group did have access to the content area and all the subfolders, but the user still could not see the subfolders.
    - The only way the test user was finally able to see the subfolders was for me to go to the content area and pressed the Cascade Privileges with Add Privileges To All Sub-folders marked.
    So it seems like for some reason Oracle is storing the security, and not updating it when it is updated via API for content areas.
    Test case 2:
    - First I created several content areas with subfolders by using the wwwsbr_api.
    - I granted access to just to the content area, and not the subfolders.
    - Then when I login as the test user I was able to see the content area, but none of the subfolders.
    - I alter the test user and give him the privilege to view all content areas.
    - I login again as the test user, and I go to the content area I looked at the first time I logged in, but still couldn?t see any of the subfolders in it. I went to two other content areas, and was able to see all the subfolders.
    - I alter the test user again removing the privilege to view all content areas.
    - I login again as the test user and look at the second and third content area again. I still could see all the subfolders even though the user does not have access to them.
    I have tried clearing cache, history, deleting all temporary files and restarting my computer to make sure that it was not caching issue in the browser.
    Thanks,
    Tom

    Hello Simon,
    do you have access to SAP notes? Here you will find the detailed information when the problem will be solved:
    [Note 1178438|https://service.sap.com/sap/support/notes/1178438]
    Regards, Christiane

  • Issue with content conversion in receuver communication channel

    Hi,
    I am trying to configure receiver communication channel with file adapter and content conversion.
    File structure is simple, as shown below:
    MT_EmployeeDetails
         Employee_rec
              Employee_rec_struct
                   EmpNo
                   EmpName
                   Address
    It should have generated file in the following format:
    1101     xxxx     xxxxx
    1102     xxxx     xxxxx
    1103     xxxx     xxxxx
    But it is generating flat file as shown below:
    1101     1102     1103     1104
    Basically it is populating only first field in the target field. But I could see that the xml file is properly getting
    generated in sxmb_moni.Also, when i tried to generate xml file without FCC, it is creating file properly.
    following are the parameters I am using:
    Employee_rec_struct.fielSeparator     '0x09'
    Employee_rec_struct.endSeparator     'nl'
    pls let me know whetehr i need to add any other parameters in FCC.

    Hi,
    Can u please provide with the exact structure of target... i know u have mentioned it already...
    But the hierarchy and occurence is nt clear..
    Like
    Mt
    ---Employee(1)
    Records(0..unbounded)
    Name(1)
    Age(1)
    So that others here,can easily get vt exactly u want and give the solution....
    If ur structure is like..
    MT_EmployeeDetails
    ---Employee_rec
    Employee_rec_struct(0..unbounded)
    EmpNo
    EmpName
    Address
    Then,
    Use,
    Employee_rec_struct.fieldSeparator '\t'
    end separator is optional... by default its new line characcter.. no need of giving....
    U should be giving the recordStructure as  Employee_rec_struct,*
    If still nt solved do post
    Babu

  • Issue with report repository

    Hi,
    I installed the new peoplesoft FSCM9.0/PT8.49 environment for personal use. My PS_HOME path is D:/PT8.49. my appserver and prcs server name is PSFIN9. I am using the report repository path as D:/psreports when install the webserver and updated the web profile also with the same path.
    In the report node if i enter URI source as SchedulerTransfer/<site name> reports are not posting to report repository. If I remove that entry from report node reports are posting to D:/PSFIN9 folder which is created when reports are posted. But when I click on log files link on process monitor getting the file not found error as it is refering to D:\psreports directory.
    Please help me on this.
    Thanks,
    Kiran

    You might want to have a look at
    https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=611434.1&h=Y
    https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=621763.1&h=Y
    psreport URL ?
    Thanks
    Edited by: !Xoble on Mar 20, 2009 11:23 AM

  • Issues with 'Content Organizer Rules' of SharePoint 2010

    Hi Everyone,
    Hope all's going well. I have configured Content Organizer Rules for my SharePoint application. It's configured properly and its routing documents to the desired folder in other libraries of the site.
    I want these rules to be applied to a particular library, however they get applied to all libraries in the site collection.
    Is there any way to restrict 'Content Organizer Rules' not to be applied on some specific library.
    Thanks in advance,
    Waseem Khan

    Hi,
    We can create a New Rule in Content Organizer Rules, then set the particular library in
    Target Location.
    More information:
    http://community.bamboosolutions.com/blogs/sharepoint-2010/archive/2010/11/03/sharepoint-2010-cookbook-content-organizer-for-document-library.aspx
    http://blog.scosby.com/post/2011/03/16/SharePoint-2010-Content-Organizer-Client-Object-Model.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Trouble with Content Server connection

    I am having an issue with content server on Unix.  I'm finished with content server install and need to connect my ABAP system to it via CSADMIN. But when I first enter CSAdmin, I give it my host and port. What is the unix http script name for the default install???  Only the Windows name - ContentServer.dll - is populated? What is the web address to get to the content server?
    http://<host>:<port>/???????
    Do I need to do something with OAC0 and SICF first, before going to CSADMIN.  The guide does not mention anything?
    Thanks for your replies!
    Jeff

    Hi. I dont know obout CS on UNIX, on windows  CS uses port 1090 and HTTP script ContentServer/ContentServer.dll
    The web page is
    http://server:1090/ContentServer/ContentServer.dll?serverInfo.
    It's on Windows....
    Also read this Note 586895. -->
          New access paths and compatibility with Windows systems
                  The "/ContentServer/ContentServer. dll" and "/Cache/CSProxyCache.dll" paths have since been established as fixed default values for the Content Server/Cache Servers for Windows.
                  The module access in the Apache Web server is not restricted to actual paths for program files. Using <location> tags, you can determine any (sub)paths that are to be used to access a module. These tags are entered in the "httpd.conf" file within the relevant module configurations. You can also define the clients allowed to access this "location" within a <location> tag with an Allow/Deny clause.
                  To be able to continue using the Windows paths proposed in the SAP system, these Windows paths are installed as compatibility tags.
                  In addition to this, you can use the new, essentially shorter paths "/sapcs" and /sapcsc" to access the SAP Content Server and the SAP Cache Server.
                  The "Modifications to httpd. conf" attachment to the installation manual contains a list of all of the access paths delivered.
    Regards.. Award if helpful.
    Edited by: Sergo Beradze on Mar 11, 2008 4:37 PM

  • SAPDB password in content repository

    Hello,
    I 'm in the process of configuring the repository with content server.
    Two of the parameters with content repository are SAPDBUser and SAPDBPassword.
    Before finishing to configure this we have used the report RSCMSPWS to set the technical user password settings used for connection.
    After launching this report with definning the DBuser = SAPCS and Password = SAPCS
    Two parameters have been aded on the parameters of the repository:
    -1- SAPDBUser
    -2- SAPDBPassword
    with SAPCS as user and another different password as SAPCS defining in MAXDB
    Knowing that the 2 passwords must be the same, what must be done to resolve this.
    Best Regards.
    Zied.

    What are you using to show the message i18n or JSTL? i18n tag libraries have a timed technique of reload. ResourceBundles cant be reloaded (directly). search for a snippet on the web which shows how to reload ResourceBundles.
    should we add the resource bundle files(.properties files) to content repository?So long as you have a way to push the files to all managed servers , store it wherever you want.
    While this is an idealistic scenario of business can update all content consider what happens when a business user changes the key by mistake, makes a formatting error etc that can potentially break your page.

  • Docx file upload to content repository on MS Sharepoint

    I have installed Primavera P6 EPPM version 8.2 in use with content repository on MS Sharepoint 2010 SP1.
    When I an trying to upload files with extensions "docx", "xlsx" ... system message "uknown error, please contact
    your System Administrator" pop ups.
    Plus to it, all uploaded documents dissapears from list in "Projects" menu "Documents" . In "Dashbords" portlet
    I can see all earlier uploaded documents.
    May be somebody had similar problems and found solution for it? Advice would be very valuable.
    Juozas

    I'm not sure about that code for the file upload part. You should really go find the File upload stuff from Jakarta Commons or UploadBean from whoever wrote it. That will handle the file upload. The database part, there are tutorials in Java's site ... try searching for "store image database"

  • Captivate 7 - Bookmarking issues with Cornerstone LMS on IPAD

    Hello,
    I am looking for some assistance with Captivate 7 (currently using version 7.0.0.118) with the Cornerstone LMS and bookmarking when using an IPAD.  We have no issues with content launching, bookmarking, and sending completions on Windows based opeating systems, but on IPAD's, with the latest version of the IPAD OS and Safari, we have no issues with launching the content and it will send back a completion, but the content will not bookmark.
    Cornerstone is stating that the Safari browser on the iPad is not properly implementing the onbeforeunload trigger, which is primarily used in courses to force a save of the course data. This event is not triggered within the iPad version of Safari, preventing courses from saving themselves when the course is closed.  We currently have our customers closing the web browser in order to exit the course on the IPAD.  We are not experiencing this issue with the HTML5 courses that were exported with Captivate 6.
    Thank you,
    Karl

    Clare,
    If you want a continuous movie (since it is simply a demo) you can use the HD Video Demo. But editing and synchronizing will be much more a pain.
    Captivate's power is just in the creation of those static slides, but I would never record narration at the same time. I create the VO after having created the simulation, that is much easier just because the slides are static. I have been choosing Captivate just for that reason, but of course it is up to you. Want to have just demo: use HD Video Demo or choose Camtasia. But you'll never have the interactivity power that has Captivate. For trainees and students, interactive simulations are much more engaging, but that is your choice. And even a 200 slides movie has only 6000 frames, and will have a much smaller filesize than a video that explains the same.
    Lilybiri

  • Trouble with Content Security Policy (CSP)

    In the latest Firefox 33 there seem to be an issue with Content Security Policy (CSP) and how it handles url that are url encoded.
    For instance when some CSP directive is set to like https://mywebsite.com/application/do;jsessiond=1234 - it will get URL encoded so the ; gets replaced by %3B.
    In Firefox 32 and earlier this worked, but not in this new solution.

    It may be that it needs a header application/x-www-form-urlencoded is this included in your url request as well as charset UTF-8?
    If you select a different encoding via web dev [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI]
    This sounds like what it did before? [http://www.justarrangingbits.org/firefox-magic-decoding-address-bar/index.html]

Maybe you are looking for

  • How do I find itunes for 64 bit windows?

    Where do I find itunes 10 64 bit for windows?

  • Sap r/3 transactions

    Hi ,     How can we acess  SAP R/3 transactions and BW reports so that they can be placed in an iviews in portal development.

  • D/A Converter Advice

    Can anyone give advice as to choosing a D/A converter? I am going to be importing 40+ Hi8 tapes into FCE. I currently own a 'Dazzle' converter that is several years old and drops the signal often. I have used a Sony Digital 8 that has a built in conv

  • HT4628 How do I get my mac to always show the join a network window with unsaved networks?

    Everytime I want to join a wifi hotspot or network where you have to sign in or buy a certain amount of network allowance, the 'Join a Network' window that used to pop up over the browser doesn't appear anymore, or if it does its so brief that I can'

  • Procurement confirmation

    Hello, Customer has upgraded from 2007 to 8.81 and has a complaint that the process to auto-generate a purchase order from a sales order is longer (more steps) than in version 2007. In version 2007, you tick 'purchase order' on the logistics tab of t