Any RTD example

Hi everyone,
I've implemented getting started with oracle rtd (CrossSell example). i want to implement one more example. are there any step by step example about rtd?
Thanks.

Levent,
As far as I am aware there is only one RTD training course available; and that is the CrossSell example you refer to.
Regards,
Lukas Vermeer

Similar Messages

  • Any setting example in congig.xml to create a NTRealm?

    Hi,
    Is there any setting example(in config.xml) for NTRealm since I am not able
    to create one from the admin console?
    Thanks!

    Hi,
    Is there any setting example(in config.xml) for NTRealm since I am not able
    to create one from the admin console?
    Thanks!

  • Any Digester Examples

    I am trying to use Digester to parse an XML file. I am having trouble finding complete examples on how to impliment it.
    I'm just trying to parse a simple XML file with the following syntax:
    <mappings>     
    &#160;&#160;&#160;&#160;&#160;<variable name="string"> string </variable>
    &#160;&#160;&#160;&#160;&#160;<partial match="string"     replace="string" />
    &#160;&#160;&#160;&#160;&#160;<special match="string" class="class name" />
    &#160;&#160;&#160;&#160;&#160;<complete match="string" replace="string" />
    </mappings>
    I need it to grab both the attributes and the values. Does anybody know how to do this? Are there any good examples on the web?

    Try to use a sax parser (http://www.saxproject.org/)
    the only thing you have to do is create a class (MyHandler) extending a ContentHandler and implementing the methods
    void characters(char[] ch, int start, int length)
    void endDocument()
    void endElement(String uri, String localName, String qName)
    void startDocument()
    void startElement(String uri, String localName, String qName, Attributes atts)
    then,
    XMLReader r = XMLReaderFactory.createXMLReader();
    r.setContentHandler(new MyHandler());
    try {
    r.parse("http://www.foo.com/mydoc.xml");
    } catch (IOException e) {
    System.err.println("I/O exception reading XML document");
    } catch (SAXException e) {
    System.err.println("XML exception reading document.");
    any element begin/end/characters events will call the methods defined into MyHandler class...

  • Any good example of IMAQ Correlation vi.

    Hello,
    I am trying to understand the use of IMAQ Correlation VI for the purpose of feature tracking among the series of images for my experiment using Normalized Cross-Correlation technique. Kindly see the attached VI, it just not making any sense to me. Kindly suggest and any good example will be very helpful. Thanks in advance.
    Attachments:
    Correlation-1.vi ‏61 KB

    It is a little hard to tell what you are trying to do from your explanation. You would have a much higher success rate if you posted on the Machine Vision board in the Most Active Hardware Boards. Also, if you post an example it is good practice to state the version of software used. It is also helpful to save it to a previous version to allow a broader audience to see the example.
    You stated that you have a "purpose of feature tracking among the series of images for my experiment using Normalized Cross-Correlation technique." Could you post this with a more detailed explanation on the Machine Vision board? Also to explain what type of suggestions or advice you are looking for from the example that you posted would allow myself and others on the forums to understand what you are looking for here.
    Vince M
    Applications Engineer

  • MQ + OpenLdap: Any working example of LDAP configuration?

    MQ + OpenLdap: Any working example of [LDAP configuration], [LDIF initial data] and [imobjmgr addTopicFactory/addTopic command] files ?
    I'm using Sun MQ3.5 + OpenLdap2.2.20 as jndi remote binding mechanism.
    I've unsuccessfuly tryed to add a Topic Factory!
    Running the command
         imqobjmgr -i add_ldap_topic_factory.poperties
    I get such an exception:
         javax.naming.OperationNotSupportedException:
         [LDAP: error code 53 - no global superior knowledge];
         remaining name 'cn=myTopicConnectionFactory'
    This is the test configuration adopted using rootdn user to write to LDAP repository:
    #slapd.conf
    include /usr/local/etc/openldap/schema/core.schema
    database     bdb
    suffix          "dc=imq,dc=com"
    rootdn          "cn=Manager,dc=imq,dc=com"
    rootpw          secret
    directory     /usr/local/etc/openldap/var/openldap-data
    index     objectClass     eq
    #test.ldif
    dn: dc=imq,dc=com
    objectClass: dcObject
    objectClass: organization
    dc: imq
    o: imq
    #add_ldap_topic_factory.poperties
    version=2.0
    cmdtype=add
    obj.type=tf
    obj.lookupName=cn=myTopicConnectionFactory
    obj.attrs.imqAddressList=mq://localhost:7676/jms
    objstore.attrs.java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory
    objstore.attrs.java.naming.provider.url=ldap://localhost:389/o=imq
    objstore.attrs.java.naming.security.principal=cn=Manager,dc=imq,dc=com
    objstore.attrs.java.naming.security.credentials=secret
    objstore.attrs.java.naming.security.authentication=simple
    Thanks for any suggestion,
    Silvano

    Agreed.
    I've been wanting to test the steps and write a tech article on this
    and post it to somewhere on sunsolve.sun.com but have not had
    time yet.
    In any case, the instructions Ken-shi gave are below including
    the 3 files (etang.ldif objectstore.properties slapd.conf). Not sure
    how messy this posting can get due to size of files.
    I'd much rather point you to a sunsolve article but don't want
    to make you wait. When I do post the sunsolve article, this thread
    will be updated with a ptr to it.
    ===Begin instructions===
    Attached please see my working configuation files.
    1.Modify your OpenLdap configuration. (see slapd.conf)
    start OpenLdap: ./slapd
    2.Modify you initial data.( see etang.ldif)
    load initial data: ldapadd -x -D "cn=Manager,dc=etang,dc=com" -W -f
    etang.ldif
    3.ObjectStore properties ( see objectstore.properties )
    create your object store with "Administration" GUI on windows;
    while creating destinations or connection factories, be sure that the
    lookup names start with "cn=".
    ===End instructions===
    ===Begin etang.ldif===
    dn: dc=etang,dc=com
    objectClass: dcObject
    objectClass: organization
    dc: etang
    o: Etang Corporation
    description: The etang corporation
    dn: cn=Manager,dc=etang,dc=com
    objectClass: organizationalRole
    cn: Manager
    description: Directory Manager
    dn: o=IMQ,dc=etang,dc=com
    objectClass: organization
    o: IMQ
    dn: ou=imqusers,o=IMQ,dc=etang,dc=com
    objectClass: organizationalUnit
    ou: imqusers
    dn: cn=admin,ou=imqusers,o=IMQ,dc=etang,dc=com
    objectClass: person
    cn: admin
    sn: admin
    userPassword: admin
    dn: cn=guest,ou=imqusers,o=IMQ,dc=etang,dc=com
    objectClass: person
    cn: guest
    sn: guest
    userPassword: guest
    ===End etang.ldif===
    ===Begin objectstore.properties===
    java.naming.provider.url ldap://10.1.0.195:389/o=IMQ,dc=etang,dc=com
    java.naming.factory.initial com.sun.jndi.ldap.LdapCtxFactory
    java.naming.security.principal cn=admin,ou=imqusers,o=IMQ,dc=etang,dc=com
    java.naming.security.authentication simple
    java.naming.security.credentials admin
    ===End objectstore.properties===
    ===Begin slapd.conf===
    # See slapd.conf(5) for details on configuration options.
    # This file should NOT be world readable.
    include          /usr/local/openldap/etc/schema/core.schema
    include /usr/local/openldap/etc/schema/cosine.schema
    include /usr/local/openldap/etc/schema/inetorgperson.schema
    include /usr/local/openldap/etc/schema/dyngroup.schema
    include /usr/local/openldap/etc/schema/java.schema
    include /usr/local/openldap/etc/schema/nis.schema
    include /usr/local/openldap/etc/schema/misc.schema
    # Define global ACLs to disable default read access.
    # Do not enable referrals until AFTER you have a working directory
    # service AND an understanding of referrals.
    #referral     ldap://root.openldap.org
    pidfile          /usr/local/openldap/var/run/slapd.pid
    argsfile     /usr/local/openldap/var/run/slapd.args
    # Load dynamic backend modules:
    # modulepath     /usr/local/openldap/libexec
    # moduleload     back_bdb.la
    # moduleload     back_ldap.la
    # moduleload     back_ldbm.la
    # moduleload     back_passwd.la
    # moduleload     back_shell.la
    # Sample security restrictions
    #     Require integrity protection (prevent hijacking)
    #     Require 112-bit (3DES or better) encryption for updates
    #     Require 63-bit encryption for simple bind
    # security ssf=1 update_ssf=112 simple_bind=64
    # Sample access control policy:
    #     Root DSE: allow anyone to read it
    #     Subschema (sub)entry DSE: allow anyone to read it
    #     Other DSEs:
    #          Allow self write access
    #          Allow authenticated users read access
    #          Allow anonymous users to authenticate
    #     Directives needed to implement policy:
    # access to dn.base="" by * read
    # access to dn.base="cn=Subschema" by * read
    # access to *
    #     by self write
    #     by users read
    #     by anonymous auth
    # if no access controls are present, the default policy
    # allows anyone and everyone to read anything but restricts
    # updates to rootdn. (e.g., "access to * by * read")
    # rootdn can always read and write EVERYTHING!
    access to * by * write
    # ldbm database definitions
    database     bdb
    suffix          "dc=etang,dc=com"
    rootdn          "cn=Manager,dc=etang,dc=com"
    # Cleartext passwords, especially for the rootdn, should
    # be avoid. See slappasswd(8) and slapd.conf(5) for details.
    # Use of strong authentication encouraged.
    rootpw          secret
    # The database directory MUST exist prior to running slapd AND
    # should only be accessible by the slapd and slap tools.
    # Mode 700 recommended.
    directory     /usr/local/openldap/var/openldap-data
    # Indices to maintain
    index     objectClass     eq
    ===End slapd.conf===

  • Is there any code example for "Web Survey"?

    Hi buddies,
    In the standard SRM Web Survey scenario, the experts submit questionnaire online. But our custmer want it offline.
    So we use offline Adobe Forms, the problem is after we get the data by uploading the offline PDF, how we put the data into the standard Web Survey. Is there any function moudle , BAPI, class for this purpose?  Is there any code example?
    Thanks!
    Hao

    I have tried to write some report using pch logical database and successed.
    在报表自身中,从 GET OBJEC 点,作为规定,数据库驱动程序将文件 PLOG 中的选定的选择恢复为规定的并检查权限。
    指令 TABLES 中结构声明是前提。若除了结构 OBJEC,还定义结构 GDSTR,则将结构评估的参数添加到标准选择屏幕。这可以通过评估路径进行结构评估。
    REPORT  ZPHC_TEST.
    TABLES : objec.
    infotypes: 1000.
    INITIALIZATION.
    START-OF-SELECTION.
    get objec.
    WRITE : p1000-objid.
    end-of-SELECTION.

  • Any Sample Examples on Web Center Sites .

    Hi ,
    can you please provide any sample example which gives end to end working on a website. I couldnt find even a single blog on this . please help us
    thank you,
    Sashank P.

    You should search for the old name ("FatWire").
    I found two resources - not exactly end-to-end, but they might be helpful:
    http://www.tomred.net/fatwire/
    http://www.sciabarra.com/fatwire/category/tutorial/

  • Is there any Calendar examples available with anything like Outlook?

    Hi,
    I'm going to be creating a Calendar module to schedule tasks, meetings, etc.
    Is there any Calendar examples available with anything like Outlook?
    Thank you, Bill

    Earl,
    Send me the development link etc and I'll look at the Javascript errors.
    [email protected]
    Input: My thought was to have a Month area with the choices you have AND then be able to select the weekly choices TOO. The the day of the week TOO..
    Ex: select June, July, Aug
    Week 1,3,5 (if exists) or Weekly
    If this is a copy, which I imagine it is, we could both add to it... or we could import another version and I could add onto it there...
    What do you think... build on each others ideas... both save time in the long run??
    Let me know, Bill

  • HelloWorld, nor any SDK examples work for Me. :(

    Hi there.
    Feebly trying work with the Illustrator CS3 SDK. I wanted to develop an Illustrator plugin, but for now will settle on a simple HelloWorld example. I am hoping someone can just point me in the right direction. Feel I am ready to give up before I even get started. Here are the dilemmas...
    In the SDK docs, none of the tutorials or examples work for me. For the most part, nothing compiles, I get one error after another. The times code actually does compile, Illustrator will not load the plugin.
    I've spent a week or two simply trying to get one of the examples to work, any one of them, or to simply get the HelloWorld example to work, no luck. Spent hours tracking down where things could be breaking, but found no results. I cannot tell if I am getting closer to finding the cause of the problem(s) or if I am working in circles.
    I ask this to anyone so kind to assist. Please step me through a simple HelloWorld example, which actually works on my system. I am happy to, and would provide details of various error messages I get, but I think seeing a simple working example would be the best help.
    Here's are the details.
    Trying to get the HelloWorld example, from the SDK CS3 docs, to work on either the mac or pc. I prefer the pc though.
    - On the mac, using xcode. OSX, the latest. Tried compiling with all minor versions of OSX.xxx too.
    I was able to get the helloWorld example to sort of compile, but it created a folder instead of a plugin, which didn't work.
    - On the pc, using winXP Pro, win32. Computer is up-to-date, service pack 3, a gig of ram, Pentium 4 3.00GHz.
    Using Visual C++ Express 2008, also tried with 2005.
    Here are a few things I tried, in attempt to get the HelloWorld example to work.
    -> Tried addressing all the "gotcha" tips from this site:
    http://www.graphicscode.com/Articles/VCExpressGotchas.html#RC1015
    -> Tried every which way to point the includes to the correct locations. Tried even copying the common library files into the same folder as the project.
    -> Tried saving the resource files in different formats, eg. UTF8, ANSI. Tried different line terminators eg. CR/LF.
    Not only the correct code, but I think what I need most are the correct project settings for Visual C++ Express. Also, there might be something funny going on with how VC++ creates resource files too.
    Appreciate any help.
    Thank you,
    -Justin

    Nobody??
    Hello WORLD << Anybody out there.... :)

  • Are there any DAQmx examples available for use with pci 6229 M series card?

    I have been searching around for examples which work with the pci 6229 M series DAQ card. Most examples do not list this card as applicable and the one I have found gives an error. Is there anywhere specifically available, what I am particularly interested in is seeing an analogue channel being triggered by another analogue channel reaching a certain value.
    Thanks
    Kevin

    Hi Kejoglo,
    You are right in the fact that the M-Series card is newer than LabVIEW (and therefore the examples that are shipped with it) and therefore the example finder doesn't list the M-Series cards in the list of available hardware.
    Basically though, the M-Series cards work with DAQmx and not Traditional DAQ so if you just go into the example finder and search under Hardware Input and Output>>DAQmx and choose an example from that folder to run on your M-Series card. As long as you don't try to do anything outside of the specifications of your card (which I doubt you will do) then you shouldn't have any trouble running any of the DAQmx examples on an M-Series card.
    Hope this helps, if you still have problems then please feel free to write back.
    Best regards,
    Peter H
    Applications Engineer
    National Instruments UK

  • Any working example or VersionedBacking map?

    Appreciate if anyone has the working example on VersionedBackig Map? How can i retrieve list of objcts (EX:Result set returns say 100 records, and each row is an object). Does tangosol has any api or have to implement java implementation?

    Hi Santharam,
    Attached please find an example xml configuration file that uses a Versioned Near Distributed Write-Behind caching strategy. Let me know if this is what you are looking for.
    I will be posting a more detailed example this week that will include a small web application front end to this configuration file.
    Later,
    Rob Misek
    Tangosol, Inc.
    Coherence: Cluster your Work. Work your Cluster.<br><br> <b> Attachment: </b><br>ver-near-write-behind.xml <br> (*To use this attachment you will need to rename 31.bin to ver-near-write-behind.xml after the download is complete.)

  • Any CRUD example starting with Hibernate+MySQL +Tomcat  with JSF  ??

    Hi,
    I am eager to learn Hibernate integrated with JSF and work on it.
    Kindly let me have any CREATE - REMOVE - UPDATE - DELETE example.
    ex. employee , users etc etc...
    If any good material or link to start with this. USING DAO pattern please let me know.
    I need your help.
    Thanks
    Ghanshyam

    Ghanshyam,
    Go to the following URL http://www.jsftutorials.net/
    you will find some good examples there.

  • Any simple example of Usage Data consumer out there? Python?

    The sample Billing Adapter is really heavy lifting. We need to get something up and running for simple chargeback proof-of-concept demonstration. Anyone know of any examples in a lightweight language like Python? Thanks.

    Hello Scott,
    Here is a simple sample project.
    Good Luck, Ruben.

  • Any extension examples based on JSR 198

    I am looking for any extension samples available for JDeveloper EA based on JSR-198.
    Are there any exiting? Will be helpful if you can point to some (even a beta version of the examples are ok)

    I am looking for any extension samples available for JDeveloper EA based on JSR-198.
    Are there any exiting? Will be helpful if you can point to some (even a beta version of the examples are ok)

  • Any labview example for resonator parameter measurement?

    Hellow!
    I am doing the measurement of the resonator parameter(like C0,L,C1,R) using network analyzer, are there anybody has some experience about it, are there any example code? thanks a lot!
    Mike 

    Mike,
    Which network analyzer are you using.  You may be able to find some LabVIEW drivers for it at the following link:
    National Instruments Instrument Driver Network
    You may also check the other thread you started and the responses from JL Chew.
    Network Analyzer
    Hope this helps!
    Andy F.
    National Instruments

Maybe you are looking for

  • Audio-tracks delayed

    With my *Digi 003 rack* and *Logic Studio Pro 8.0.2* I suddenly have recorded audio-tracks delayed when played back. If I play a guitar right on click and play it back, it is totally out of timing. Never had that one before. When I use the *Apogee Du

  • [SOLVED]Can't get correct intel video support

    Hi there, I'm trying to get the intel video card of my Dell Latitude E5410 laptop working. I can't for example use the xv extension : xvinfo X-Video Extension version 2.2 screen #0 no adaptors presen here are some information of my config : uname -a

  • How export a report in Excel where show Page Header in one sheet and the Body in other sheet?

    Hi, I need help!, because I need export a report in Excel where the Page Header shows in one sheet and the Body in other sheet. I have SQL 2008 R2, is it possible? Thanks a lot for your answers. Sukey Nakasima Sukey Nakasima

  • Master files consolidated into Aperture library and now lost...

    Aperture 3.1 appears to be doing strange things with a few of my master RAW files stored in the Aperture Library. I consolidated several files (as a copy) into the library and the files showed that they were non-referenced for several months but now

  • Can I add my iPhone to existing iTunes?

    I already have an iPod Touch, and I am getting a new iPhone next week. Can I add my new iPhone to my existing iTunes account? Or do I need to start from scratch? Thanks