Retrieving content via CM tags

This is a newbie question, but I could not find the answer in any documentation, and I've been stuck on this for a while!
In retrieving content using content management tags (WL8.1 SP5), do my JSPs have to be in the same WL application as the Portal app? Same managed server?
If the answer is yes, this seems like a big limitation since I have to deploy all jsps accessing the repository on the same instance.
Thanks for your help!
Dmitry

Hi,
Did you managed to find out how to retrieve and render JSP from the repository?
Cheers
Jack

Similar Messages

  • EmailReceiver QPAC doesn't retrieve 'content-disposition: inline' attachments

    Hi,
    [Note: this is kind of a follow-up thread for
    Email receiver QPAC does not retrieve attachments other than .jar. Thought, I better post a new thread.]
    I experimented quite a lot with the Email Receiver QPAC. Regarding my testing, it seems as though it doesn't recognize attachments from emails, whose
    content-disposition is set to 'inline'. In fact, if I set the content-disposition to 'attachment', then the same attachment in the same Email sent via the same Email server is retrieved.
    Does anyone experienced this as well?
    Does the EmailReceiver QPAC actually retrieve 'content-disposition: inline' attachments?

    Hi Howard,
    thank you for providing the new version!
    We'll contact support then. Since some popular email clients like Thunderbird are set to 'content-disposition: inline' by default but we don't want our users having to adjust their client settings rather trickily, it's pretty important to us that the EmailReceiver actually handles inline attachments.
    Regards,
    Steve

  • Deploy and Retrieve Content in PS 3.5

    Hi ,
    I'm trying to use Interwoven team site/ BEA turbo as the 3rd party Content
    Engine to deploy content into the Personalisation Server 3.5 JDBC store.
    The intention is to use the JSP cm: and pz: tag to query and retrieve
    content, particulary for PDF and MS word .doc document.
    What is the requirement for a thrid party Content Engine to deploy the
    document reference into the personalisation JDBC store so that it is useable
    by the cm: and pz: JSP tags? (eg. meta-data and any specific format or SPI
    API to use??)
    Can the PS tags support the viewing of word and PDF document? Is there any
    good reference or sample? I found quite a bit on HTML and image file in the
    e-docs., but no mentioning of other document types. Is this just a matter of
    setting the MIME type?
    Is there a reference intergration implementation avaiable eg. Content
    Express that works for PS 3.5??
    Can Bulk loader do the job? I mean to load PDF and MS Word document. Is
    there a reference load script avaiable somewhere?
    I'm a BEA customer and can get access to websupport. Is that a better
    channel to post these questions? If not, where?
    Thanks
    Alex

    Hi Jyothirmai,
    If you have used standard business content objects in your current BW Installation, and want to take advantage of new business content, you have an option of merging the objects during BC installation.
    In terms of additional fields in datasources, if you can map these in your datamodel then (without a reinitialization) you should be able to populate the data in your datatargets, however you won't be getting historical data for these fields, however if you do re-initialize then you will get the historical data as well.
    You can refer the Business Content Documentation for new datasources/infosources and other objects (e.g, 2LIS_11_VAKON, 2LIS_13_VDKON datasources for extracting conditions in SD). The feasibility for implementing this depends on your R/3 PI release/whether or not you can upgrade your R/3 PI.
    Hope it helps,
    Sree

  • Submitted content via UCM not showing up (blank page) in Oracle Webcenter

    Hi All,
    Once in a while (1/10, recently more and more), when users in our system Database Version:10.2.0.3.0 ---Oracle Database 10g Enterprise - UCM/Webcenter uploads new content via UCM or updating an existing content, they experience a blank page on the corresponding Webcenter page, i.e. all metadata on that content page in Webcenter appears to be blank.
    In UCM the content metadata and all downloads are uploaded successfully. Our workaround is to enter the content via UCM and submit it without any changes to its metadata fields (blank submit). Sometimes, it takes more then one blank submit.
    Another problem that might be related to this is downloads related items of the parent record on the content getting zero size length on Webcenter. Again, our workaround for this is to blank submit the related items via UCM, or re-upload these downloads via UCM so they be downloadable in Webcenter side.
    If more info needed for this please let me know.
    Please provide your input.
    Thanks,
    Alex.

    I probably didn't explain myself. We have two UCM instances: contribution and consumption. UCM contribution instance used to submit/update new/existing contents. These content aren’t available immediately on the Oracle Webcenter, instead, these contents replicated to the UCM consumption instance and available from there to Oracle Webcenter.
    We never update/create new content via UCM consumption.
    So, if for instance I've updated content xyz on UCM contribution, these changes are replicated to UCM consumption and then Oracle Webcenter can retrieve the info from content xyz and present this corresponding page.
    I think the issue with blank pages (metadata fields - HCSP forms) or zero size download files has something to do with replication between UCM instances.
    To fix this issue, we just submitting (blank submit - without changing any field) the form via UCM contribution instance, or we have to upload the same file again for it to replicate.

  • Retrieving content from JavaScript created web tables?

    I am developing a simple Java program that is to browse a particular site, follow links and download web page content (which is created dynamically based on day and sports selected) from which data enclosed in <table>....</table> tags is later parsed and used in Excel spreadsheet for later analysis.
    The idea is to collect sports betting odds from Internet sportsbooks and of course such content is created dynamically based on day's offer of sports events!
    It can be done when the web tables are created dynamically with ASP or PHP as it basically just feed you the web page with all the data still enclosed in standard HTML tables tags.
    However there are quite a number of sites that use Javascript to create such dynamic tables. SO MY QUESTION IS: IS THERE A WAY TO GATHER SUCH JAVASCRIP CREATED WEB DATA IN JAVA?
    Thanks in advance!

    One more thing occured to me as a possible solution but I don't know if it can be done?
    Those particular JavaScript generated web pages that I'm trying to retrieve contents from display data in html tables created depending on the user input!
    Appart from zillion fancy design functions, those pages create a loooooong string which basically represents html <table>.....</table> structure and all the rows and cells are constructed by calling multiple JavaScript functions and filling those tables with variables contained in arrays located in several *.js files.
    So my idea is, CAN YOU CATCH THAT FINAL GENERATED HTML, that is used to view the web page in a browser?

  • Preview XMLForms content via KM API

    Hello, i have created an application which retrieve my IResources, XML News.
    IResourceListIterator iter = list.listIterator();
    String str = "";
    String text = "";
    while (iter.hasNext()) {
    IResource ires = (IResource) iter.next();
    while (ip.hasNext()) {
    BufferedReader in = new BufferedReader(new InputStreamReader(ires.getContent().getInputStream(), ires.getContent().getEncoding()));
    while ((text = in.readLine()) != null) {
         str = str + text + "\n";     
    I output this in html file and recieve full XML News, how can i render it to NewsBrowser (only header like home->news)
    I need to do this via KM API.
    Edited by: Nikita Kravtsov on Aug 12, 2008 11:39 PM

    Hi Nikita,
    in my understanding you wanna display xml forms content via KM API in a HTML output file?
    In Content Administration -> KM Content -> etc -> xmlforms -> <your xml forms application> you can find all relevant created XML-Files for a XML Forms Application. According to this there are also some XSL-Files available. These are stylesheet files that will transform you xml-files in an html file.
    For more information for xsl see following link:
    [http://www.w3schools.com/xsl/]
    What you can do now is to get the corresponding XML File (<yourApplication>-GUIModelShow.xml) and the XSL File (<yourapplication>Show.xsl).
    To transform it in a HTML File, try the following code sample:
    // create XML-File
    File xmlFile = new File( new URI("http://<portalpath>:<port>/irj/go/km/docs/etc/xmlforms/<yourapp>/<yourapp>-GUIModelShow.xml") );
    // create XSL-File
    File xslFile = new File( new URI("http://<portalpath>:<port>/irj/go/km/docs/etc/xmlforms/<yourapp>/<yourapp>-Show.xsl")  );
    // create sources for both files
    Source xmlSource = new StreamSource(xmlFile);
    Source xslSource = new StreamSource(xslFile);
    // get new instance of factory class
    TransformerFactory transFact = TransformerFactory.newInstance();
    Transformer trans;  
    // write HTML-output
    FileOutputStream out = new FileOutputStream( "<custom path in KM>" );
    // get new transformer for XSL-File
    trans = transFact.newTransformer(xslSource);
    // transform XML-File to HTML-File
    trans.transform(xmlSource, new StreamResult(out));
    // flush and close OutputStream
    out.flush();
    out.close();
    I don't know exactly if this will work, but try it out.
    Best regards,
    Denis

  • A black airplay info window floats around on my HDTV screen when sending audio content via airplay up to sound system w Apple TV.  How can I get rid of this?

    A black airplay info window floats around on my HDTV screen when sending audio content via airplay up to sound system w Apple TV.  How can I get rid of this?

    Had this happen to me after a recent update, was super annoying.  To turn off, go to Settings > AirPlay > Conference Room Display > Off.

  • To get Document content via RFC

    Hi forum,
    I have a small bsp-application to show documents for a material-number stored in the SAP-tresor (via ftp).
    The SAP-tresor is installed in the core-system, the WEB-AS is another server.
    I developed a remote-enabled function module called get_doc_content_rfc. This function module reads some customizing to get all values for calling the function module CV120_DOC_CHECKOUT_TO_TABLE.
    Now, when I call my get_doc_content_rfc in the core-system, I get the document content via the function module CV120_DOC_CHECKOUT_TO_TABLE. When I call my function module get_doc_content_rfc form the developer-system via RFC in the core-system, the function module CV120_DOC_CHECKOUT_TO_TABLE dosn't deliver the document content.
    In the debugger, I can see, the function module CV120_DOC_CHECKOUT_TO_TABLE opens a ftp-connection to the server with the tresor and then reads the document content. Do I use my function module get_doc_content_rfc in the core-sysem, the ftp-connect can be established. Do I use my function module get_doc_content_rfc via RFC to the core-system, the ftp-connection opend by the function module CV120_DOC_CHECKOUT_TO_TABLE gets a time out.
    Now, my question. what can I do, to get the document content via RFC from the core-system.
    Thank you for help
    Meinolf

    Hi,
    Did you check RFC Adresses in SM59 both of two systems.
    May be different.
    ibrahim

  • Reading a xml file and Extract content of xml tags

    Hi,
    I need a InDesign script to Extract content of xml tags by reading a local xml file. And stamping the content of xml on InDesign Text frame.
    My sample xml is as follows .
    <events type="array">
    <event> 
    <aktiv_jn>J</aktiv_jn> 
    <enetpulse_id>1712408</enetpulse_id>
    <event_id>65974</event_id>
    <hjemmehold>AZ Alkmaar</hjemmehold>
    <id>93</id>
    <kickoff>2014-08-17T12:30:00+01:00</kickoff>
    <land_id>140</land_id>
    <land_navn>Holland</land_navn>
    <liga_id>13684</liga_id>
    <liga_navn>Eredivisie</liga_navn>
    <livebetting_jn>J</livebetting_jn>
    <marked_id>2897740</marked_id>
    <marked_nummer>138</marked_nummer>
    <marked_tekst>AZ Alkmaar - Ajax</marked_tekst>
    <moderkamp_jn>J</moderkamp_jn>
    <ob_bet_type>MR</ob_bet_type>
    <odds_1>2.95</odds_1>
    <odds_2>2.25</odds_2>
    <odds_x>3.35</odds_x>
    <program_slut>2014-08-18T23:59:00+01:00</program_slut>
    <program_start>2014-08-15T00:00:00+01:00</program_start>
    <resultat>2</resultat>
    <spilstop_dato_tid>2014-08-17T12:30:00+01:00</spilstop_dato_tid>
    <sport_id>21</sport_id>
    <sport_navn>Fodbold</sport_navn>
    <taerskel nil="true"/>
    <udehold>Ajax</udehold>
    <udfald_1_id>9661951</udfald_1_id>
    <udfald_2_id>9661953</udfald_2_id>
    <udfald_x_id>9661952</udfald_x_id>
    </event>
    </events>
    And on my Indesign Page upon execution of script: I need text like,
    land_navn:     Holland
    odds_1:     2.95
    odds_2:     2.25
    odds_x:     3.35

    Hi,
    Try:

  • I have just upgraded from an iPhone 3Gs to an iPhone 5. I am trying to transfer all my content via icloud but having problems logging in - it keeps telling me the server is not responding. Nano sim hasn't yet been registered - does this affect things?

    i have just upgraded from an iPhone 3Gs to an iPhone 5. I am trying to transfer all my content via icloud but having problems logging in - it keeps telling me the server is not responding. Nano sim hasn't yet been registered - does this affect things?

    Have you activated your phone with your carrier yet?

  • Which cable (original apple usb or bmw y) shall i use to connect my 4th gen iPod photo 60 gb to bmw f10 (with com box) is it going to work with the apple usb cable and how long does it take till I can access the 33gb content via the bmw display?

    Which cable (original apple usb or bmw y) shall I use to connect my 4th gen iPod photo 60 gb (old but still working ok) to bmw f10 (with com box), build december 2010 > is it going to work with the apple usb cable and if so, how long does it take till I should be able to access the 33gb content via the bmw display?
    Alternatively: How long does it take if I would have to use the bmw y cable till I can access the 33gb content via the bmw display?

    Which cable (original apple usb or bmw y) shall I use to connect my 4th gen iPod photo 60 gb (old but still working ok) to bmw f10 (with com box), build december 2010 > is it going to work with the apple usb cable and if so, how long does it take till I should be able to access the 33gb content via the bmw display?
    Alternatively: How long does it take if I would have to use the bmw y cable till I can access the 33gb content via the bmw display?

  • PDF content disappears during tagging process

    Have PDF document but no source document.  Automatic tagging step ("Add tags to document") in Acrobat 9 Pro causes some of the content (some but not all Paths) to disappear from the page visually and from the Content panel, and changes the positioning of some but not all of the text content.  Observation of the Content before tagging does not reveal any special feature of the Paths that disappear.  I am experienced in the use of the TouchUp Reading Order tool, but have not tried much manual tagging yet in this document.
    Any suggestions about what might be wrong, and a work-around?
    Especially useful would be a way to modify the content before auto tagging, because the work-arounds that we have considered so far are labor-intensive and error-prone.  (E.g., conversion of each problem page to an image, then using OCR to identify text content.)
    This problem is not identical to another problem with disappearing content, namely, occasional visual disappearance of content upon creation of artifacts.  In that case, the content generally has not disappeared from the Content panel, but is hidden on the visual page by content that is rendered later.  The solution is to move the artifact objects in the Content panel, so that they are listed first on the page and are rendered first.

    Jasmin,
    ]yes, when i open it in browser then i dont face this issue. but when i open not in browser then it is showing error.
    I have added entire features of reader extension but still i get this error message.\
    Regards
    Sunil

  • Document indesign in xml – stroke and fill the information content in a tag

    I want stroke and fill the information contented in a tag. Inside this tag, could be several paragraphs with different styles in paragraph or character.

    I want stroke and fill the information contented in a tag. Inside this tag, could be several paragraphs with different styles in paragraph or character.

  • How can I remove all content between two tags using Find/Replace regular expressions?

    This one is driving me bonkers...  I'm relatively new to regular expressions, but I'm trying to get Dreamweaver to remove all content between two tags in an XML document.  For example, let's say I have the following XML:
    <custom>
    <![CDATA[<p>Some text</p>
    <p>Some more text</p>]]>
    </custom>
    I'd like to do a Find/Replace that produces:
    <custom>
    </custom>
    In essence, I'd like to strip all of the content between two tags.  Ideally, I'd like to know how to strip the CDATA content as well, to return the following:
    <custom>
    <![CDATA[]]>
    </custom>
    I'd much appreciate any suggestions on accomplishing this.
    Many thanks!

    Thanks much for your response.  I found David's article to be a little thin with respect to examples using quantifiers in coordination with the wildcard metacharacters; however, I was able to cobble together a working expression through trial and error using the information he presented.  For posterity, here’s the solution:
    Find:
    <custom>[\d\D]*?</custom>
    Replace:
    <custom>
    <![CDATA[]]>
    </custom>
    I believe this literally translates to:
    [] = find anything in this range/character class
    \d = find any digit character (i.e. any number)
    \D = find any non-digit character (i.e. anything except numbers)
    *? = match zero or more times, but as few times as possible (i.e. match multiple characters per instance, but only match one instance at a time, or none at all)
    I’m still not sure how to effectively utilize the . wildcard.  For example, the following expression will not find content that ends with a number:
    <custom>.*?[\D]*?</ custom >
    I'm presuming this is because numbers aren't included in the \D metacharacter; however, shouldn't numbers be picked up by the .*? expression?

  • HTML content layout substitution tags

    Hi,
    We have a multi-language Portal 10.1.4 and use HTML content layout substitution tags in a HTML Template. The problem is that we would like to use the ITEM.PUBLISHDATE.LABEL and the ITEM.UPDATESDATE.LABEL tags but the text rendered isn't exactly what we would like to get (f.e. in English it's 'Publish Date' and in French it's 'Date de mise à jour').
    I looked in the documentation and found that the text rendered correspond to the display name of the attribut (not 100% sure of this). But, those attributs are in the Shared Objects and we can't modify them.
    1. We would like to modify the display name of those attributs (both in French and in English) or find any other way to make it.
    2. We also want to apply an other format to the date retreived with the ITEM.PUBLISHDATE.VALUE and the ITEM.UPDATEDDATE.VALUE tags.
    Can someone help us with those issues ?
    David

    Yes, we added languages in the Translation tab of the shared object pagegroup properties.

Maybe you are looking for

  • OID Provisioning issue

    I have a case where a user did not get updated in OID when his account got modified in OIM. This lead to a data mismatch between OID and OIM. Can I write a task to send his info into OID. Thanks M

  • Apple insider say there are Two new trojan horses threaten Mac software

    Yes it says pirates downloading iworks etc, and before you all ask no I don't have it. Either this is a scam or is this the first Mac trojan? Im woried as I have never had anything bad happen to my Mac. Shall i get anti virus? I dont use torrent site

  • 14.2 update failed

    then i get an error msg that starts with "can't find entry point". Now of course Photoshop won't launch

  • I need a tutor!  Earn some $ while helping me get out of FB4 hell.

    I'm following along the detailed examples for weeks.  They work.  I try to morph what the examples taught me into a real project... not working. I'm not understanding some of the mose basic concepts of data services, value objects, variable life span

  • Ipod touch Apps keep dropping calls

    My Ipod touch texting/calling apps keep dropping. I have 3 apps (Talkatone, textme and text free) and all 3 of them keep dropping calls even tho It has a excellent connection to the wifi. It just started doing this a few weeks ago Any help?