The Plumtree Advanced Developer Conference is Coming!!!

The Plumtree ADC is only 4 weeks away, running from October 9th - October 12th. Time is getting short and seats are getting rare. The ADC will offer you deep technical insight and hand-on experience with the latest tools for developers in the next generation of Plumtree's products.
* Do AJAX based portlet development with Plumtree's new JavaScript Scripting Framework
* Feel the flexibility of adaptive XML tags; create your own using the new Plumtree Adaptive Tag Framework
* Get best practices on how to building portal based application using JavaServer Faces, Struts, and advanced .NET Web Controls
You need to get on this band wagon so sign up at http://www.plumtree.com/Odyssey+ADC/

Hi, Leslie - Yes, you're right - I was looking to see if any additional info was available on top of what's on the ADC site. Even if you can't provide more detail on the tracks, the lab descriptions will be helpful.
Thanks!Sarah------- Leslie Lin wrote on 4/5/04 6:56 PM -------
Hi Sarah,
There is an updated version of the agenda now available on the ADC Web site: http://www.plumtree.com/developers/conference/agenda.htm The abstracts should be fairly comprehensive in terms of what the topic will cover. If you're looking for something even more detailed like presentation outlines, let me know and I can send those to you.
As for detail lab descriptions, that's a great idea and we'll have something up on the Web site by the end of the week that has a summary of each of the different labs.
Leslie

Similar Messages

  • ADVANCED DEVELOPER CONFERENCE LAB NOW AVAILABLE

    The entire Advanced Developer Conference lab, complete with full source, is now available on the DeveloperCenterSamples page.
    The lab is a complete application for a fictional company, Remedy Pharmaceuticals. It includes clear and commented code in Java and .NET for:
    Basic portlet developmentAdaptive portlet development utilizing inter-portlet communication and in-place refreshPlumtree Event Interface (PEI) implementationsPluggable NavigationBranding and personalization without codingAuthentication Web ServicesCrawler Web ServicesProfile Web ServicesSearch Web Servicesand more ...All in the context of a single application.
    ross

    Tony,
    I "think" the easiest way to get PDF output at a cheap price is going to be PL/PDF (http://plpdf.com). It looks like it costs $500, and I don't see any other software requirements, since it works with mod_plsql.
    The coccon and other "stuff" is free, but I don't know how difficult it is to get setup and running. I'm also not sure how much leeway you get in designing your output.
    Since PL/PDF is generated by code you write with PL/SQL packages, I imagine that you can get some pretty customized output that would exactly fit your needs.
    When I first heard Apex 3.0 would allow PDF output, I was hoping that there was some kind of unannounced deal where Oracle had bought the company and was going to include the PL/PDF packages as some of their "standard" packages, like DBMS_OUTPUT.
    At least since they haven't done it yet, there may still be some hope that maybe someday they will, but then I don't see where that would really benefit the BI Publisher market, though I no idea how big that market is. It seems like quite a few Oracle shops aren't budgeted enough to get into that "niche", it's usually hard enough paying for the products already licensed.
    Bill Ferguson

  • I am trying to import my cd's onto itunes on a new macbook pro. i can import the cd fine but can not get track names or album art work. after going into advanced it is just coming up with "CDDB information not available"

    i can import the cd fine but can not get track names or album art work. after going into advanced it is just coming up with "CDDB information not available"
    thank you

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Advanced Development Techniques for Oracle Portal Components

    Hello friends,
    I have the following problem. I have a report and a form (on a
    view) in the same page, and when I select an item of the report
    the form is refreshed with the values associated to the selected
    item. The problem is that it makes it with delay, the first
    selection doesn't show anything and the remaining sample the
    data of the previous selection.
    This application has been developed as Ken Atkins explains in
    its document "Advanced Development Techniques for Oracle Portal
    Components."
    Oracle Portal Version: 3.0.9.8.0
    Thanks in advance.
    This is my code:
    -- REPORT --
    SELECT '<A HREF="http://mipc/portal30/
    ALFONSO.refrescar_contenido?
    p_variable=nombre_preferencia&p_variable_valor='||nombre_preferen
    cia||'&p_pagina=61">'||Preferencias||'</A>' nombre_link
    FROM ALFONSO.PREFERENCIAS
    -- PROCEDURE TO REFRESH THE PAGE --
    CREATE OR REPLACE PROCEDURE refrescar_contenido(p_varible IN
    VARCHAR2,
              p_variable_valor IN varchar2,p_pagina IN
    VARCHAR2) IS
    v_Sesion portal30.wwsto_api_session;
    BEGIN
    v_Sesion := portal30.wwsto_api_session.load_session
    ('CONTEXT','SESS_EMP');
    v_Sesion.set_attribute(p_varible, p_variable_valor);
    v_Sesion.save_session;
    owa_util.redirect_url('http://mipc/servlet/page?
    pageid='||ppagina||chr(38)||'_dad=portal30'||chr(38)
    ||'_schema=PORTAL30'||chr(38)||'_mode=3');
    END;
    -- FORM --
    -- ... BEFORE DISPLAYING THE PAGE
    alfonso.consulta_preferencia(p_session);
    -- PROCEDURE consulta_preferencia --
    CREATE OR REPLACE PROCEDURE consulta_preferencia(p_session in
    out PORTAL30.wwa_api_module_session) IS
    v_RowID VARCHAR2(100);
    v_Session portal30.wwsto_api_session;
    v_nombre VARCHAR2(40);
    BEGIN
    v_Session := portal30.wwsto_api_session.load_session
    ('CONTEXT','SESS_EMP');
    v_nombre := v_Session.get_attribute_as_varchar2
    ('nombre_preferencia');
    IF v_nombre IS NOT NULL THEN
    BEGIN
         SELECT rowidtochar(rowid) INTO v_RowID
         FROM ALFONSO.VISTAPREFERENCIAS
         WHERE nombre_preferencia = v_nombre;
    -- VISTAPREFERENCIAS it is the view in which the form is
    based.
    END;
    -- Tell the component that the query is coming from a link,
    and that the rowid
    -- is being used to query the correct context record.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=>'_CALLED_FROM_LINK'
                   ,p_value=>'ROWID');
    -- Pass the rowid of the context record to query.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=> '_ROWID'
                   ,p_value=> v_RowID);
    -- Now do the actual query, using the query button
    processing in the target module
    portal30.wwa_api_module_event.do_event
    ('DEFAULT','QUERY_TOP',1,'ON_CLICK',True,'',p_session);
    -- Save the session information, which includes the
    p_session.save_session;
    END IF;
    END;
    /

    You can make the report with a procedure from which you may call to a form by means of a link. It is a possibility, no??
    It is better a example:
    TABLE A
    campo1 VARCHAR2 (20)
    campo2 VARCHAR2 (20)
    CREATE OR REPLACE PROCEDURE REPORT IS
    v_cursor NUMBER;
    sentencia VARCHAR2(200);
    vnumfilas NUMBER;
    rowid_pref VARCHAR2(18);
    v_campo1 <schemaname>.A.campo1%TYPE;
    v_campo2 <schemaname>.A.campo2%TYPE;
    BEGIN
         htp.p('<HTML>');
         htp.p('<HEAD>');
         htp.p('</HEAD>');
         htp.p('<BODY>');
              sentencia := 'SELECT rowidtochar(rowid), campo1, campo2 FROM A';
              DBMS_SQL.PARSE(v_cursor,sentencia,DBMS_SQL.V7);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,1,rowid_pref,18);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,2,v_campo1,20);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,3,v_campo2,20);
              vnumfilas := DBMS_SQL.EXECUTE(v_cursor);
              LOOP
              IF DBMS_SQL.FETCH_ROWS(v_cursor)=0 THEN
                        EXIT;
              END IF;
              DBMS_SQL.COLUMN_VALUE(v_cursor,1,rowid_pref);
              DBMS_SQL.COLUMN_VALUE(v_cursor,2,v_campo1);
              DBMS_SQL.COLUMN_VALUE(v_cursor,2,campo2);
              v_link := '<A href="PORTAL30.wwa_app_module.link?p_arg_names=_moduleid'||chr(38)||'p_arg_values=<form's moduleid>'||chr(38)||'p_arg_names=_rowid'||chr(38)||'p_arg_values='||rowid_pref||chr(34)||'>'||campo1||'</A> '||campo2||' <BR>';
                   htp.p(v_link);
                END LOOP;
         htp.p('</BODY>');
         htp.p('</HTML>');
    END;
    the form has to be based on the table A.
    I dont know if this example has errors, but have you the idea??
    I hope it helps you out.
    (Excuse my english)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Looking for an advanced developer to work directly on forms

    I have been developing many interactive forms for my company but I am wanting to add more functionality then my current skill level allows for. Where do I go to find an advanced developer to work with me directly to produce more advanced forms and add some database functionality?
    Thank you,
    Bryan J.

    Thank you,
    Yes, I am looking to hire someone on contract pay to work on sevral projects over the coming month. I use a developer now that doesn't have advanced knowledge of livecycle forms and integration with other systems.
    Bryan J.

  • TS1717 Hi, my iTunes application is not connecting to the iTunes store. It is coming up with the following error message "we could not complete your itune store request. An unknown error occured (11222)" Can you please assist?

    Hi, my iTunes application is not connecting to the iTunes store. It is coming up with the following error message "we could not complete your itune store request. An unknown error occured (11222)" Can you please assist?

    Hi Laura-Wedders,
    Thanks for visiting Apple Support Communities.
    On August 7th, some users may have been unable to make purchases from the App Store, iTunes Store, Mac App Store, or iBookstore. Apple worked quickly to resolve these issues, however you may have experienced them.
    To check the current status of these systems please see:
    Apple - Support - System Status
    http://www.apple.com/support/systemstatus/
    If you are still experiencing issues, you may want to troubleshoot with the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    All the best,
    Jeremy

  • Confused about the Business Component Developer Certification

    Excuse me, I´m confused...
    How many certifications are about the Business Component Certification? Three??
    I thought there was just one, the Business Component Developer, which is the 1Z0-860 code...
    but I also have seen these:
    Java EE 6 Enterprise JavaBeans Developer Certified Expert Exam - 1Z0-895
    Java EE 6 Java Persistence API Developer Certified Expert Exam - 1Z0-898
    and now I don´t know which one to study for...
    Are these better? Or just different? Or are the last ones just the new ones and the 1Z0-860 is obsolete?
    Thanks in advance!

    938334 wrote:
    Excuse me, I´m confused...
    How many certifications are about the Business Component Certification? Three??
    I thought there was just one, the Business Component Developer, which is the 1Z0-860 code...
    but I also have seen these:
    Java EE 6 Enterprise JavaBeans Developer Certified Expert Exam - 1Z0-895
    Java EE 6 Java Persistence API Developer Certified Expert Exam - 1Z0-898
    and now I don´t know which one to study for...
    Are these better? Or just different? Or are the last ones just the new ones and the 1Z0-860 is obsolete?
    Thanks in advance!The basic answer to look at the question topics for each exam and and see what fits you. The question topcis should yield insight.
    Additionally the following exam is an OCP
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=&lang=&p_exam_id=1Z0_860
    The other two are OCE, as far as I can tell. Typically more of an area in depth, but OCE's can vary.
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=&lang=&p_exam_id=1Z0_895
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=&lang=&p_exam_id=1Z0_898
    I also notice the earlier exam is J2EE5; the later exams are J2EE6
    Hope this helps a little, but this java stuff is too hard for me and i must stackdump.

  • INVITE: Software Developer Conference (March 24, 25. Bangalore)

    Hello
    India Software Developer Conference
    Inviting all Programmers/ Software developers, Architects, Project
    Managers and Team Leads for an exciting conference.
    WHEN: March 24 & 25,2012 (Saturday & Sunday)
    WHERE: Bangalore
    TIME: 8.30AM to 5.00PM
    Get to know latest trends in cutting edge technologies and how these
    technologies impact your career path.
    What's new in the world of Java, .NET, HTML5, Mobile, Agile and
    Architecture
    Covering 50+ Technology Sessions
    Three interesting tracks: Architecture & Design, Development,
    Enterprise at Scale.
    Opportunity to learn from Industry thought leaders
    Network with over 900+ Participants from developer community
    Live demos and hands on sessions
    Great line up of speakers from companies like
    IBM,Microsoft,Infosys,Intuit,Oracle,ZOHO,Collabera,Dell,Capgemini,Vmware,TIBCO
    Software,MindTeck,Citrix Systems,EMC,UST Global,HCL
    Technologies,MindTree,Aspire Systems,Sencha
    This Conference has something for everyone. Don't miss this
    opportunity. Register NOW!
    http://globeadsdat.com/events/India-Software-Development-Conf-Bangalore-INDIANSOFTWAREDEVELOPMENT_Ma...
    Regards,
    Veeru

    Im not sure if this is the right place to post this, but anyway thanks for the info :)

  • Configuring the SAP NetWeaver Developer Studio

    Hi,
    I have to configure Configuring the SAP NetWeaver Developer Studio at AIX based system ,I have installed it on the system but getting error while configuring it,Could you please do the needful.
    Thanks in advance
    SS

    Sanjay,
    Post the error you are getting
    Thanks
    Bala Duvvuri

  • I need to test the Multiprovider in Development

    I need to test the Multiprovider in Development and prove to the management to move it to testing server.
    Please tell me how to test and prove this Multiprovider?
    Thanks in advance!

    Hi Les,
    What exactly do you need to prove? Have you created the multiprovider over some base cubes and need to show that the report results are correct? In that case you can have identical queries on the base cubes and the multiprovider and run each to match the results...

  • European ColdFusion Developer Conference

    Those of you that are based in europe, specifically the UK
    may be interested to know there is a new coldfusion developer
    conference starting this year (November).
    check out
    www.cfdevcon.com for more info

    whooopsies! I figured out what I was doing wrong. Noob
    mistake -- rather than browsing to my files using
    http://localhost:portnumber/directory
    .... I was trying to just right click on my .cfm files on my hard
    drive and open them in my browser....
    C:\CFusionMX7\wwwroot\examples\variables_form.cfm -- in which case,
    obviously the browser didn't know to route the files to the port of
    the ColdFusion server, and thus wasn't compiling the code...

  • Coldfusion developer conference

    Those of you that are based in europe, specifically the UK
    may be interested to know there is a new coldfusion developer
    conference starting this year (November).
    check out
    www.cfdevcon.com for more info

    whooopsies! I figured out what I was doing wrong. Noob
    mistake -- rather than browsing to my files using
    http://localhost:portnumber/directory
    .... I was trying to just right click on my .cfm files on my hard
    drive and open them in my browser....
    C:\CFusionMX7\wwwroot\examples\variables_form.cfm -- in which case,
    obviously the browser didn't know to route the files to the port of
    the ColdFusion server, and thus wasn't compiling the code...

  • The Oxford Advanced Learner's Dictionary, 8th edition. Integration into the spotlight

    Hello there!
    I have just purchased and installed the Oxford Advanced Learner’s Dictionary, 8th edition, from App Store. Does anyone know how to integrate it into the spotlight?

    Someone else here may have other suggestions, but I was able to find the following information on Oxford's support site. It may fix your problem, though it doesn't specifically address sound not playing (it does for the Mac version). I'd suggest you keep the old plugin files until you verify that the new plugins don't cause worse problems.
    Q. I have QuickTime 7 for Windows installed. Why do I get an error message "Quicktime plug-in requires the Quicktime system extension version 5 or later" when starting the OALD7 Compass CD-ROM?
    A. The Compass CD-ROM was developed before QuickTime 7 was released, and there are some incompatibilites which can be fixed as follows:
    If it is open, close the OALD7 Compass application.
    Download the pluginsQT7win.zip patch file
    In the directory where OALD7 is installed (usually c:\Program Files\Oxford\OALD7\), there is a directory called plugins - delete all the files in the plugins directory.
    Move pluginsQT7win.zip into the now empty plugins folder, and unzip the 4 files there.
    Sound should now be working - if you have any further problems or queries, please email the helpdesk.
    I hope this helps.
    Dave

  • ModuleData.getPrincipalData returns null in the adapter module development

    Hi gurus,
    i am doing a test on the adapter module development following an article written by William Li:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0ac06cf-6ee2-2c10-df98-e17430ca5949?QuickLink=index&overridelayout=true
    my problem is after the EJB has been deployed, it seems that the return of inputModuleData.getPrincipalData() is always null which makes the program can not get the xml payload from the framework.
    the main process of the example has been simplified like this:
         public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException {
              Object           obj = null;
              try {
              obj = inputModuleData.getPrincipalData();
              Message     msg1 = (Message) obj;          
                    XMLPayload xmlpayload = msg1.getDocument();}          
              catch (Exception e) {
                   ModuleException me = new ModuleException(e);
                   throw me;
              return inputModuleData;
    after deployed, i get the following error in the adapter monitor of RWB: (my JNDI is testtest)
    17.02.2012 17:13:44.643 Information Send binary file  "test8.xml" from FTP server "10.18.48.150:/encrypt_test/", size 206 bytes with QoS EO
    17.02.2012 17:13:44.644 Information MP: processing local module localejbs/CallSapAdapter
    17.02.2012 17:13:44.644 Information Application attempting to send an XI message asynchronously using connection File_http://sap.com/xi/XI/System
    17.02.2012 17:13:44.645 Information Trying to put the message into the send queue
    17.02.2012 17:13:44.648 Information MP: processing local module localejbs/testtest
    17.02.2012 17:13:44.648 Error MP: exception caught with cause java.lang.NullPointerException: while trying to invoke the method com.sap.engine.interfaces.messaging.api.Message.getDocument() of an object loaded from local variable 'msg1'
    whereas if the code has been changed like this:
         public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException {
              Object           obj = null;
              try {
                   obj = inputModuleData.getPrincipalData();
                   Message     msg1 = (Message) obj;     
                   if (obj != null )
                        XMLPayload xmlpayload = msg1.getDocument();
              catch (Exception e) {
                   ModuleException me = new ModuleException(e);
                   throw me;
              return inputModuleData;
    the file can be read by the file adapter.
    i just quite confused that why the return of the getPrincipalData() is null? where is the problem? thanks
    Edited by: Stephen Xue on Feb 17, 2012 5:22 AM

    I'm gonna reply to myself here. I changed the processing sequence of the adapter modules in the  in the FileSender channel so that my module comes first then CallSapAdapter. Then getPrincipalData() contains the message.
    Hope this helps someone else.

  • ICloud has the wrong I'd and keeps coming on my screen and won't let me change it this is an iPhone 5c and I can't use the phone

    MMy iPhone has the wrong I'd in the iCloud settting and it keeps coming on and asking for a pass word that doesn't exist and neither does the id    So what to do to get rid of it because I can't use my phone! It won't let me do anything

    If so, go to id.apple.com, manage apple id, sign in with current id, edit email back to the one showing in icloud settings. You can now sign out of icloud with your current password. Then back to id.apple.com, change your email back to the current one, verify it and sign back in to icloud.

Maybe you are looking for

  • How to embed/show an image file (.jpeg or .jpg or .png) into a Oracle 10g report file (.rdf)

    Hi All, Morning , have an urgent requirement and need some guidance regards this. we are currently having an existing Oracle 10g reports file (.rdf)  lets say with name : Testing1.rdf . The report output is getting generated in a pdf format . it open

  • Printing a New York Times Article

    I have been using this site for several years and now have subscribed to "New York Times Select" to retain access to editorials, etc. The articles used to print out in a nicely sized font, perhaps a 14. However, for the past several weeks the article

  • IMovie Sound cutting after exporting.......

    Hello, So I BEEN REALLY STRESS OUT ABOUT IMOVIE.. I FILM WEDDINGS AND SWEET 16 PARTIES SO I BEEN EDITING ON IMOVIE CASUE ITS BEEN REALLY EASY FOR ME JUST DROPING SOUNDTRACKS AND TITLES VERY QUICK... THE PROBLEM THAT I BEEN HAVING LATELY IS WHEN I EXP

  • Lockbox- GLT2 201 "Balancing feild Profit center not filled"

    Hello, I am trying to configure lockbox with document splitting active. When Upload my file its posting to the Lockbox clrg account but errors out when I try to post to the GL account. GLT2 201 "Balancing feild Profit center not filled". Please let m

  • Installing Mac OS version 10.0.4 for a Power Mac G4

    Wondering if anyone can help me, I spent all day trying to reinstall the Mac OS version 10.0.4 software that came with the computer in the first place. Decided we needed to restore our Power Mac G4 to its original state. I know, its 8 years old! LOL.