<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6096748</id><updated>2011-04-21T19:42:15.311-07:00</updated><title type='text'>Jonas Jacobi's ADF UIX &amp; JavaServer Faces blog</title><subtitle type='html'>Tips and general stuff about Oracle JDeveloper, ADF UIX, JavaServer Faces and other miscellaneous things.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jjacobi.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6096748.post-107617837522654635</id><published>2004-02-07T10:26:00.000-08:00</published><updated>2004-02-07T10:31:28.623-08:00</updated><title type='text'>My Blog Has Moved!!</title><content type='html'>Hi All,&lt;br /&gt;&lt;br /&gt;I'm sorry for the inconvinience, but I have decided to move my blog content to a new blog site - &lt;a href="http://www.orablogs.com/jjacobi/"&gt;My New blog Site&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; &lt;a href="http://www.orablogs.com"&gt;Main page of this new blog site&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This blog site is providing an rss feed for those of you who wants it, and this site has been developed with ADF UIX technology :)&lt;br /&gt;&lt;br /&gt;Best of luck and I'll see you at my new blog place.&lt;br /&gt;&lt;br /&gt;Thanks, Jonas&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-107617837522654635?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107617837522654635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107617837522654635'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2004_02_01_archive.html#107617837522654635' title='My Blog Has Moved!!'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-107542764874183601</id><published>2004-01-29T19:23:00.000-08:00</published><updated>2004-01-29T19:23:13.030-08:00</updated><title type='text'>ADF UIX Inline data source</title><content type='html'>Prototyping with out connecting to a database is a aquestion that is frequently asked and I thought that a simple how to would be handy for anyone interested. UIX is designed to be as dynamic as possible allowing you to data bind any attributes available in your page. In the 10g release we are using EL to wire a page up to a source (db, inline data, beans, etc...)&lt;br /&gt;&lt;br /&gt;Here is a working inline data source sample for JDeveloper 10g Preview:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;provider&gt;&lt;br /&gt;        &amp;lt;data name="tabData"&gt;&lt;br /&gt;          &amp;lt;inline&gt;&lt;br /&gt;            &amp;lt;tabInfo text="Tab1" url="InlineData" tabIndex="0"/&gt;&lt;br /&gt;            &amp;lt;tabInfo text="Tab2" url="InlineData" tabIndex="1"/&gt;&lt;br /&gt;            &amp;lt;tabInfo text="Tab3" url="InlineData" tabIndex="2"/&gt;&lt;br /&gt;            &amp;lt;tabInfo text="Tab4" url="InlineData" tabIndex="3"/&gt;&lt;br /&gt;            &amp;lt;tabInfo text="Tab5" url="InlineData" tabIndex="4"/&gt;&lt;br /&gt;          &amp;lt;/inline&gt;&lt;br /&gt;        &amp;lt;/data&gt;&lt;br /&gt;&amp;lt;/provider&gt; &lt;br /&gt;&lt;br /&gt;.......&lt;br /&gt;&lt;br /&gt;In your page you would wire it up using EL. See below sample&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- navigation --&gt;&lt;br /&gt;  &amp;lt;tabs&gt;&lt;br /&gt;    &amp;lt;tabBar selectedIndex="${ui:defaulting(uix.pageProp.tab, '0')}"&gt;&lt;br /&gt;      &amp;lt;contents childData="${uix.data.tabData.tabInfo}"&gt;&lt;br /&gt;        &amp;lt;link text="${uix.current.text}"&gt;&lt;br /&gt;          &amp;lt;boundAttribute name="destination"&gt;&lt;br /&gt;            &amp;lt;ctrl:pageURL name="${uix.current.url}"&gt;&lt;br /&gt;              &amp;lt;ctrl:properties&gt;&lt;br /&gt;                &amp;lt;ctrl:property key="tab" value="${uix.current.tabIndex}"/&gt;&lt;br /&gt;              &amp;lt;/ctrl:properties&gt;&lt;br /&gt;            &amp;lt;/ctrl:pageURL&gt;&lt;br /&gt;          &amp;lt;/boundAttribute&gt;&lt;br /&gt;        &amp;lt;/link&gt;&lt;br /&gt;          &lt;br /&gt;      &amp;lt;/contents&gt;&lt;br /&gt;    &amp;lt;/tabBar&gt;&lt;br /&gt;  &amp;lt;/tabs&gt;&lt;br /&gt;&lt;br /&gt;Best of luck making your page dynamic&lt;br /&gt;- Jonas&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-107542764874183601?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107542764874183601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107542764874183601'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2004_01_25_archive.html#107542764874183601' title='ADF UIX Inline data source'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-107542598815057580</id><published>2004-01-29T17:26:00.000-08:00</published><updated>2004-01-29T17:31:46.996-08:00</updated><title type='text'>I'm back</title><content type='html'>Hi All,&lt;br /&gt;&lt;br /&gt;After a couple of busy weeks with family and friends I'm back! There are a lot of stuff going on in Oracle land and it is great to part of it. This blog is intended to focus on JDeveloper, ADF UIX, and JavaServer Faces, so here is a link to a blog site built with UIX technology by Brian Duff.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.orablogs.com/duffblog/"&gt;Brian Duff's new blog site built with UIX&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We are getting closer to a production release of JDeveloper 10g and so there will be much more activities on this blog and on the OTN website the next coming weeks.&lt;br /&gt;&lt;br /&gt;- Jonas&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-107542598815057580?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107542598815057580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107542598815057580'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2004_01_25_archive.html#107542598815057580' title='I&apos;m back'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-107211628064132296</id><published>2003-12-22T10:04:00.000-08:00</published><updated>2003-12-22T10:06:32.216-08:00</updated><title type='text'>A big thanks to Brian Duff!</title><content type='html'>Hi All,&lt;br /&gt;&lt;br /&gt;Thanks to Brian Duff I have now removed myself from the geocities website mess. Brian has generously shared his server with me so that I can post my images, zip files, samples and other stuff with no hassle. So, finally, you can now download all samples without no hassle.&lt;br /&gt;&lt;br /&gt;Brian, your are the man of the year! &lt;br /&gt;(If you want to know more about Brian, visit his &lt;br /&gt;&lt;a href="http://radio.weblogs.com/0128037/"&gt;blog&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Happy Holidays&lt;br /&gt;Jonas&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-107211628064132296?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107211628064132296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107211628064132296'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_12_21_archive.html#107211628064132296' title='A big thanks to Brian Duff!'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-107049343788516763</id><published>2003-12-03T15:17:00.000-08:00</published><updated>2003-12-19T21:02:06.763-08:00</updated><title type='text'>Sun announced the official name of its Rave tool</title><content type='html'>Sun announced the official name of its Rave development tool -- now Java Studio Creator -- and announced that it will be releasing an early access version starting today.&lt;br /&gt;&lt;br /&gt;http://wwws.sun.com/software/products/jscreator/index.html&lt;br /&gt;http://news.com.com/2100-1012_3-5112776.html?tag=nefd_top&lt;br /&gt;&lt;br /&gt;Notable quote from their features page: "By introducing Java Studio Creator, Sun is the first JavaServer Faces expert group member to announce a product based on this technology, and the first to fully commit to a standards-based approach to simplifying Java development."&lt;br /&gt;&lt;br /&gt;Just an FYI! Sun is not the first JSF member to announce a product based on this technlogy. Oracle is also very active in the JSR 127 Expert Group and announced their commitment to support JSF with JDeveloper at the begining of November AND presented an early working beta of the JSF support at JavaOne 2003 in SF.&lt;br /&gt; &lt;br /&gt;&lt;a href="http://otn.oracle.com/products/jdev/collateral/papers/9.0.5.0/adfuix_roadmap/adfuix_roadmap.html"&gt;Roadmap for the ADF UIX technology and JavaServer Faces&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;I'm waiting for the first official beta from Sun to show up.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-107049343788516763?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107049343788516763'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107049343788516763'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_30_archive.html#107049343788516763' title='Sun announced the official name of its Rave tool'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-107040654109158543</id><published>2003-12-02T15:09:00.000-08:00</published><updated>2003-12-22T09:47:28.636-08:00</updated><title type='text'>Simple Hello World sample using ADF UIX and JDeveloper 10g Preview</title><content type='html'>Thought I would share this simple sample for those of you needing a simple and fast way into the great world of ADF UIX. This sample includes two solutions for passing a value from one page to another using ADF UIX and Struts. One is using Java Beans the other solution is using the request object. The zip file contains a JDeveloper workspace, so you only need to unzip the file in your working directory and open the workspace in JDeveloper 10g Preview. To run the Hello World application open the Struts page flow located in the view project and select and run the mainAction. Good Luck!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dubh.org/jonas/images/HelloApplication.zip"&gt;&lt;br /&gt;Hello World sample&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;- Jonas&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-107040654109158543?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107040654109158543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/107040654109158543'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_30_archive.html#107040654109158543' title='Simple Hello World sample using ADF UIX and JDeveloper 10g Preview'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-106943609668323542</id><published>2003-11-21T09:34:00.000-08:00</published><updated>2003-12-22T09:46:14.886-08:00</updated><title type='text'>More info needed for the LOV sample</title><content type='html'>Due to a comment to the sample this is just a note that will explain the &lt;br /&gt;steps required to get this sample working.&lt;br /&gt;&lt;br /&gt;1. Install JDeveloper 10g (9.0.5) Preview.&lt;br /&gt;2. Create a new empty Application workspace and Save it.&lt;br /&gt;3. In your working directory for this workspace unzip the &amp;quot;demolovproject.zip&amp;quot; file&lt;br /&gt;4. Open the project file - demoLovProject.jpr in your workspace.&lt;br&gt;&lt;br /&gt;  It should look like this:&lt;br&gt;&lt;br /&gt;  &lt;img border="0" src="http://www.dubh.org/jonas/images/appnav_lovsample.png"&gt;&lt;br&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;5. Compile your project&lt;br /&gt;6. Select the LOVRef.uix file and then RUN.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Jonas&lt;br /&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-106943609668323542?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106943609668323542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106943609668323542'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_16_archive.html#106943609668323542' title='More info needed for the LOV sample'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-106935191336509583</id><published>2003-11-20T10:11:00.000-08:00</published><updated>2003-12-22T09:47:02.543-08:00</updated><title type='text'>Sample of how to build an LOV with ADF UIX</title><content type='html'>This is a common question on our Forums and I thought I would share with you a sample provided to me by Bud Osterberg. Thanks Bud! &lt;br /&gt;&lt;br /&gt;This is a self contained sample with one solution for LOV's in the release of Oracle JDeveloper 10g Preview. I will be providing a tutorial (as soon as I can) on how to build an LOV using ADF UIX, Struts, and Oracle's Business Components for Java. I'll let you know when it is ready. &lt;br /&gt;&lt;br /&gt;For now, please enjoy this sample, and let me know if you have any question on the sample.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dubh.org/jonas/images/demoLovProject.zip"&gt;LOV sample&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-106935191336509583?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.dubh.org/jonas/images/demoLovProject.zip' title='Sample of how to build an LOV with ADF UIX'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106935191336509583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106935191336509583'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_16_archive.html#106935191336509583' title='Sample of how to build an LOV with ADF UIX'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-106918336517231977</id><published>2003-11-18T11:22:00.000-08:00</published><updated>2003-11-18T11:27:25.440-08:00</updated><title type='text'>Is ADF UIX a new technology?</title><content type='html'>The short answer is no! ADF UIX has been used extensively within Oracle for several years to produce products like Oracle iLearning, Enterprise Manager, Oracle9i Internet File System, and the Oracle Applications eBusiness suite.  There are also several customers currently using JDeveloper and ADF UIX, or in the stage of investigating the use of ADF UIX.&lt;br /&gt;&lt;br /&gt;As a notice Oracle is also tightly involved in the expert group in charge of &lt;a href="http://jcp.org/en/jsr/detail?id=127"&gt;JSR-127&lt;/a&gt; (JavaServer Faces), and Oracle will also be providing a migration path to JSF for customers that are using ADF UIX today.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-106918336517231977?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106918336517231977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106918336517231977'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_16_archive.html#106918336517231977' title='Is ADF UIX a new technology?'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-106917682512785524</id><published>2003-11-18T11:10:00.000-08:00</published><updated>2003-12-21T12:26:16.056-08:00</updated><title type='text'>What is ADF UIX?</title><content type='html'>This is a very common question and I will try to bundle my answer into just a couple of paragraphs.  The ADF UIX technology is one of the available views in Oracle ADF (Application Development Framework) and is an open user interface framework for building J2EE-compliant web applications. &lt;br /&gt;&lt;br /&gt;ADF UIX is a technology for developing web applications with an XML component model in the presentation tier. It includes Java class libraries, APIs, and parsers for creating web applications with page-based navigation, such as an online shopping application.  ADF UIX supports a variety of clients, including HTML-compliant browsers and mobile devices.&lt;br /&gt;&lt;br /&gt;You can use ADF UIX to develop the entire application or different aspects of an application based on the Model-View-Controller Model 2 design pattern. The core piece of ADF UIX is the rich set of user interface components, which are designed for building the user presentation layer (View) of an application.&lt;br /&gt;&lt;br /&gt;In the close future (as soon as the JavaServer Faces technology is released to public) ADF UIX will become an extension to JavaServer Faces.  At the 2003 JavaOne conference Oracle demonstrated on stage an early technology preview of JDeveloper and Oracle's extension to JSF - ADF UIX.&lt;br /&gt;&lt;br /&gt;For more information about Oracle's plan for ADF UIX and JavaServer Faces I would recommend you to read the following paper on otn.oracle.com - &lt;a href="http://otn.oracle.com/products/jdev/collateral/papers/9.0.5.0/adfuix_roadmap/adfuix_roadmap.html"&gt;Roadmap for the ADF UIX technology and JavaServer Faces&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;I guess I can write tons of stuff about ADF UIX, but this will due for now ;O)&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-106917682512785524?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106917682512785524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106917682512785524'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_16_archive.html#106917682512785524' title='What is ADF UIX?'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-6096748.post-106918241144703725</id><published>2003-11-18T11:06:00.000-08:00</published><updated>2003-11-18T11:14:04.216-08:00</updated><title type='text'>Who am I?</title><content type='html'>Well, I guess that you would like to know who I am, why I started this blog and what I do for a living. My name is Jonas Jacobi and I work as a Senior Product Manager for Oracle JDeveloper, and to be more specific I manage the ADF UIX and JavaServer Faces feature team. This covers all work related to design time and runtime for these technologies. Previous to this I have been working as Consultant, Project Lead, Instructor, and team lead for various IT companies in Europe since the early 90's.  &lt;br /&gt;&lt;br /&gt;The reason for starting this blog is to be able to help anyone interested in ADF UIX and JavaServer Faces, which I personally think - as technologies - rocks!! (Am I biased or what ;o) My goal is to post as many short tips and tricks on JDeveloper &amp; ADF UIX, as I possible can, in this blog.&lt;br /&gt;&lt;br /&gt;Hope you will enjoy it&lt;br /&gt;- Jonas&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6096748-106918241144703725?l=jjacobi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106918241144703725'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6096748/posts/default/106918241144703725'/><link rel='alternate' type='text/html' href='http://jjacobi.blogspot.com/2003_11_16_archive.html#106918241144703725' title='Who am I?'/><author><name>Jonas</name><uri>http://www.blogger.com/profile/12644008984087888354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>
