Web content management and using word to contribute

Hello - our users are having issues using word to contirbute and edit content. They contibute something, sometimes in word tables and sometimes not, and it may look fine in word but when it gets converted, it looks differently. Are there any tips/tricks out there that I can share? DC template changes I can make? And thoughts would be great!!

I assume you mean a HTML conversion.
Make sure your people are using Word "styles" and not simply changing the font sizes. You will then need to set up a DC template to render tables & images in specific ways depending on the Word style used. Note that styles can only be paragraph-based. Set as your DC template the default template.

Similar Messages

  • Servlet, Websphere Portal 5.1, Web Content Management and files

    Hi everybody,
    I created some contents in WCM and I need to store some files with them.
    Actually, I have an authoring template, with a text field containing the DocumentId of a LibraryFileComponent.
    Manipulating a content, I'm able to get the DocumentId of the LibraryFileComponent. With this DocumentId, I'm able to get the data (a byte array) and the file name.
    But I'm not able to get an URL to this component or to display the file on the screen (if it's an image for example)
    I tried this kind of thing
    Map parametermap = new HashMap();
    RenderingContext context = workspace.createRenderingContext(request, response, parametermap);
    context.setWcmServletPath("/connect"); // from PortalServer/wcm/config/aptrixjpe.properties - wcm.servlet.path
    context.setWcmWebAppPath("/wps/wcm"); // from PortalServer/wcm/config/aptrixjpe.properties - wcm.context.path
    context.setRenderedContent(myFile);
    System.err.println("ws.generateURL(context, fichier) : "+ws.generateURL(context, myFile));
    System.err.println("ws.render(context) : "+ws.render(context));And I get this :
    for generateURL : a bad URL with "null" in the middle of it
    for render : File Not Found
    I don't manage to get something better.
    So I want to do another way.
    As the real files are hidden, but not their data, when I use the method
    JavaDoc wrote: getFile()
    Returns the contents of the file contained within this component as a byte array.
    I obtain a byte[] containing the data... That's what I want to use.
    Method :
    Open a new navigator window
    put the good headers
    put the data
    That's what the page, which url is obtained by the render method, do. And that's what I want to reproduce
    So I did this
    public class GenereFileOneAction extends Action {
       public ActionForward execute
    (ActionMapping mapping, ActionForm form,HttpServletRequest request,HttpServletResponse response)
    throws Exception {
          String documentIdString=request.getParameter("id");
          Workspace ws=Outils.getWorkspace(request);
          try{
             DocumentId id=ws.createDocumentId(documentIdString);
             if (documentIdString.indexOf("LibraryImageComponent")>-1){
                LibraryImageComponent document=(LibraryImageComponent) ws.getById(id);
                if (document!=null){
                   genereFile(document, response);
             } else if (documentIdString.indexOf("LibraryFileComponent")>-1){
                LibraryFileComponent document=(LibraryFileComponent) ws.getById(id);
                if (document!=null){
                   genereFile(document, response);
          } catch (Throwable t){
             //t.printStackTrace();
          return null;
       public void genereFile(byte[] data, String fileName, HttpServletResponse response){
          System.err.println("genereFile(..., "+fileName+", "+response+")");
          String extension=null;
          String contentType=null;
          if (data!=null && fileName!=null){
             int posPoint=fileName.lastIndexOf('.');
             extension=fileName.substring(posPoint+1).toLowerCase();
             if (extension.equals("asf")) contentType="video/x-ms-asf";
             else if (extension.equals("avi")) contentType="video/avi";
             else if (extension.equals("doc")) contentType="application/msword";
             else if (extension.equals("zip")) contentType="application/zip";
             else if (extension.equals("xls")) contentType="application/vnd.ms-excel";
             else if (extension.equals("gif")) contentType="image/gif";
             else if (extension.equals("jpg")) contentType="image/jpeg";
             else if (extension.equals("jpeg")) contentType="image/jpeg";
             else if (extension.equals("wav")) contentType="audio/wav";
             else if (extension.equals("mp3")) contentType="audio/mpeg3";
             else if (extension.equals("mpg")) contentType="video/mpeg";
             else if (extension.equals("mpeg")) contentType="video/mpeg";
             else if (extension.equals("rtf")) contentType="application/rtf";
             else if (extension.equals("htm")) contentType="text/html";
             else if (extension.equals("html")) contentType="text/html";
             else if (extension.equals("asp")) contentType="text/asp";
             else contentType="application/octet-stream";
             response.reset();        
             response.setContentType(contentType);
             response.setContentLength(data.length);
             OutputStream os;
             try {
                os = response.getOutputStream();
                System.err.print("response="+response+", os = "+os+", data=");
                System.err.println(data+", extension="+extension+", contentType="+contentType);
                if (os!=null){
                   os.write(data);
                   os.flush();
                   os.close();
             } catch (Throwable t) {
                t.printStackTrace();
       public void genereFile(LibraryFileComponent file, HttpServletResponse response){
          System.err.println("genereFile("+file+", "+response+")");
          byte[] data=null;
          String fileName=null;
          if (file!=null){
             try {
                System.err.println("file!=null");
                data = file.getFile();
                fileName=file.getFileName();
                genereFile(data, fileName, response);
             } catch (Throwable t) {
                t.printStackTrace();
       public void genereFile(LibraryImageComponent file, HttpServletResponse response){
          System.err.println("genereFile("+file+", "+response+")");
          byte[] data=null;
          String fileName=null;
          if (file!=null){
             System.err.println("file!=null");
             try {
                data = file.getImage();
                fileName=file.getImageFileName();
                genereFile(data, fileName, response);
             } catch (Throwable t) {
                t.printStackTrace();
       }But the result is not the one I want.
    Here is my log
    genereFile(com.ibm.workplace.wcm.api.WCM_LibraryImageComponent@71373fd7, com.ibm.wps.struts.base.WpsStrutsPortletResponseWrapper@2a9ffd6)
    file!=null
    genereFile(..., 2004-06-24-02.jpg, com.ibm.wps.struts.base.WpsStrutsPortletResponseWrapper@2a9ffd6)
    response=com.ibm.wps.struts.base.WpsStrutsPortletResponseWrapper@2a9ffd6, os = null, data=[B@b26ffd0, extension=jpg, contentType=image/jpeg[/i]
    My questions are :
    - does any one knows why response.getOutputStream (either response.getWriter) returns null
    - when I click on a link to the action, the page on the screen is the last (just where I come from) but the Struts JavaDoc says about the execute methode
    Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic. Return an ActionForward instance describing where and how control should be forwarded, or null if the response has already been completed.
    So do you think I might have a return in my genereFile methods ?
    Thank you

    I did as you suggested and removed the content from the web.xml file. The portlet installed and I was able to put it on a page, but it says the portlet is unavailable inside the portlet window on the portal page and here is the error from the log file
    Module, testjsr168New.war, of application, no id available_PA_1_0_2EA.ear/deployments/no id available_PA_1_0_2EA, failed to start
    [2/3/06 12:52:13:285 EST] 3c881c0e ApplicationMg W WSVR0101W: An error occurred starting, no id available_PA_1_0_2EA
    [2/3/06 12:52:13:293 EST] 3c881c0e ApplicationMg A WSVR0217I: Stopping application: no id available_PA_1_0_2EA
    [2/3/06 12:52:13:468 EST] 3c881c0e ApplicationMg A WSVR0220I: Application stopped: no id available_PA_1_0_2EA
    [2/3/06 12:52:13:479 EST] 3c881c0e TraceNLS u No message text associated with key Unable.to.start:.no.id.available_PA_1_0_2EA.using:.WebSphere:platform=common,cell=cdrrs1,version=5.0,name=ApplicationManager,mbeanIdentifier=ApplicationManager,type=ApplicationManager,node=cdrrs1,process=WebSphere_Portal.exception.is:.javax.management.MBeanException in bundle com.ibm.ws.management.resources.AppDeploymentMessages
    [2/3/06 12:52:13:479 EST] 3c881c0e AppManagement W Unable to start: no id available_PA_1_0_2EA using: WebSphere:platform=common,cell=cdrrs1,version=5.0,name=ApplicationManager,mbeanIdentifier=ApplicationManager,type=ApplicationManager,node=cdrrs1,process=WebSphere_Portal exception is: javax.management.MBeanException

  • LiveCycle Content Sevices ES used as a Web Content manager

    Is it possible or was the product meant to be integrated as a Web Content Management system. I was reading through a powerpoint presentation that was done by Marcel Boucher and it appears that this functionality was removed and not replaced.
    Does LC CM ES have this ability?

    Content Services is still available, the underlying technology was changed to use CRX as the repository.  If you need to store and retreive content that will still work.  If you're looking for a full Web Content Management system then you may also want to look at Adobe Experience Manager.

  • Web content management tools for enterpise portal

    I'm currently trying to research web content management tools for enterprise portal.
    My general requirements are:
    -  Tool should sit on top of the portal/km and not require another landscape infrastructure, in other words we don't need another document management repository, but rather a way an easier interface to KM.
    -  Should be geared towards end-user management of actual content.  In other words IT provides the site framework and the business user handles the rest, with approvals with business unit
    -  Compatible with EP 7.0
    My research so far has turned up two possible solutions:
    - Webpage composer delivered by SAP
    - EasyWCM by btexx
    Are there any other solutions that people are using which might meet these needs or alternative web content management tools that could live with the portal on the same physical hardware environment?  I have searched this forum and ecohub and have not found much besides this thread which is now almost 4 years old:
    https://forums.sdn.sap.com/click.jspa?searchID=24164203&messageID=448870
    Thank you,
    Stephen

    Hi Stephen
    I'm not aware of too many other options than the ones already mentioned here. Also Iu2019m probably not the right person to ask as I have been part of the development team for the KMD product.  So Iu2019m a bit biased on that part.
    You could try to have a look at this presentation where other WCM solutions are mentioned (page 5):
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d07b5354-c058-2a10-a98d-a23f775808a6
    However if you are looking for a WCM solution with no extra landscape infrastructure and low initial setup effort you are (in my opinion) down to 3 options (Web Page Composer, Btexxu2019s or KMDu2019s product). I think all of them can be used for external content. Try to have a look at this web site u2013 made entirely with the web page composer:
    http://www.kmd.dk
    It was no easy task but it can be done.
    Martin

  • How to access / configure Web Content Management in NetWeaver

    Hi,
    I am using SAP EP6.0 and KM is running there. I want to know that how can I access the Web Content Manager of NetWeaver. What configuration is required to access WCM? Any pointer will help me.
    Thanks in advance,
    Manish

    Hi,
    Suppose you have two sites like this: "/sites/SI/SiteA" and “/sites/SI/SiteB”, then you can retrieve the ClientContext object and the List object like this:
    var context = new SP.ClientContext("/SiteA");
    var list = clientContext.get_web().get_lists().getByTitle('ListA');
    Best regards
    Patrick Liang
    TechNet Community Support

  • Oracle Web Services Manager and Stateful Services

    Hi,
    I was wondering if anybody could help or provide guidance on stateful web services and the OWSM.
    I've registered a stateful web service with the OWSM. I also selected the "Keep-Alive" option as well, but this prob. doesn't pertain to stateful web services. But it doesn't seem to register the fact that its a stateful web service. When I call it, I have a packet analyzer that looks at the TCP trace and no Session id is sent back in the headers on the client side, which is on a separate box. Obviously, running it directly with Java and Axis works fine.
    We are using a gateway for the OWSM, not an agent. The web service is successful in getting called through OWSM but the problem is that no session information is sent back to client so subsequent calls fail b/c the web service requires the state and what the previous call was. This web service is a .NET service and resides on a different server/box than the Oracle SOA suite.
    Are there any tutorials/information out there that would tell me how to register a stateful web service with the OWSM? Eventually we'd like to connect the OWSM to an ESB and that would require it to be stateful as well obviously.
    Thanks again,
    Nathan

    On OTN, documentation library. Search for Oracle Web Service Manager and there you will see the Extensibility Guide.
    http://www.oracle.com/pls/as10131/drilldown?word=Oracle+Web+Services+Manager&wildcards=0&remark=federated_search

  • What is Oracle Web Services Manager  and where can i get more information ?

    Hi,
    Can any one point me to some useful links to know abt
    Oracle Web Services Manager and some example to play with it.
    Appreciate your help !!
    Regards,
    Vijay.B

    Vijay,
    You can install Oracle Web Services Manager (OWSM) as a stand alone product, but the easiest way would be to use the OracleAS SOA Suite Developer Preview, that contains all the SOA components (OWSM, J2EE, BPEL, ESB, ...)
    Oracle Application Server 10g Release 3 (10.1.3.1.0) Developer Preview for the Oracle SOA Suite
    Regards
    Tugdual Grall

  • Web content management editor

    Hi,
    I've received the INFORMATION INDEPTH newsletter, where it announces the new editor:
    "A new Web content management editor, which provides enhanced accessibility, with W3C levels 1 and 2 support, broader platform and browser support, and an improved editing experience"
    Someone knows where I can download it?
    TIA

    Hi Alan:
    <P>
    In the thread Re: Contributor Editor upgrade - any info? I asked you to post some summary from the release notes, or to link to some place where we can find that info.
    <P>
    TIA

  • Tools to manage and use oracle scripts

    Easyscript for Oracle is a tool to help you manage scripts efficiently
    and use scripts easily. The goal of easyscript is providing you a uniform
    and easy envrionment to manage and use your scripts.
    With hundreds of ready-made scripts, easyscript is also a monitoring and tuning
    tool for Oracle DBA and application developer.
    With Easyscript for Oracle there is no more hunting around on your hard drive for your favorite and important scripts!
    Manageability
    1. Scripts are well organized in tree structure, can be nested in any level, divided into
    different categories as you like. Each tree node represents a script.
    2. Using the search function, you can find a particular script even faster.
    With a mouse click, you can view the entire script,and even flip back and forth between scripts.
    3. Add script into (delete script from,modify script name in) script tree can be done on the fly.
    4. SQL statement, sqlplus command and pl/sql block can be mixed together into a script,
    edit script in script window with syntax highlighting.
    5. Able to convert old scripts located in directory and subdirectory to a well organized script
    tree used by easyscript, so migrate your old scripts in file system to easyscript is very handy.
    Usability
    1. Script is sqlplus compatible, so any scripts previously run in sqlplus can be run
    by easyscript, and vice versa.
    2. Execute script in easyscript is just one mouse click.
    3. All scripts or scripts located under a categories can be runned in batch mode.
    4. Scripts can be scheduled to run in batch mode to generate report of any targeted databases.
    5. Report generated by easyscript can be in htm or txt format.More output format such as cvs,excel
    will be supported soon.
    6. Able to highlight column data of query result when it's value meet pre-defined condition,
    this makes report more readable.
    Script depot
    1. Hundreds of ready-made scripts,These scripts cover all
    aspects of day-to-day Oracle administration, from installation
    to system monitoring and backup and recovery.
    2. Easy to share and exchange scripts with others in a uniform way.
    3. Affiliate with other famous Oracle site to provide more scripts continuously.
    Get more information about easyscript for oracle from
    http://www.wangz.net/easyscript.php
    Here are scripts can be used by easyscript for oracle:
    http://www.wangz.net/scripts.php

    My thoughts on this (if anyone cares) are Tools to manage and use  oracle scripts.
    Cheers, APC

  • [ANN] Online seminar - Web services management and security seminar

    Join us now (Thu 09:00am) for a live seminar about Web services management and security here:
    http://www.oracle.com/technology/tech/java/newsletter/seminars.html

    I have got the following error when i run the WebServicesAssembler.jar
    D:\Oracle\Oc4j\j2ee\home>java -jar d:/oracle/oc4j/webservices/lib/WebServicesAss
    embler.jar -config etc/config.xml
    Exception in thread "main" java.util.zip.ZipException: The system cannot find th
    e path specified
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:105)
    at java.util.jar.JarFile.<init>(JarFile.java:110)
    at java.util.jar.JarFile.<init>(JarFile.java:52)
    D:\Oracle\Oc4j\j2ee\home>java -jar WebServicesAssembler.jar -config etc/config.x
    ml
    Exception in thread "main" java.lang.InstantiationException: Unknown deployment
    tag in JMS Web Service Example: <option>
    at com.evermind.xml.XMLConfig.parseDeploymentMainNode(XMLConfig.java:293
    at oracle.j2ee.ws.tools.WsAssemblerConfig.parseDeploymentMainNode(WsAsse
    mblerConfig.java:68)
    at com.evermind.xml.XMLConfig.parseRootNode(XMLConfig.java:268)
    at com.evermind.xml.XMLConfig.init(XMLConfig.java:147)
    at com.evermind.xml.XMLConfig.init(XMLConfig.java:88)
    at oracle.j2ee.ws.tools.WsAssemblerConfig.init(WsAssemblerConfig.java:30
    at oracle.j2ee.ws.tools.WsAssembler.main(WsAssembler.java:17)

  • Using Contribue for web content management

    I am trying to find out if Contribute/Dreamweaver can be used
    to perform web site content management functions. In particular, I
    need to know if web page publication dates can be controlled, i.e.
    is it possible to specify a future date for publication of a
    specific page? I think Contribute can do this when posting to a
    blog but it's not clear if web pages can be managed in this way as
    well. Any help gratefully received....

    Hi,
    No such functionality is available in Contribute or
    Dreamweaver till now. We will track the same as Enhancement
    request.
    Thanks and Regards,
    Radhika

  • Using Dreamweaver for web content management

    I am trying to find out if Dreamweaver/Contribute can be used
    to perform web site content management functions. In particular, I
    need to know if web page publication dates can be controlled, i.e.
    is it possible to specify a future date for publication of a
    specific page? I think Contribute can do this when posting to a
    blog but it's not clear if web pages can be managed in this way as
    well. Any help gratefully received....

    > is it possible to specify a future
    > date for publication of a specific page?
    No.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "webtalk08" <[email protected]> wrote in
    message
    news:g0eogn$5lr$[email protected]..
    >I am trying to find out if Dreamweaver/Contribute can be
    used to perform
    >web
    > site content management functions. In particular, I need
    to know if web
    > page
    > publication dates can be controlled, i.e. is it possible
    to specify a
    > future
    > date for publication of a specific page? I think
    Contribute can do this
    > when
    > posting to a blog but it's not clear if web pages can be
    managed in this
    > way as
    > well. Any help gratefully received....
    >
    >

  • Comparitively between Oracle Webcentre content management and Oracle CMSDK

    Hi,
    Currently for one of my client they are using Oracle CMSDK 9.0.4.2.2 to maintain all the files which comes from upstream system or goes to downstream system for integration, the Oracle CMSDK support variety of protocol support e.g. http, ftp, sftp, NFS, SMB, CUP, WebDev etc.
    They have used CMSDK as file system repository, however all the data what we stored in CMSDK goes to database as LOB. This component get installed on Oracle application server.
    I am looking for similar product likewise CMSDK for the weblogic platform, as we are upgrading legacy middle ware to Oracle Fusion Middleware SOA Suite.
    Is the Oracle web centre could be alternate option for CMSDK? or can you suggest some other Content management product which can be installed on weblogic server and can be integrate with composite process.
    Regards..
    Manish

    + I want to use OCR/Bar Code features: For bar codes reading you need to use recognition server.Using it it will read the value in bar code and automatically indexed the fields
    + ODC VS WFR: In other way you can call capture process is not automatic i.e manual indexing required But in case if all things are good like quality of invoice etc and you want the process to automate without manual intervention ,this can be achieved with WFR.
    see the document below for ODC/WFR integration
    http://docs.oracle.com/cd/E29542_01/doc.1111/e49971.pdf for Oracle WebCenter Forms Recognition/Capture Integration.

  • IPTV Content Manager and Novell 6 Zenworks Dynamic Local User

    We are running Cisco IPTV viewer 3.2.24 along with Windows 2000 Professional on Dell260 workstations. We run Novell, version 6 with Zenworks 4 and Dynamic Local User to create a new user on the workstation. Every time a new user is created we have to add the tcp/ip address for the Content Manager. Is there a way to retain the address of the Content Manager for any user that is created on the local workstation so that we don't have to enter the address each time a new user sign-on to the workstation?

    Unfortunately, it seems, there is no work-around for this problem in 3.2 version of the IPTV Viewer. The Content Manager address is stored in the registry setting in HKEY_USERS.
    The behavior is different for viewer 3.4 where the CM address is stored in HKEY_LOCAL_MACHINE and is common to all users.
    Solution is -
    a. Upgrade to IPTV 3.4 or 3.5 Viewer
    or
    b. Use the Web-based Program Guide
    You could also try playing around with setup.ini/iptv.ini {GuideServer= and GuideServerPort= } settings to see if there is any luck to hard-code this information while installing the software.
    More information is available at http://www.cisco.com/univercd/cc/td/doc/product/webscale/iptv/iptv32/admin_gd/chap4.htm

  • I can no longer edit my custom content management system using Firefox

    Hello,
    I work for the University of North Carolina. We have a very old custom content management system that is built in Oracle (UCM). When logged in, it has little edit buttons that allow you to click on items and launch edit windows. I don't know what's behind that -- it's not Java. I'm thinking javascript? All I know is that since the Firefox upgrade to 13.0.1, the edit buttons no longer display, and the sites are not editable.
    So far, the only way we've been able to allow people to edit their sites is by forcing them to use IE9 in compatibility mode. All other browsers fail for various reasons. Firefox is our workhorse browser, but we're desperate to have Firefox back.
    I understand we also have some problems with our Remedy application -- not sure what's happening, but it's also no longer functional in Firefox. I'm wondering if there is a patch in the works that will address these issues?
    BTW, it sounds a lot like this issue here: http://support.mozilla.org/en-US/questions/930042

    Drat... So, we tried taking out the javascript entirely. No real change, except lightbox actions would not function. Then, we tried referencing a different javascript version. No difference, except that lightboxes and Carousels still would not function.
    To see if the $ error was universal across all of our sites, I logged into four or five other UCM sites. None of them threw the $ error, only the Art site. What's interesting is that for all sites, you can see editable areas if you look for them (e.g. mouse randomly around the areas where there used to be buttons to click on), but the icons continue to not show up.
    The warnings coming from the console seem fairly benign, and it's only the Art site that throws a definite error. The only thing that seems consistent across all sites is the warning: "server does not support RFC 5746, see CVE-2009-3555".
    Any other thoughts? I'm not sure a guest logon would help, but I can certainly pursue that line of action if you'd like to dig a little deeper.
    Thanks in advance,
    - Veda

Maybe you are looking for

  • How do I burn an IMovie to a DVD?

    Hello all. Happy holidays. I have a bit of a problem that has been nagging me for a few days now. I just completed a twenty five minute I-Movie for my wife, and would like to surprise her with a DVD for Christmas. However, I cannot for the life of me

  • Java.util.zip.ZIPException

    We are using Oracle Application Server 10g (10.1.2) with AIX OS version 5.3 release 6. We are getting error while deploying a "*.war" file. Below is the full error we have got during the installation. Error starting from below. Failed to deploy web a

  • Is there a way to flip the pages of a document instead of scrolling?

    I have got my documents into pages but was hoping instead of scrolling from page to page I could somehow change a setting or preference to be able to flip pages like in iBook. Hope someone else has had this concern or request so that I can make this

  • VIM: need for VIM specific reports

    Hello Experts, My need is to create a report from a cross of two existant reports: VIM_ANALYTICS and REMINDER (Transaction /OPT/VIM_ANALYTICS and /OPT/REMINDER). - Is there a point in the customizing  where we can create VIM customer reports ? I mean

  • When i choose Choose plan to make order the page does not open.

    The page on the internet delays to open! Is there a problem?