Updating KM resource content

Hi,
I would like to update the content of the file, which resides in the KM.
In java we can append the data to the existing content of the file by creating the constructor like new java.io.FileWriter(filepath,true). Whenever we write the content using the method writer.write("Some Text") the text wil be appended to the existing content.
Like this how can we achive in the KM resource update.
Thanks

Hi,
You can use IResource.updateContent() method to update the content of any file in KM.
IResource resource = ResourceFactory.getInstance().getResource(rid, resourceContext);
InputStream is = resource.getContent.getInputStream();
String fileContent = <<Convert inputstream to string using bufferered reader...>>
fileContent = fileContent + <<data to be appended as string>>
IContent content = new Content(<<inputstream with appended data>>, "text/plain", <<byres of content>>);
resource.updateContent(content, null);
Hope this helps.
Regards,
Yoga

Similar Messages

  • How to update resource content (XML Versioning)

    Hi,
    How to update resource content in the resource_view?
    I am trying to use XML Versioning. And not able to update the resource content using PL/SQL. Upon executing update, sql prompt says 1 row updated, but when I extract the same resource, it returns previous values. Is this a bug?
    I tired the following statements:
    --Create Resource
    declare
    bret boolean;
    begin
    bret := dbms_xdb.createresource('/public/test.xml','<Test>Version 1</Test>');
    end;
    --Update Resource
    update resource_view
    set res = updatexml(res, '/Resource/Contents/Test/text()', 'Version 2') where any_path = '/public/test.xml';
    --Extract the resource
    select extract(res, 'Resource/Contents') from resource_view where any_path = '/public/test.xml';
    EXTRACT(RES,'RESOURCE/CONTENTS')
    <Contents xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd">
    <Test>Version 1</Test>
    </Contents>
    Any help appriciated.
    Thanks

    Hi,
    Update the whole 'Test' element itself with the new element and value.
    example:
    update resource_view
    set res = updatexml(res, '/Resource/Contents/*', '<Test>Version 2</Test>') where any_path = '/public/test.xml';
    Hope that helps.
    Savitha.

  • Update Resource content

    Hi KM Experts,
    Is it possible and how can I update/create resource content?
    There is the "IMutableContent" Interface but it doesn't provide any methods to update the content. For example I only want to update a txt file resource.
    Thanks
    Laurent.

    Hi Laurent,
    you can create new content and update your resource with the new content with something like this:
    IContent newContent = new Content(...);
    resource.updateContent(newContent);
    Hope that helps!
    Regards,
    Dieter

  • How to update BLOB resource ???

    Hi,
    I've created BLOB resource successfully.
    But after my attempt to update it using
    UPDATE resource_view SET res=updatexml(res,'/Resource/Contents/*',blob_res)
    WHERE any_path= '/path';
    I get an error
    ORA-06550: line 17, column 7: PL/SQL: ORA-00932: inconsistent datatypes: expected NUMBER got BLOB ORA-06550: line 15, column 3: PL/SQL: SQL Statement ignored
    I need a help !!!
    Thanks
    Viacheslav

    Please note that technically updating XDB$RESOURCE directly is not supported.....
    open mdrake-lap 2100
    user XDBTEST XDBTEST
    cd /home/XDBTEST
    ls -l
    put "RedwoodShores.jpg" "RedwoodShores.jpg"
    ls -l
    get "RedwoodShores.jpg" "RedwoodShores.jpg.out"
    quit
    Connected to mdrake-lap.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    331 pass required for XDBTEST
    230 XDBTEST logged in
    250 CWD Command successful
    200 PORT Command successful
    150 ASCII Data Connection
    drw-r--r-- 2 XDBTEST oracle 0 MAR 22 10:13 xsd
    226 ASCII Transfer Complete
    ftp: 59 bytes received in 0.25Seconds 0.24Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 352071 bytes sent in 0.88Seconds 399.17Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r-- 1 XDBTEST oracle 352071 MAR 22 10:13 RedwoodShores.jpg
    drw-r--r-- 2 XDBTEST oracle 0 MAR 22 10:13 xsd
    226 ASCII Transfer Complete
    ftp: 132 bytes received in 0.00Seconds 132000.00Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 352071 bytes received in 0.08Seconds 4400.89Kbytes/sec.
    221 QUIT Goodbye.
    open mdrake-lap 2100
    user XDBTEST XDBTEST
    cd /home/XDBTEST
    ls -l
    get "RedwoodShores.jpg" "output1.jpg"
    quit
    Connected to mdrake-lap.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    331 pass required for XDBTEST
    230 XDBTEST logged in
    250 CWD Command successful
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r-- 1 XDBTEST oracle 352071 MAR 22 10:13 RedwoodShores.jpg
    drw-r--r-- 2 XDBTEST oracle 0 MAR 22 10:13 xsd
    226 ASCII Transfer Complete
    ftp: 132 bytes received in 0.00Seconds 132000.00Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 352071 bytes received in 0.18Seconds 1955.95Kbytes/sec.
    221 QUIT Goodbye.
    SQL*Plus: Release 10.1.0.2.0 - Production on Mon Mar 22 11:14:00 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> spool testcase.log
    SQL> set trimspool on
    SQL> --
    SQL> set timing on
    SQL> set long 10000
    SQL> set pages 10000
    SQL> set feedback on
    SQL> set lines 132
    SQL> --
    SQL> connect sys/oracle as sysdba
    Connected.
    SQL> --
    SQL> alter session set current_schema = XDB
    2 /
    Session altered.
    Elapsed: 00:00:00.01
    SQL> create or replace package XDB_EXAMPLES
    2 AUTHID DEFINER
    3 as
    4 procedure updateResource(path VARCHAR2,content BLOB);
    5 end;
    6 /
    Package created.
    Elapsed: 00:00:00.12
    SQL> show errors
    No errors.
    SQL> --
    SQL> select * from all_errors where owner = 'XDB'
    2 /
    OWNER NAME TYPE SEQUENCE LINE POSITION
    TEXT
    ATTRIBUTE MESSAGE_NUMBER
    XDB XDB_EXTENSIONS PACKAGE 1 4 42
    PLS-00103: Encountered the symbol "(" when expecting one of the following:
    := . ) , @ % default character
    The symbol ":=" was substituted for "(" to continue.
    ERROR 103
    1 row selected.
    Elapsed: 00:00:00.03
    SQL> create or replace package body XDB_EXAMPLES
    2 as
    3 --
    4 procedure updateResource(path VARCHAR2,content BLOB)
    5 is
    6 RESID RAW(16);
    7 begin
    8 select RESID
    9 into RESID
    10 from RESOURCE_VIEW
    11 where equals_path(res,path) = 1;
    12 -- Not really supported...
    13 update XDB.XDB$RESOURCE R
    14 set R.XMLDATA.XMLLOB = content
    15 where object_id = RESID;
    16 commit;
    17 end;
    18 --
    19 end;
    20 /
    Package body created.
    Elapsed: 00:00:00.01
    SQL> show errors
    No errors.
    SQL> --
    SQL> select * from all_errors where owner = 'XDB'
    2 /
    OWNER NAME TYPE SEQUENCE LINE POSITION
    TEXT
    ATTRIBUTE MESSAGE_NUMBER
    XDB XDB_EXTENSIONS PACKAGE 1 4 42
    PLS-00103: Encountered the symbol "(" when expecting one of the following:
    := . ) , @ % default character
    The symbol ":=" was substituted for "(" to continue.
    ERROR 103
    1 row selected.
    Elapsed: 00:00:00.01
    SQL> grant execute on XDB_EXAMPLES to public
    2 /
    Grant succeeded.
    Elapsed: 00:00:00.03
    SQL> create or replace public synonym XDB_EXAMPLES for XDB_EXAMPLES
    2 /
    Synonym created.
    Elapsed: 00:00:00.00
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> declare
    2 targetFile BFILE;
    3 content BLOB;
    4 begin
    5 targetFile := BFILENAME(USER,'&4');
    6 DBMS_LOB.fileopen(targetFile, DBMS_LOB.file_readonly);
    7 DBMS_LOB.createTemporary(content,true,DBMS_LOB.SESSION);
    8 DBMS_LOB.loadFromFile(content,targetFile,dbms_lob.getLength(targetFile),1,1);
    9 XDB_EXAMPLES.updateResource('/home/&1/&3',content);
    10 DBMS_LOB.freeTemporary(content);
    11 DBMS_LOB.fileclose(targetFile);
    12 commit;
    13 end;
    14 /
    old 5: targetFile := BFILENAME(USER,'&4');
    new 5: targetFile := BFILENAME(USER,'Concorde.jpg');
    old 9: XDB_EXAMPLES.updateResource('/home/&1/&3',content);
    new 9: XDB_EXAMPLES.updateResource('/home/XDBTEST/RedwoodShores.jpg',content);
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.77
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    open mdrake-lap 2100
    user XDBTEST XDBTEST
    cd /home/XDBTEST
    ls -l
    get "RedwoodShores.jpg" "output2.jpg"
    quit
    Connected to mdrake-lap.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    331 pass required for XDBTEST
    230 XDBTEST logged in
    250 CWD Command successful
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r-- 1 XDBTEST oracle 235782 MAR 22 10:13 RedwoodShores.jpg
    drw-r--r-- 2 XDBTEST oracle 0 MAR 22 10:13 xsd
    226 ASCII Transfer Complete
    ftp: 132 bytes received in 0.00Seconds 132000.00Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 235782 bytes received in 0.22Seconds 1071.74Kbytes/sec.
    221 QUIT Goodbye.
    -rwxrwxrwa 1 mdrake None 235782 Aug 9 2003 Concorde.jpg
    -rwxrwxrwa 1 mdrake None 352071 Aug 9 2003 RedwoodShores.jpg
    -rwxrwxrwa 1 mdrake None 352071 Mar 22 11:14 output1.jpg
    -rwxrwxrwa 1 mdrake None 235782 Mar 22 11:14 output2.jpg
    $
    $

  • How to update a table of contents when the feature "update table of contents" is unavailable?

    Hello folks,
    I've been struggling all morning with this issue and am completely desperate.
    First, some info:
    - I am making a spanish versions of an english documents: everything in the original doc was then edited, including TOCs. What I got at first, was a first spanish document already filled with spanish content.
    - I was not the primary creative of the document I'm workin on and am unable to get in touch with whoever that can be.
    - My document is a 200 pages text only document, with 12 chapters and, at the beginning of each chapter, a specific TOC for that very chapter.
    - Inside each chapter, there are only Sections and Subsections, no other style. Those are the two levels in the TOCs.
    - There is also a General TOC at the beginning of the document: that one only shows the Chapter names and the page number where to locate them.
    My problem:
    - Somewhere along the way, from one doc to another, the TOCs stopped to update the page numbers automatically.
    - Now I have sections and subsections that are shown in one page (for instance 204) but they actually are on page 135.
    - When I try to update the TOCs, I stand on the TOC itself as I was told in many tutorials, but the "update table of contents" feature is unavailable, even in the main TOC at the very beginning of the doc.
    It is like if I wasn't standing in the actual TOC, but there is no actual TOC anywhere that I could refer to.
    What can I do? I am changing the wrong page numbers manually but, of course, that is not ideal... and it may become more and more tricky while I keep producing new documents each based on the previous one.
    Any help will be much appreciated.
    Warm regard from sunny Paris, France!
    Sasha

    You've just confused me.
    My understanding of how this is set up is that either:
    This is a book, and there is a master TOC that includes all book documents and a document-specific TOC in each component file, or
    This is a single file and there is one master TOC that includes all sections and a section-specific TOC that includes only the individual section.
    In the first case, I think you would want two TOC styles set up, one that includes the chapter heads (if I understood how you said this worked) for the for the master, and you would include all docs in the book when you generate it, and a second style for the individual chapters, with the subheadings you want to include.
    In the second case, it would be similar, but instead of only one style to cover the section TOCS, I think you would need to create a unique set of pargraph styles for the headings in each section (they can all be the same format, based one section, just with unique names), and then make a TOC style for each section that includes only the styles from that section.
    OK,  wait a sec. I just reread what you said: "Another thing: when the numbers are "linked" and updating well, they  display indide a little box. Not a text box, but a kind of little frame  around the numbers. That frame makes it imposible to delete just one  number: when the TOC says that Section 6.1 is in page 135, for example,  you cannot delete just the 5, it deletes, not just the 3 numbers, but  also the doted tab."
    I think these are NOT normal TOCs created by using Layout > TOC (but you could replace them with ones that are, if you set up your styles properly and the text you want to include is appearing on the pages). Those little boxes you mention sound like cross-references, which should update automatically without any intervention at all. Unfortunately, cross-refs can be flakey, especially if they point to another document. I'd open the cross-refs panel and see if you need to recreate a bunch of links.

  • Problem trying to get at /Resource/Contents xml stuff

    Hi there,
    I have created the following:
    DECLARE
    retb boolean;
    BEGIN
    retb := dbms_xdb.createFolder('/public/mydocs');
    commit;
    END;
    declare
    bret boolean;
    begin
    bret := dbms_xdb.createresource('/public/mydocs/emp_maggie.xml','<name>maggie</name>');
    commit;
    end;
    My problem is this: I would like to get the emp_maggie.xml
    details back out of the resource but I am unable to figure out
    a way to do this. I can see that there is something in the
    /Resource/Contents tag by doing the following:
    SELECT p.res.GETCLOBVAL() FROM path_view p WHERE p.path = '/public/mydocs/emp_maggie.xml';
    which results in:
    <Resource xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd" Hidden="false" Inv
    alid="false" Container="false" CustomRslv="false" VersionHistory="false">
    <CreationDate>2002-06-18T09:44:53.902000000</CreationDate>
    <ModificationDate>2002-06-18T09:44:53.902000000</ModificationDate>
    <DisplayName>emp_maggie.xml</DisplayName>
    <Language>us english</Language>
    <CharacterSet>utf-8</CharacterSet>
    <ContentType>text/xml</ContentType>
    <RefCount>1</RefCount>
    <ACL>
    <acl description="Public:All privileges to PUBLIC" xmlns="http://xmlns.oracl
    e.com/xdb/acl.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch
    emaLocation="http://xmlns.oracle.com/xdb/acl.xsd http:
    //xmlns.oracle.com/xdb/acl.xsd">
    <ace>
    <principal>PUBLIC</principal>
    <grant>true</grant>
    <privilege>
    <all/>
    </privilege>
    </ace>
    </acl>
    </ACL>
    <Owner>TEST</Owner>
    <Creator>TEST</Creator>
    <LastModifier>TEST</LastModifier>
    <SchemaElement>http://xmlns.oracle.com/xdb/XDBSchema.xsd#binary</SchemaElement
    >
    <Contents>
    <binary>641C4707F0EF4A0700100800A030CD6600000000D41A4707</binary>
    </Contents>
    </Resource>
    I have a tried a variety of commands including:
    select p.res.extract('/Resource/Contents/*').getStringVal() from resource_view p where equals_path(res, '/public/mydocs/emp_maggie.xml') > 0;
    select extract(res, '/Resource/Contents/*').getStringVal() from resource_view p where equals_path(res, '/public/mydocs/emp_maggie.xml') > 0;
    select extract(res, '/Resource/Contents/*') from resource_view p where equals_path(res, '/public/mydocs/emp_maggie.xml') > 0;
    all of which result in "1 row selected" but without showing any details of the xml
    document of interest.
    Does anybody know of a solution?
    Cheers,
    Maggie

    Mark,
    thanks for the help.
    This now seems to work, so long as I put an initial "/" before the public path:
    select xdburitype('/public/mydocs/emp_maggie.xml').getXML() from dual;
    Would still be great to know how the extract() and get_contents() methods are meant
    to work as detailed in table 13.3 of the Oracle9i XML database developers guide - Oracle XML DB Release 2.
    Cheers,
    Maggie

  • "Unable to update local resource group" error

    Hello,
    I'm having a problem updating one of my local resource groups in RD Gateway Manager.
    We're on 2008 R2 SP1, and have a gateway in between us and another company. When a user needs to access their computer in the other company, we add the machine to the local group, and the account the AD RAP group, it works fine.
    However, every couple of weeks, it will not allow me to update the local resource group for computers. I receive the error "WMI Failure: Unable to update local resource group" ..and apparently google cannot find another instance of this error happening -
    no results at all - very odd. So the normal fix is to just recreate the RAP.xml file, then add the machines in again, but this is not a good enough fix long term, plus it misses the machines that are switch off when i recreate.
    Also - this will be logged in eventvwr TerminalServices-Gateway  
    "The resource group "MY GROUP NAME" could not be updated. The following error occurred: "23106". To resolve this issue, ensure that you have configured resource group settings correctly and set the correct value and permissions for the RAP.xml file and the
    RAPStore registry key."
    Google also cannot find anything for that error, OR that 23106 error code - I cannot get results no matter what I do. It cannot be permissions as I've checked them, and it works for a bit. I've ran the WMI diagnostics, and they're fine, no different to any
    other server in the environment. 
    I've also checked these forums and there is nothing on there. Does anyone know the relevance of that error code, or where I can check it out?
    Cheers,
    Jon

    I can confirm ..MPIN..'s solution fixes it.
    I had the exact same problem; I'd recently added a new server, and stopped the old server before decomissioning.  Adding the new serer to the TS RAP policy server didn't work and generated the OP's error.
    I removed the old server name (which was not pingable) and the group COULD be updated.
    Really crappy error handling - this is a defect and should be fixed.  A proper error would say "Not all machines in this group are valid, please remove the invalid entries" OR simply allow 'ok' without double checking (after all, the names are checked
    when adding).
    So often we accept shoddy software by proposing work arounds as 'the fix'.  The actual fix is to fix the software to be more descriptive and/or handle errors more gracefully.
    == John ==

  • Online update of catalog content in CCM by Suplier?

    Dear Experts,
    How does online update/upload of content by Supplier happens in CCM catalog in SRM? Does it go through the approval by content manager during the upload process?
    Is it supported in SRM MDM catalog as well?
    Thanks and regards,
    Ranjan

    In the CCM you can set the default status of the catalog items to the To be approved and once you recieve the file from supplier Content manager can upload and the content approver can approve those items.
    In MDM you have multiple options to handle the content either by a)excel upload  or b)defining the ports and respective map and placing the file in the port for auto upload with MDIS.
    Regards,
    Surya

  • After updating Flash all content lags

    OS: Windows 7 Home Premium 64-bit Service Pack 1
    Browser: Mozilla Firefox 13.0.1
    Flash ver: 11.3.300.262
    Computer is a laptop and has 4 GB RAM and a 2.1 GHZ Pentium Dual-Core processor.
    After the most recent Flash Player update, all Flash content I view with Mozilla Firefox lags massively and often crashes, especially web videos such as Youtube crash after less than a minute of playing. When playing web videos the lag seems to focus on the video feed and not as much the sound, as the sound often plays relatively normally while the video stands still or skips several seconds. The whole browser is also slowed down by the lag.
    This problem only appeared after I installed version 11.3.300.262.

    I'm not a techie, but that sounds like a problem I had with an earlier version of Flash Player, which I cured by disabling hardware acceleration in Flash Player.  To check this out,
    1)  call up a youtube video, and pause it.
    2) right click the video.  You should see a drop down menu.
    3) scroll down to "settings" and you should see a small box appear in the screen.  If there is a check next to "enable hardware acceleration," click on it to clear it.
    4) close out the small screen, exit Firefox, call it up again, and try viewing a video to see if it lags or crashes.
    Along this line, the newer versions of Firefox also use hardware acceleration.  You can also try disabling that to see if it cures the problem.  Hardware Acceleration in Firefox was causing display problems with my brand new HP Omni 22-1125, in spite of the fact that it has an up to date Intel graphics driver, etc.  (When I'd right-click a menu, such as bookmarks, if the menu extended toward the bottom of the screen, overhanging the taskbar, it would leave an image on the taskbar when the drop-down menu was closed.  I'd have to click on the "show home page" button to clear it.)
    1) Click on the Tools menu.
    2) Click on Options
    3) Click on the Advanced tab.
    4) If "hardware acceleration" is checked, click on it to remove the check.
    5) Close out Firefox and restart it to test.
    HTH,
    Ortho_Fan

  • Unable to update wip resource usage rate using wip_txn_interface

    Hello All,
    I am unable to update wip resource usage rate using wip_txn_interface.
    The rows were processed in the interface table and Cost Manager also completed normal, but the rows were not updated.
    Can you please help?
    Thanks,
    Gani

    HI Gani,
    Is that stuck with any error?, please provide the error message if possible.
    Thanks,
    Raghav

  • Update the resource attrubute

    Hi , Groovers
    I'm using IdM 5.5.
    I'd like to unlink to the resource after then write the resource attribute, when feedOp is delete in ActiveSync.
          <Field>
            <Disable>
              <neq>
                <ref>feedOp</ref>
                <s>delete</s>
              </neq>
            </Disable>
            <Field name='accounts[test_LDAP].SyncFlg'>
              <Expansion>
                <s>ture</s>
              </Expansion>
            </Field>
          </Field>     
          <Field>
            <Disable>
              <neq>
                <ref>feedOp</ref>
                <s>delete</s>
              </neq>
            </Disable>
            <Field name='resourceAccounts.currentResourceAccounts[test_LDAP].unlink'>
              <Expansion>
                <s>true</s>
              </Expansion>
              <Disable>
                <eq>
                  <ref>resourceAccounts.currentResourceAccounts[test_LDAP].exists</ref>
                  <s>no</s>
                </eq>
              </Disable>
            </Field>
          </Field>This code didn't work..and didn't update the resource attrubute(syncflg), and unlink the resource .
    How do I have to do?
    thanks.
    Micky

    Hello Karthi,
    Can you just preselct the business events from HRVPVA into an internal table then loop at the table as you are processing the RFC?  This would probably be a more efficient manner of processing the Resources then trying to use BDC logic to select each one.
    Jereme

  • Updated Unbranded Partner Content

    With all the changes happening over the past few weeks (and months), all the unbranded partner content is becoming woefully out of date.
    Is there going to be an update to this content? Specifically the admin screenshots, pricing plans, links to triange/sitewalk and more and more. Looking at the content, it doesn't look like its been updated in 3 years (pre Adobe?), and so many things have changed since then.

    Most of that stuff will likely just be deleted. Can't say for sure if we will see new white labelled sales tools or not. The Triangle extension will no longer be available after June 30th either.

  • Using Read Resource Content

    Hi all,
    I have a problem using the Read Resource Content service. I need it to create a document variable, but the variable I get is not populated with data. So how can I make sure that the document variable that I need contains the data which I need it to contain.
    The reason why I need to make my form (xfaform) to a document is that I need to send it by email and the emailsendwith document only supports the document types as attachments
    Thanks in advance
    Sincerely
    Kim Christensen

    I have now tried out some of what is suggested in the post you refer to. However I have not been succesful in achieving the wanted scenario.
    I need to send an xfaform with data to and end user and I have created a simple process that tries to do this. In my process I have the following:
    - Two xdp-forms with embedded xml schema (added in the repository)
    - inVar (Xfa form)
    - middleVar (document)
    - outVar (document)
    - Read Resource Content service (start activity)
    - Resource URI: \test.xdp
    - result: middleVar
    - importData (next activity)
    - PDF document: middleVar
    - input data: /process_data/inVar/object/data/xdp/datasets/data/*
    - Data merged PDF: outVar
    - sendWithDocument (last activity)
    - attachment outVar
    This fails when I invoke the process with an error that the PDF or data is malformed. Although the form and schema only contains one element (a textfield) - and I believe that it is setup correctly.
    When I log the XML variable from /process_data/inVar/object/data/xdp/datasets/data/* i get:
        Test
    and this seems correct to me, however the importData service will not accept it as stated above.
    When I try to insert this xml as preview data in the Designer it shows up fine with "Test" inside the textfield.
    How can I start my hunt for the solution to this problem?
    Hope that you have not died during your reading of this post ;)
    Have a nice weekend
    Sincerely
    Kim Christensen

  • Failed to download the update from unc content source. Errcr Code=3

    can anyone tell me. how to fixed this issue. When i create Automatic deployment Rule in SCCM 2012 SP1 CU2, i get the error like this...i try to search in google. but i cant found error like this.
    http://social.technet.microsoft.com/Forums/getfile/328697

    I'm creating Automatic Deployment Rule, in "Download Location" tab i have two options:
    1. Download software updates from the Internet
    2. Download software updates from a location on my network.
    So i choose the second option to download it from a location on my network and write there UNC path to the primary server where are all updates downloaded. But when i start this rule error messages appiers with every update it tries to download "Failed
    to download the update from UNC content source. Error = 3"

  • Please help noob debug why updating template duplicates content

    Please go to
    http://www.mmssupplier.com/
    to read the code and help me figure out how to stop my pages from
    duplicating content or a partial table whenever I update my
    template. It only does this to some of the pages that I built from
    the template. I'm not a code expert and cannot figure out why it is
    doing this. On that link the header and content on the bottom is
    the one I want, not all that top duplication, thanks, I really need
    help.

    Hmm - then it's hard to imagine what you might be doing to
    cause this
    anomaly.
    The good news is that your template is pretty OK. The
    validator only finds
    5 errors there -
    1. Error Line 69, Column 41: there is no attribute "height".
    … <td><table width="100%" height="110"
    border="0" cellpadding="0"
    cellspa
    There is NO 'height' attribute in any HTML specification for
    the table
    tag. Since you cannot reliably use this attribute, you should
    just remove
    it from your code.
    2. Error Line 88, Column 320: value of attribute "align"
    cannot be
    "absmiddle"; must be one of "top", "middle", "bottom",
    "left", "right".
    …ight="37" border="0" align="absmiddle" id="home2"
    /></a><br />
    The absmiddle attribute is similar to the table height
    attribute - supported
    by some browsers, but not valid HTML. Just remove it.
    3. Error Line 92, Column 260: value of attribute "name" must
    be a single
    token.
    …jpg" alt="health_issues" name="health issues"
    width="130" height="37"
    border=
    You cannot assign a name value that contains spaces.
    4. Error Line 92, Column 314: value of attribute "id" must
    be a single
    token.
    …30" height="37" border="0" id="health issues"
    /></a><br />
    You cannot assign an ID value that contains spaces.
    5. Error Line 127, Column 61: required attribute "alt" not
    specified.
    …ea shape="rect" coords="2,2,125,31" href="/index.html"
    />
    All images on the page should have either a descriptive alt
    attribute value,
    or an empty one, e.g., <img alt=""....
    Fix those errors, please. Then we can re-examine how you
    might be stumbling
    onto this duplication in your pages.
    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
    ==================
    "stephanierolfe" <[email protected]> wrote
    in message
    news:[email protected]...
    > no, I don't apply to existing child page. I create new
    page each time,
    > based on
    > that template.
    > And yes, I'm starting to get that. I thought I knew
    enough HTML to pull it
    > off
    > and created one large site already,
    http://www.nutritionarticlesonline.com
    > and
    > it works great, no problems with corrupted templates.
    I'd like to persist
    > with
    > DW since I've invested over 6 months already using it.
    Despite the 91
    > errors,
    > it works fine except this updating template problem.
    >

Maybe you are looking for

  • How do you receive iMessages from a device other than the iPhone they originally are being sent to?

    I'm trying to receive iMessages from a phone other than my own. How do I receive them, I have both Apple IDs and both passwords but do not have current access to the phone I'm trying to get the iMessages from.

  • How do I update my mac os x?

    Hello, I'm a new Mac user and am sort of stuck on some things. I need to update my os from 10.1.5 to at least 10.3. I have already read alittle from other users and relize that I will have to purchase an os update disc. Does anyone have any suggestio

  • I can't get it working on my tv....

    I bought an av cable some time ago... now I foudn out ALL our tvs don't have all the three av ports... so I bought a scard adapter, in which I can plug the av... but it's still not working. I don't know what i'm doing wrong, but isn't it suppose to w

  • Can't get Photoshop CS6 onto new device

    I recently purchased a Wacom Cintiq Companion tablet, which has the ability to run products such as Photoshop on it. However, I purchased my version of Photoshop CS6 over a year ago, and am now unable to find a download link for it, as my order histo

  • BT website tells me it doesn't recognise my number...

    I am interested in BT and have tried to make an enquiry through the website, however I keep getting a message that my telephone number is not recognised, even though I have telephone and broadband through BT.   I contacted BT last week about the prob