Defining Server Caching Options for XML?

Hi all...
Using CS3, I've created an XSLT fragment to consume an RSS
feed, and inserted that in a homepage, following this tutorial for
DW8:
http://www.adobe.com/devnet/dreamweaver/articles/dw_xsl_rss.html
It works great, but I'm curious... what do I edit (or add) to
define caching of the XML on the server? I want to limit it to an
update every few hours or so, to minimize bandwith usage.
Thanks for any help, kinda learning this all as I go....
Oh, and it's a .cfm page, but it's not live yet...

Nobody knows what Dizzy means. Don't be fooled by his
response. He is a
spammer/script kiddy for sure.
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
==================
"StearmanDriver" <[email protected]> wrote
in message
news:g3knj3$ojr$[email protected]..
> Hey, thanks for the response, Dizzy. I'm not quite sure
what you mean
> though.
> Do you mean the answer can be found in THIS forum? If
so, do you know
> where,
> or what search terms would be used to find it? 'Cause I
searched quite a
> bit,
> and couldn't find anything relevant. That's probably
because I don't know
> the
> proper terms to search for though.
>
> Thanks for clarifying...
>

Similar Messages

  • "In-Memory Database Cache" option for Oracle 10g Enterprise Edition

    Hi,
    In one of our applications, we are using TimesTen 5.1.24 and Oracle 9i
    databases (platform - Solaris 9i).
    TimesTen holds application information which needs to be accessed quickly
    and Oracle 9i is a master application database.
    Now we are looking at an option of migrating from Oracle 9i to Oracle 10g
    database. While exploring about Oracle 10g features, came to know about
    "In-Memory Database Cache" option for Oracle Enterprise Edition. This made
    me to think about using Oracle 10g Enterprise Edition with "In-Memory
    Database Cache" option for our application.
    Following are the advantages that I could visualize by adopting the
    above-mentioned approach:
    1. Data reconciliation between Oracle and TimesTen is not required (i.e.
    data can be maintained only in Oracle tables and for caching "In-Memory
    Database Cache" can be used)
    2. Data maintenance is easy and gives one view access to data
    I have following queries regarding the above-mentioned solution:
    1. What is the difference between "TimesTen In-Memory Database" and
    "In-Memory Database Cache" in terms of features and licensing model?
    2. Is "In-Memory Database Cache" option integrated with Oracle 10g
    installable or a separate installable (i.e. TimesTen installable with only
    cache feature)?
    3. Is "In-Memory Database Cache" option same as that of "TimesTen Cache
    Connect to Oracle" option in TimesTen In-Memory Database?
    4. After integrating "In-Memory Database Cache" option with Oracle 10g, data
    access will happen only through Oracle sqlplus or OCI calls. Am I right here
    in making this statement?
    5. Is it possible to cache the result set of a join query in "In-Memory
    Database Cache"?
    In "Options and Packs" chapter in Oracle documentation
    (http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm
    #CIHJJBGA), I encountered the following statement:
    "For the purposes of licensing Oracle In-Memory Database Cache, only the
    processors on which the TimesTen In-Memory Database component of the
    In-Memory Database Cache software is installed and/or running are counted
    for the purpose of determining the number of licenses required."
    We have servers with the following configuration. Is there a way to get the
    count of processors on which the Cache software could be installed and/or
    running? Please assist.
    Production box with 12 core 2 duo processors (24 cores)
    Pre-production box with 8 core 2 duo processors (16 cores)
    Development and test box with 2 single chip processors
    Development and test box with 4 single chip processors
    Development and test box with 6 single chip processors
    Thanks & Regards,
    Vijay

    Hi Vijay,
    regarding your questions:
    1. What is the difference between "TimesTen In-Memory Database" and
    "In-Memory Database Cache" in terms of features and licensing model?
    ==> Product has just been renamed and integrated better with the Oracle database - Times-Ten == In-Memory-Cache-Database
    2. Is "In-Memory Database Cache" option integrated with Oracle 10g
    installable or a separate installable (i.e. TimesTen installable with only
    cache feature)?
    ==> Seperate Installation
    3. Is "In-Memory Database Cache" option same as that of "TimesTen Cache
    Connect to Oracle" option in TimesTen In-Memory Database?
    ==> Please have a look here: http://www.oracle.com/technology/products/timesten/quickstart/cc_qs_index.html
    This explains the differences.
    4. After integrating "In-Memory Database Cache" option with Oracle 10g, data
    access will happen only through Oracle sqlplus or OCI calls. Am I right here
    in making this statement?
    ==> Please see above mentioned papers
    5. Is it possible to cache the result set of a join query in "In-Memory
    Database Cache"?
    ==> Again ... ;-)
    Kind regards
    Mike

  • How to atomate caching options for all pages?

    Hi,
    Customer request:
    Does there exist a means of automating caching option for all the pages of a page group or a portal?
    Thanks a lot for your kind help.
    Best regards.
    Jean-Francois

    Depends on the view technology you´re using for JSF.
    If you're using JSP, use jsp:include.
    If you're using Facelets, use ui:include.
    Consult the documentation of the view technology used for details.

  • Options for XML parsing in WAS 6.20 ABAP and higher

    Hello Experts,
       What options are available to me for working with XML documents in SAP R/3 4.7? I am working on SAP WAS 6.20 ABAP and was wondering which tools/techniques I can use for parsing XML files?
       I am developing an ABAP program and primarily need to be able to parse XML documents. I need to be able to traverse up and down their data structures (trees/nodes/elements/etc.).
       In SAP R/3 4.6 I used to use the iXML library but it seems that there are many advanced and powerful features included in SAP WAS 6.20 ABAP and up.
       Could someone please give me a summary of and their opinions on some these "newer" options?
    Thanks,
    - Vik.

    Hi Vik,
       There are two ways you can parse/interpret XML documents in ABAP -
       1. iXML - Which you have already used in 46 release. It wasn't easy to use set of functions but still it was possible to parse documents using iXML library. In WAS 6.20 you can now use class CL_XML_DOCUMENT which is much more easier to use than iXML library. It is bilt on top of iXML using the same DOM model.
      2. XSLT - Useing XSLT_TOOLS or XSLT transaction you can create XSLT programs to transform XML to ABAP data objects and then work with ABAP data objects. In this case you have the option of using some other tool like XMLSPY to write the XSLT and then copy that to SAP.
    From your post it looks like you will probably have to traverse the tree in unpridictable way, probably DOM based parsing using CL_XML_DOCUMENT is more suitable for you.
    Cheers,
    Sanjeev

  • I'd like to see a floating license option for XML Author.

    I am an experienced structured FM user. I am trying to set up a structured authoring environment for a small engineering firm. I write and edit documentation for aviation engineering projects. I work with six to eight engineers and designers who contribute content to our technical publications.
    I want to minimize authoring overhead by eliminating manual formatting from my contributor workflow. Ideally, I would manage EDDs, DTDs, templates etc. and deploy several XML author licenses to collect content. However, the cost of an XML author license per each potential contributor is prohibitive for my small firm. I would love to be able to deploy XML Author through Creative Cloud either as a single-app license or as part of a team license.
    Several other authoring platforms including Flare (no structured support, I know) offer a floating license option. I think a floating license option would make the Structured Frame/XML Author combo more competitive for Adobe and more attractive to small firms like mine.

    Tell someone who make iphone apps.

  • Defining server specific properties for EJB app

    I need to define some properties for my app which have different values depending on the server to which I deploy. Eg. the LDAP server name and port.
    When I deploy to my development server it should find the local values of the properties, when I deploy to the live server it needs a different set of values.
    What is the simplest way to do this? I obviously don't want the properties to be part of my deployment.
    Rob

    EJBs are not allowed to read or write files. But they are allowed to read from the JNDI context. The idea is to provide a symbolic name, ie <resource-env-ref>, which contains the value you need.
    The startup-classes which could set this value in the JNDI context are best documented in the OC4J User's Guide.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • GW7 server recovery options for users mailbox

    Good morning,
    we need to restore a users mailbox from a GW7 server. By now we have recovered the (linux) server running the groupwise domain into a virtual box.
    In order to mount the domain it appears that i need edirectory credentials. Q: Is it possible to access a users mail account without restoring the edirectory server as well? Or maybe i can simply copy some datafiles and try to open them with a gw client??
    Thanks for your comments,
    Armin

    armino wrote:
    > Q: Is it possible to access a users mail account without restoring the
    > edirectory server as well? Or maybe i can simply copy some datafiles and try
    > to open them with a gw client??
    You could do it "the old fashioned way". Restore the PO directory structure,
    and then run a POA against that location. Log in as the user and archive
    everything. There is a general PDF about this here -
    http://www.caledonia.net/files/restore-users.pdf
    Danita
    Novell Knowledge Partner
    Upgrading to GroupWise 2012? http://www.caledonia.net/blog/?p=514
    http://www.caledonia.net/gw12upg.html

  • Caching option for background/navigator graphics

    I'm publishing my webpages to .MAC and I'm fairly happy with the service. The speed viewing the pages is somewhat slow, which brings me to my question:
    All my pages share the same theme and navigation bar. But it seems that the way iWeb generates the pages, they don't share the same image file which causes the 'same' (as in a copy of it) image file to be loaded again and again when following the links within my page. If there would be an option that all the pages share the same image file for identical images (and iWeb should now that) on the webserver for the same image instead of using a copy, the pages would load much faster since graphics down have to be reloaded.
    Is there an option to turn this on, or some trick to force iWeb to generate it that way? Modifying the generated pages by hand after generation is not an option since I have just too many pages on my site for doing that.
    (and yes: I have the latest update of everything :-))
    thanks
    -Uwe

    The "trouble" belongs to iWeb and to the method used to generate page code.
    The same image may be used on 100 pages and it would download as "new" each time because the path to the file is different for each page.
    The "fix" is a new folder structure for iWeb generated page code that could store commonly shared images in just one folder (root of your published Site).
    Maybe in iWeb version 2?

  • Define the start options for a 3D-PDF over a link

    How can I set parameters into the html-sourcecode to open a 3D-PDF (or there are other solutions)?
    For example you can set a parameter like "*.pdf#view=FitView".
    I want the following things:
    - by opening the PDF the "Modellhierarchie" and the "Toolbar" should be shown
    - the 3D-modell and the Adobe-Reader should fit the window
    WbR
    Kyrill

    Hi, beejasaurus
    I found a possible kluge from this discussion here
    https://forums.adobe.com/thread/1008480
    Create the hyperlinks in Word, save the file
    Open that file with Pages, export as PDF.
    The links work from that PDF.
    Note, I did not try this with TOC but it worked with hyperlinks embedded in the Word document

  • Server connectivity options for Storage

    Dear Gurus,
    We have existing servers in our environment with HBAs and NICs. We are not planning to use Unified fabric (CNA etc) based architecture. We want our storage network to be separated from IP network.
    However, can I connect HBA of my servers to FC SFP in FEX or Nexus 5Ks. If yes, how would be the subsequent connectivity towards SAN switch.
    Any pointer would be greatly appreciated. Thanks in advance.

    N5K can be configured to work as a pure Ethernet, pure FC, or hybrid FC/Ethernet switch support native FC.
    see eg. https://supportforums.cisco.com/thread/2236539
    FEX doesn't support native FC !
    From N5k, you can create ISL links to a FC fabric, be it MDS,.....
    Here a list of N5k FC features; what is not supported is IVR ! BB credits are 240 !

  • For XML - Oracle Equivalent:

    Hey people,
    I was wondering... SQL server has the 'for xml path' clause; does oracle have its equivalent?
    I wasn't able to find any leads online. Thought the experts here'd know.
    Thanks.
    Edited by: user10175043 on May 23, 2011 11:06 AM

    See this,
    XML parent child records
    G.

  • Oracle equivalent of "for xml auto, elements"

    Apologies if this is a bit of a "newbie" question.
    I have a .NET application that makes extensive use of the SQL Server syntax "for xml auto, elements" to retrieve data as an XML stream and then merge this with XSL to produce reports.
    I would like to support both Oracle and SQL Server. Is there a simple way to do this without writing an Oracle specific interface and rewriting all my SQL?

    Hello.
    I am struggling with this, so here are some examples:
    MS SQL Server will allow "for XML auto, elements" or "for XML raw" to be added to the end of a SQL statement to return an XML stream instead of a data set. Taking the MS example Northwind database, the query:
    "select CompanyName, ContactName from Customers where CustomerId like 'A%' for XML raw"
    would return the following stream:
    <row CompanyName="Alfreds Futterkiste" ContactName="Maria Anders"/>
    <row CompanyName="Ana Trujillo Emparedados y helados" ContactName="Ana Trujillo"/>
    <row CompanyName="Antonio Moreno Taquer&#237;a" ContactName="Antonio Moreno"/>
    <row CompanyName="Around the Horn" ContactName="Thomas Hardy"/>
    If you were to change the SQL to be:
    "select CompanyName, ContactName from Customers where CustomerId like 'A%' for XML auto, elements"
    ...you would get back:
    <Customers><CompanyName>Alfreds Futterkiste</CompanyName><ContactName>Maria Anders</ContactName></Customers><Customers><CompanyName>Ana Trujillo Emparedados y helados</CompanyName><ContactName>Ana Trujillo</ContactName></Customers><Customers><CompanyName>Antonio Moreno Taquer&#237;a</CompanyName><ContactName>Antonio Moreno</ContactName></Customers><Customers><CompanyName>Around the Horn</CompanyName><ContactName>Thomas Hardy</ContactName></Customers>
    I have found this useful when merging with XSL to create reports and/or pages on the fly based on queries. I have recently joined OPN and am looking to migrate my applications to Oracle and this is a key factor for me.
    All help gratefully received.

  • Keep cache option

    could anyone explain me if i use keep cache option for the static table, whether it'll have impact to the SGA memory?(I believe the table stored in cache buffer)

    According to Oracle document "A good candidate for a segment to put into the KEEP pool is a segment that is smaller than 10% of the size of the DEFAULT buffer pool and has incurred at least 1% of the total I/Os in the system"
    so if u load a large table to buffer cache, it will occupy many memory, which could be free for other process. In turn, insufficient buffer cache occurs, the database performance will be worsen.

  • Cache Option and Legacy apps

    Hi,
    I've been reading a lot from TimesTen and the Cache Option for the oracle Database but I have a question.
    I have a legacy application that uses Oracle DB and I'd like to use the In-Memory Cache Option; do I need to modify anything in the code of my app?
    This is important as I don't have the code for the app.
    Thank you.

    "do I need to modify anything in the code of my app?"
    TimesTen 11.2.1 added a number of features that enable a legacy application to run against TimesTen cache without modification to the application code (or with little modification). We now support the mainstream Oracle interfaces, such as OCI, Pro*C, PL/SQL. But we are not sure whether you need to modify your application unless you can share with us some details on your application. For example, which interface your application uses? Does your application use some Oracle-database specific features that the Cache option does not support?
    If it's impossible for you to get these details, you may simply try to install the TimesTen cache and run your application against it to figure out.

  • What should i put in Schme while creating Data server for XML

    I am new to XML and ODI also.
    I was trying to create a data server for XML technology.
    I don't know what should i specify as a schmea in JDBC URL.
    e.g. jdbc:snps:xml?f=../demo/xml/1/file.xml&ro=false&ldoc=true&case_sens=true&s=LEO_FIZ&dod=true
    here schema is LEO_FIZ, so my doubts is LEO_FIZ is a database schema or what ??
    Please help me out.

    The schema referred to here is going to be used by the XML driver for the instantiation of the temporary schema used for the xml data. It can be any name, I recommend you keep it short, as if you use an external database for the XML data instantiation it is used as a part of the "table" names.

Maybe you are looking for

  • Generated pdf file from 'ddx Assemble' has same properties as first file in ddx

    Why does Assembler service preserve the PDF Producer and Application of the resulttant pdf output file same as the first pdf file? e.g. see below if file1.pdf has PDF Producer as "Company1" and Application as "App1' the result file out.pdf has same P

  • USB Adapter for PCMCIA on 12" ?

    Hi Is there any way to apply a PCMCIA card to a 12" Powerbook, eg USB adapter Thanks Daniel

  • Grub error after install Arch x86_64

    i install arch on my second laptop and everything works fine so im install on my main laptop but grub can boot my main laptop have 2 HDD, first i have windows seven and other partions on second i have arch64 at install no errors are show but when i r

  • BC4J; OC4J;JSP;JD323 - deployment on Solaris 2.6

    I am trying to deploy a BC4J JSP application to OC4J so that we can take advantage of the SErvlet API 2.2 - our sessions persistent crash on JServ. The so-called guidance on OTN viz http://otn.oracle.com/products/jdev/howtos/bc4jdeployment.html isn't

  • Photostream storage question(s)

    Hey. I have a couple of questions regarding photostream, should I choose to share a photostream with friends: 1. Is there a photo limit? i.e. My personal photostream allows up to 1,000 photos. Is this the same with shared streams? 2. If I was to shar