Dms content repository not running

Hey friends,
While creating content repository i went oac0 gave the clicked in create gave the details selected dms as document area, storage type as 04 http content server. Gave version 0046, port number as 1090, server name and server script as details given by basis. clicked on send certificate. Went to CS admin and saw that server status is running with green light in over view section.
a) But when i come back and click on test connection it says content repository doesnt exists what may be the issue.
b) also in details tab repository status shows only defined should it be running or defined?
regards,
satish

Hello Pradeep,
Again thanks a lot for the help.
Server log trace means are you pointing to running of report to get RFC error by running the report PCMRVC if so then below find the below.
HTTP interface test using function group SCMS_HTTP
23.12.2011 16:35:00
serverInfo:
contRep                   ZTEST1
contRepDescription        client docs storage
serverStatus              running
serverVendor              Copyright SAP AG, All rights reserved 1998, 2001
serverVersion             6400
serverBuild               201
serverTime                110500
serverDate                23.12.2011
serverStatusDescription
pVersion                  0046
contRepStatus             defined
contRepStatusDescription
                                                  ok            8,659
create(1): new doc (frontend)
check_subrc: subrc     2  instead          0
check_subrc: HTTP error: 500 (Internal Server Error)  "ContRep ZTEST1 or Storage entry not defined"
create(1): new doc (frontend)                    error
create(2): new doc (back end)
check_subrc: subrc     1  instead          0
check_subrc: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'  : cmRc=20 thRc=456#Timeout during connection setu p (check that partner exists
create(2): new doc (back end)                    error
delete(1): unknown doc
check_subrc: subrc     2  instead          1
check_subrc: HTTP error: 500 (Internal Server Error)  "Internal error: rc=0, ContRep ZTEST1 or Storage entry not defined "
delete(1): unknown doc                           error
putCert:                                          ok           11,662
         3  errors

Similar Messages

  • How to configure SAP ECC DMS content repository with CRM Services Object

    hi,
    we have SAP Document management system which is currently integrated with SAP R/3 Ecc system .
    with ref. to sap standard functionality i am able to upload the document in DMS content repository through SAP R/3 Ecc System as below.
    step-1 ,T.code:CV01n
    a.     create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    now, in same manner i want to store business documents in SAP ECC R/3 DMS content repository using CRM services trnsaction"CRMD_ORDER". kindly guide me suitably.
    regards,
    sunil

    i am explaining your proble
    a.    create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    after saving open to document in cv02n and track status of doc i.e. AR CR & RE
    if RE status is there the it will repositor at server
    Regards,
    Sanjeev

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

  • Content repository not showing the recently added content in GET_SEARCH_RES

    Hi All,
    I have uploaded some doc on UCM using check_in web service call.
    I see all my content are uploaded successfully but recent uploaded contents are not reflecting on my page .
    Even i set partial trigger but its showing it .
    I printed the content using GET_SEARCH_RESULTS service but still its showing old content .
    If i logged out from current session and logged in again i am able to see those changes .
    Please provide your i/p.
    Thanks,
    Arun.

    Hi KJR,
    I got the following log trace after uploading my document .
    Here i see one thing dReleaseState= N is displayed .
    dID=37
    dProcessingState=Y
    dExtension=jpg
    RenditionId=webViewableFile
    isCheckin=1
    dWebExtension=jpg
    dActionMillis=2271300
    noDocLock=1
    dRevLabel=1
    primaryFile=006232.jpg
    xTrashDeleter=
    isNew=1
    xForceFolderSecurity:isSetDefault=1
    reserveLocation=false
    dAction=Checkin
    dUser=sysadmin
    VaultfilePath=/apps01/oraucm/ucm10g/vault/document/\@pewebcenter/\@pu/\@5926758e-c0fd-433c-9eb6-d2f304e9826a/37.jpg
    xDiscussionCount=0
    xTrashDeleteDate:isSetDefault=1
    xPartitionId=
    xClbraAliasList=
    dReleaseState=N
    Thanks,
    Arun.

  • Content Repository is not in Running status

    Hi everyone,
    We have installed a content server4.6 ,we created a content repository through oac0 t-code . It was working fine till yesterday, i mean the status of the content repository is Running, suddenly today when we saw the status of the content repository its not in Running status, it is showing as data(28%),log(74%).
    All the configurations are fine, we haven't change anything in the configuration.
    Please suggest me with your valuable information.
    Thanks in advance,
    Regards,
    Praveen

    Hi Deepak,
    I couldn't find any start button and STATUS tab,
    FYI:
    CSADMIN screen and OAC0 test connection screenshots are below.

  • DMS Content server copy to Quality

    Hi,
    What needs to be done to copy production content server 6.4/MaxDB 7.6 data environment to quality server.
    We have created repository of the same name as in production to quality server,  and then plan to use note 962019.
    Please let us know the steps to be followed.
    Thanks.
    Anirudh,

    Hi,
    Thanks markus. In Quality we face the problem of accesssing the DMS files using backup, is it required that we should have the same repository name as production DMS content repository and same DMS content category OACT.
    Our OS version and platform are same.
    Anirudh,

  • Error in Test Connection - Content Repository does not exist

    Hi, I have created a content repository which points to our own external HTTP content server which is a DMS through transaction OAC0.
    In transaction CSADMIN I can see our server's status as running, still it shows yellow icon "customizing missing" in CSADMIN and in transaction OAC0 whenver I click "Test Connection" it gives the message" Content Repository does not exist". CMS 106.
    Kindly help.
    Regards
    Neha

    Hi,
    We are using OACO as follows:
    Choose Tools ® Business documents, Environment ® Knowledge Provider® KPro® Content Repositories
    Enter the following fields in the u201CChange Content Repositories : Detailu201D :-
    1) Content Rep. :- ZO (Content Repository Name)
    2) Description :- Content Repository
    3) Storage type :- HTTP content server.
    4) Version no :- 0045
    5) HTTP svr:p :- IP or machine name of application server on which DMS has been deployed : Web port of the application server on which DMS has been deployed.
    1) Program :- sap/sapDocView.jsp
    Save the created Content Repository by clicking on u201CSaveu201D. We are working on SAP 4.7 versionon a SAP development server and the content repository has not been transported after creation. Will not transporting be causing this error ?
    Please reward points
    Thanks
    Vikranth

  • Content repository FD does not exist :user agent sap web application server

    Hi All
    i am using 3rd party software(dms SERVER) and connecting it using archive link interface SAP HTTP 4.5 AL
    i have created a new repository with name FD using tcode OAC0.when i give inputs in OACO and click on test connection it gives me information Content repository FD does not exist
    here is my HTTP trace at receiver content server side
    TRACE:(5) - GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0
    TRACE:(5) - user-agent: SAP Web Application Server (1.0;700)
    TRACE:(5) - host: SERVERIP:PORT
    TRACE:(5) - accept-encoding: gzip
    TRACE:(5) -
    --> C05 --> S06 ==== (15.583) Request <GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0>
    --> C05 --> S06 GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0
    --> C05 --> S06 user-agent: SAP Web Application Server (1.0;700)
    --> C05 --> S06 host: SERVERIP:PORT
    --> C05 --> S06 accept-encoding: gzip
    --> C05 --> S06 ==== Body 0 bytes
    --> C05 --> S06 Body =>
    Sockets 6 of 4,5,6 need checking ####
    TRACE:(6) - HTTP/1.1 200 OK
    TRACE:(6) - Cache-Control: private
    TRACE:(6) - Content-Length: 189
    TRACE:(6) - Content-Type: text/plain; charset=utf-8
    TRACE:(6) - Server: Microsoft-IIS/7.5
    TRACE:(6) - X-AspNet-Version: 2.0.50727
    TRACE:(6) - boundary:
    TRACE:(6) - X-dateC: 2010-10-22
    TRACE:(6) - X-timeC: 07:07:23
    TRACE:(6) - X-dateM: 2010-10-22
    TRACE:(6) - X-timeM: 07:07:23
    TRACE:(6) - X-contentRep: FD
    TRACE:(6) - X-numberComps: 1
    TRACE:(6) - X-docId: 0
    TRACE:(6) - X-docStatus: online
    TRACE:(6) - X-pVersion: 0045
    TRACE:(6) - X-ContentServer: contentServer=Server ip;contentServerPort='9025;pVersion='0045';id='DMSSRV1'
    TRACE:(6) - X-Powered-By: ASP.NET
    TRACE:(6) - Date: Fri, 22 Oct 2010 13:37:23 GMT
    TRACE:(6) - Connection: close
    TRACE:(6) -
    TRACE:(6) - serverType='DMSSRV1';1;serverVersion=12;serverPatch=0;serverBuild=180;pVersion='0045';serverStatus=running;serverStatusDescription=;serverDate='2010-10-22';serverTime='07:07:23';startUpDate='2010-10-22';startUpTime='07:07:23';lastAccessDate='2010-10-22';lastAccessTime='07:07:23';contRep='FD';contRepStatus=defined;contRepStatusDescription=;contRepDescription=Content-Repository Test;contentStorageHost=localhost;contentStorageName=FD;secKeyVerification=y;defaultDocProt=rucd;
    one change which i have observed in this trace is .. this trace is showing trace agent as SAP Web application server ... ideally it should show user agent :SAP HTTP
    Please suggest me some solution.
    Thanks
    sandeep

    Dear all,
    my issue is resolved.I solved my issue myself
    solution: SAP sends HTTP request in the form of URL like
    http://serverip:port/GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0
    Now your response should contain string  contRep="FD"
    dont forget double quotes on repository name coz SAP program matches string with double quotes. if you will return value like this contRep=FD
    this will through error.
    Thanks
    sandeep sharma

  • Test Connection - Content Repository does not exist

    Hi,
    I have created a content repository which points to our own external HTTP content server which is a DMS through transaction OAC0.
    In transaction CSADMIN I can see our server's status as running, still it shows yellow icon "customizing missing" in CSADMIN and in transaction OAC0 whenever I click "Test Connection" it gives the message" Content Repository does not exist". CMS 106.
    Kindly help.
    Regards
    Neha

    Hi,
    We are using OACO as follows:
    Choose Tools ® Business documents, Environment ® Knowledge Provider® KPro® Content Repositories
    Enter the following fields in the u201CChange Content Repositories : Detailu201D :-
    1) Content Rep. :- ZO (Content Repository Name)
    2) Description :- Content Repository
    3) Storage type :- HTTP content server.
    4) Version no :- 0045
    5) HTTP svr:p :- IP or machine name of application server on which DMS has been deployed : Web port of the application server on which DMS has been deployed.
    1) Program :- sap/sapDocView.jsp
    Save the created Content Repository by clicking on u201CSaveu201D. We are working on SAP 4.7 versionon a SAP development server and the content repository has not been transported after creation. Will not transporting be causing this error ?
    Please reward points
    Thanks
    Vikranth

  • Linking DMS to a Content Repository for Recipe Management

    How do I link a document type to a content repository?
    This is for Recipe Management. When I look in DC10 I can see that there is a document type of RMS for Recipe Management.
    I assume this means Recipe Management is connected toDMS
    I have created a content repository ZRM using OAC0.
    How do I make the link between the document type RMS in DMS and the content repository ZRM?

    Thanks for the reply but it isn't really what I was after.
    I am only the basis guy so I am not sure of the application but my expectation is that users will save a document with a document type of RMS. This document should be saved to a Content Repository
    What you have described is how to save a type of document such as MS Word to a particular repository. I was hoping that Recipe Management documents (possibly MS Word, possibly not) would go to a Recipe Management Repository.
    There still might be the possibility that documents (possibly MS Word) for other projects e.g. packaging could be written to a different repository.
    What I am hoping for is a link from the document type RMS in DC10 to the Content Repository defined in OAC0.
    I have a suspicion this is via the category defined by OACT.
    The link from SAP DMS to Content Repository seems fundamental to me. I am surprised no one has the answer
    ...or perhaps I have completely missed the point?
    Tony

  • DMS Link Table for External Content Repository

    Can someone advise in what table is the link to the External Content Repository stored, in SAP's DMS? We are able to save a document using CV01n in documentum, but are unable to determine the table in which the link to the external document id is stored.
    It is NOT in TAO01, which would be the obvious choice. Perhaps TAO01 is only used by ArchiveLink and not by DMS.
    We know that the link is stored in one of the tables in SAP, because we are able to retreive the document.
    Regards,
    Ajay

    Dear Ajay,
    please check if tables DMS_DOC2LOIO, DMS_PHIO2FILE and DMS_PH_CD1 could provide you the necessary data.
    Maybe also FM SDOK_PHIOS_PROPERTIES_GET could be usefull.
    Best regards,
    Christoph

  • Content repository does not exist

    Hi,
    Kindly see the way we are creating the SAP content repository pointing to an external content repository which is our own DMS server. Our server is returning the success status in CSAdmin.  But customizing is being shown as missing.
    When I click on Test Connection, then I get the error CMS 106 content repository does not exist.
    It seems as the content repository created by us is visible in the content repository list, entry is there in TOAAR table too, still somehow SAP system thinks that it doesnt exist. 
    We are working by logging into quality testing client.  Kindly suggest do we need to login into customizing client to solve this problem. And also suggest is transporting necessary to complete the content repository creation.
    Is it related to contentserver.ini file, do we need to see whether there's entry in it.
    Kindly help.
    With Regards
    Neha

    in customizing  of the archiving object is a field where you specify an indicator for the content repository.
    (go SARA -enter archiving object - click customizing button - click technial settings)
    As archiving objects are customized in DEV and transported to PRD systems,  here often an indicator for the DEV content repository is transported to PRD.
    But usually you dont have customizing for the DEV conentent repository in PRD to avoid that you write into the wrong content repository.

  • Content server is not running.

    All,
    I have rather peculiar issue. The external 10.1.3.1 content server is setup against EBS 12.1.3.The content server is running fine and I was able to upload content using it. I fail to upload content all of the sudden until EBS is bounced. Nothing changes on content server side and again it works for day or two and stops and throws "Content server is not running" error. Is there any EBS configuration that can cause this behavior? I do not even see the request being logged in default-web-access-<date>.log on content server that indicates that it is not even reaching content server. It works fine in TEST environment and in PROD it is behaving in this manner. This is a new setup.
    Any pointers are appreciated.
    Thanks,
    Faisal

    The fact that bouncing EBS fixes the issue temporarily indicates that the problem is most likely on the EBS end, but we haven't encountered that specific issue. What OS are you using to host EBS? Are you purging the J2EE cache when you bounce the services?
    Feel free to reach out to Anne or myself if you'd like to dive into this. We could test with an alternate content server to see if that helps isolate the problem.
    Best,
    John Hobart

  • OAM-Files do not run in the Content Viewer for Desktop anymore

    After updating DPS today animations made with Edge Animate (OAM-Files) do not run in the Content Viewer for Desktop anymore!
    What happened there? Any ideas?
    Thanks for help!
    I'm using mac OS 10.8.2 and InDesign CS6 CC

    I have updated Edge Animate today also with all files working & previewing perfectly within Edge. Upon publishing as OAM files for use in inDesign, the Poster loads as per usual, mark Play on Load interactivity on highlighted content holder as usual BUT when testing in Content Viewer file remains as a static poster image - unable to load animated atributes! I thought perhaps it may be a new viewing option so also uploaded page to DPS Acrobat Workspace & tested & the OAM file has not been assigned as inDesign. This is a massive issue! Our Magazine front cover needs its usual animation. Also tested previous files already live and they too do not view correctly in Content Viewer since update, as well are just a poster image!  Adobe need to fix this fast!

  • Init: smb(5) repository server not running

    error message
    init: smb(5) repository server not running
    Hello guys,
    I'm new to Sun OS and would very much appreciate if someone could identify what is the issue here and its possible solution
    Background: I was booting up SunOS 10 on my vmware to carry out some tests and suddenly the electicity tripped and my server crashed (along with the just booting SunOS in vmware)
    After i restored the electricity, i was trying to boot up the SUN OS again, but it just dosent start the GUI! It asks me for the root password and then just sits about! When i try to start the GUI with a init 6 it displays the error message
    Any Help Appreciated

    Guys
    Sorry for being a DODO!
    I've managed to read all the help messages, the helpful Sun OS presented and understood that i could run the command below, which guides me to run further commands and i've managed to resolve the issue! I can see my GUI now! I'm saved!
    /lib/svc/bin/restore/repository
    Thanks for taking the time to read this.

Maybe you are looking for

  • Pan and scanning 4:3 footage which has a 16:9 letter box on it.

    Dear FCP users, I'm cutting some DVD extras and have some 4:3 footage which has a 16:9 letter box on it. How to I go about zooming into the image to make it full screen 16:9? I appreciated there will be a loss of quality. Also, is there a way to batc

  • Web Content overlay crashing! Help?

    Everytime I try to use the Web Content overlay, InDesign CS 5.5 crashes. Working in Mac OS 10.6.8, for what it's worth. I have a local html file that should display an RSS feed. When I try to bring it into my InDesign file with the Web Content overla

  • ICCMP_INBOX/InboxResultView - Link to open document

    Hello, in the view ICCMP_INBOX/InboxResultView there is a link to open the selected document on attribute STRUCT.ITEMTYPE. We need this same Link to open the document on the STRUCT.DESCRIPTION because we will not use STRUCT.ITEMTYPE in our UI configu

  • How to apply this effect in photoshop

    Hi, I am designing a t-shirt and want to use my own image. i have my real photos but i want to use that photo and make a design in photoshop with a text and send to printers to get printed on shirt but printers ask me it should only have 3 colors. pl

  • CC2014 - MTS files not ingesting

    I just tried importing some MTS files (without transcoding), and no dice. The error reported was: Cannot import the file "filename.MTS" These are the same files I've used in a previous Premiere project.  I was able to import an MPEG2 file with no pro