<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
   <title>Shay Shmeltzer's Weblog</title>
   <link rel="alternate" type="text/html" href="http://blogs.oracle.com/shay/" />
   
   <id>tag:blogs.oracle.com,2009:/shay//99</id>
   <updated>2009-11-11T02:13:29Z</updated>
   <subtitle>Tips and information about Oracle JDeveloper and Oracle ADF</subtitle>
   <generator uri="http://www.sixapart.com/movabletype/">Movable Type Enterprise 4.23-en</generator>


<link rel="self" href="http://feeds.feedburner.com/ShayShmeltzersWeblog" type="application/atom+xml" /><feedburner:emailServiceId>ShayShmeltzersWeblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry>
   <title>JDeveloper 11.1.1.2 is out</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/QpL5VpNWDzA/jdeveloper_11112_is_out.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.15499</id>
   
   <published>2009-11-11T02:03:42Z</published>
   <updated>2009-11-11T02:13:29Z</updated>
   
   <summary>A new version of JDeveloper is out on OTN - looking at the version number you might think this is just a patch release with some bug fixes, but in reality it is quite a major release for us. The...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="jdeveloper" label="JDeveloper" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;A new version of JDeveloper is out on OTN - looking at the version number you might think this is just a patch release with some bug fixes, but in reality it is quite a major release for us.&lt;/p&gt;

&lt;p&gt;The new features document should be &lt;a href="http://www.oracle.com/technology/products/jdev/collateral/papers/11/newfeatures/index.html"&gt;here&lt;/a&gt; shortly.&lt;/p&gt;

&lt;p&gt;In the meantime, some of the features you might want to explore are:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
	&lt;li&gt;New Maven extension&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;More functionality in the data control for EJBs (query and range fetching support)&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;New skin for ADF Faces (Fusion skin) which also adds a bunch of animation to things&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;New ADF Faces components - carousel, sparkel graph, autosuggest behavior, emailable pages and more&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;Improvement in the JSF visual editor &lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;Better debugger and logging for ADF&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;Bugzilla integration in TPC&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;New features in the database designer&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;UML 2.0 support&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;/p&gt;

&lt;p&gt;And much more.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.oracle.com/technology/software/products/jdev/htdocs/soft11.html"&gt;Download&lt;/a&gt; today and start playing...&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/QpL5VpNWDzA" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/11/jdeveloper_11112_is_out.html</feedburner:origLink></entry>

<entry>
   <title>Getting the Value from a SelectOneChoice List Using Code</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/ccEblg_Kz78/getting_the_value_from_a_selec.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.15343</id>
   
   <published>2009-11-03T23:45:57Z</published>
   <updated>2009-11-04T00:06:29Z</updated>
   
   <summary>I got asked this today, and this seems to be a question that pops up every now and again, so I thought I'll document this little piece of code. The scenario is that you have a drop down list using...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="binding" label="binding" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="list" label="list" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="selectonechoice" label="selectOneChoice" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;I got asked this today, and this seems to be a question that pops up every now and again, so I thought I'll document this little piece of code.&lt;/p&gt;

&lt;p&gt;The scenario is that you have a drop down list using a selectOneChoice component on your page - and you want to find out the selected value in a backing bean.&lt;br /&gt;
For example the departmentId field in this page:&lt;br /&gt;
&lt;img src="http://blogs.oracle.com/shay/images/lov001.gif"&gt;&lt;/p&gt;

&lt;p&gt;The first thing everyone try and do is to access the list component in a backing bean and invoke the getValue method on it. But then they realize that this only returns the actual index of the row that was selected and not the value.&lt;/p&gt;

&lt;p&gt;The following little piece of code will get you that value.&lt;br /&gt;
What it does is access the bindings object, get  the list binding, and then invoke the getSelectedValue method on it.&lt;/p&gt;

&lt;p&gt;    public void buttonPressed(ActionEvent actionEvent) {&lt;/p&gt;

&lt;p&gt;        // Get the binding&lt;br /&gt;
        BindingContainer bindings =&lt;br /&gt;
            BindingContext.getCurrent().getCurrentBindingsEntry();&lt;br /&gt;
        // Get the sepecific list binding&lt;br /&gt;
        JUCtrlListBinding listBinding =&lt;br /&gt;
            (JUCtrlListBinding)bindings.get("DepartmentId");&lt;br /&gt;
        // Get the value which is currently selected&lt;br /&gt;
        Object selectedValue = listBinding.getSelectedValue();&lt;br /&gt;
        System.out.println(selectedValue);&lt;br /&gt;
    }&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
Note that the binding name I'm getting (DepartmentId) is the last one in this picture - see the list binding icon next to it.&lt;br /&gt;
&lt;img alt="lov002.gif" src="http://blogs.oracle.com/shay/images/lov002.gif" /&gt;&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/ccEblg_Kz78" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/11/getting_the_value_from_a_selec.html</feedburner:origLink></entry>

<entry>
   <title>JDeveloper Twitter Feed Has Moved</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/q8QKpWPxrko/jdeveloper_twitter_feed_has_mo.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.15209</id>
   
   <published>2009-10-26T16:42:46Z</published>
   <updated>2009-10-26T16:44:49Z</updated>
   
   <summary>If you are wondering what you haven't seen updates on your twitter JDeveloper feed, it might be that you missed the fact that we moved it to a new user. Update your bookmarks/tracking service: http://twitter.com/jdeveloper Or update your RSS feedreader:...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="twitter" label="twitter" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;If you are wondering what you haven't seen updates on your twitter JDeveloper feed, it might be that you missed the fact that we moved it to a new user.&lt;br /&gt;
Update your bookmarks/tracking service:&lt;br /&gt;
&lt;a href="http://twitter.com/jdeveloper"&gt;http://twitter.com/jdeveloper&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Or update your RSS feedreader:&lt;br /&gt;
&lt;a href="http://twitter.com/statuses/user_timeline/29300975.rss"&gt;http://twitter.com/statuses/user_timeline/29300975.rss&lt;/a&gt;&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/q8QKpWPxrko" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/jdeveloper_twitter_feed_has_mo.html</feedburner:origLink></entry>

<entry>
   <title>ADF Faces UIs Popping Up All Around at OOW 09</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/-pFEWGCm85A/adf_faces_uis_popping_up_all_a.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.15184</id>
   
   <published>2009-10-23T19:55:23Z</published>
   <updated>2009-10-23T20:16:08Z</updated>
   
   <summary>One comment I heard at OOW from a couple of people was that it seems that ADF has a much bigger presence at this year conference. I guess that one reason for this is that a bunch of products/applications that...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="adffaces" label="ADF Faces" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="oow09" label="oow09" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;One comment I heard at OOW from a couple of people was that it seems that ADF has a much bigger presence at this year conference.&lt;br /&gt;
I guess that one reason for this is that a bunch of products/applications that have been in the works last year are now in production and were show cased at OOW this year.&lt;/p&gt;

&lt;p&gt;Things like the new SOA Suite BPM Worklist:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/img/bp_wl_home1.gif" width="600" height="400"&gt;&lt;/p&gt;

&lt;p&gt;Or the new Enterprise Manager:&lt;br /&gt;
&lt;img src="http://download.oracle.com/docs/cd/E12839_01/core.1111/e10105/img/farmhome.gif" width = "600" height="400"&gt;&lt;/p&gt;

&lt;p&gt;Or WebCenter Spaces:&lt;br /&gt;
&lt;img src="http://download.oracle.com/docs/cd/E12839_01/webcenter.1111/e10277/img/tour_1.gif" width="600"&gt;&lt;/p&gt;

&lt;p&gt;Add to this the UIs we built for the Thomas Kurian's keynote:&lt;br /&gt;
&lt;a href="http://blogs.oracle.com/shay/images/Picture%205.png"&gt;&lt;img alt="Picture 5.png" src="http://blogs.oracle.com/shay/assets_c/2009/10/Picture 5-thumb-600x383-1991.png" width="600" height="383" class="mt-image-none" style="" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://blogs.oracle.com/shay/images/Picture%206.png"&gt;&lt;img alt="Picture 6.png" src="http://blogs.oracle.com/shay/assets_c/2009/10/Picture 6-thumb-600x384-1993.png" width="600" height="384" class="mt-image-none" style="" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The UI's some of our &lt;a href="http://blogs.oracle.com/shay/2009/10/adf_applications_show_case_at.html"&gt;customers showed&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;And of course the UI's of the Oracle Fusion Applications that Larry showed in his keynote:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm3.static.flickr.com/2532/4012977060_9347c6ec12.jpg"&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm3.static.flickr.com/2498/4012977390_5495442fb5.jpg"&gt;&lt;/p&gt;

&lt;p&gt;Check out more of those screen shots &lt;a href="http://www.flickr.com/photos/oracleopenworld09/sets/72157622462805751/"&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/-pFEWGCm85A" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/adf_faces_uis_popping_up_all_a.html</feedburner:origLink></entry>

<entry>
   <title>New JDeveloper/ADF Bloggers</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/u73BKAb5KJg/new_jdeveloperadf_bloggers.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.15170</id>
   
   <published>2009-10-22T20:50:02Z</published>
   <updated>2009-10-29T19:50:13Z</updated>
   
   <summary>It's always nice to see new people join the JDeveloper/ADF community - especially when these people are willing to contribute and share their knowledge. So here is a quick shout out to a few bloggers who started to blog about...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="blogs" label="blogs" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;It's always nice to see new people join the JDeveloper/ADF community - especially when these people are willing to contribute and share their knowledge.&lt;br /&gt;
So here is a quick shout out to a few bloggers who started to blog about JDeveloper and ADF in the recent months.&lt;br /&gt;
Make sure to add them to your feed:&lt;/p&gt;

&lt;p&gt;Jobinesh - &lt;a href="http://jobinesh.blogspot.com/"&gt;http://jobinesh.blogspot.com/&lt;/a&gt;&lt;br /&gt;
Maiko Rocha - &lt;a href="http://adfgarage.blogspot.com/"&gt;http://adfgarage.blogspot.com/&lt;/a&gt;&lt;br /&gt;
Ed Eaglehouse - &lt;a href="http://suncat-jsf.blogspot.com/"&gt;http://suncat-jsf.blogspot.com/&lt;/a&gt;&lt;br /&gt;
Eric Schott - &lt;a href="http://blogs.oracle.com/jdev11g/"&gt;http://blogs.oracle.com/jdev11g/&lt;/a&gt;&lt;br /&gt;
George Maggessy - &lt;a href="http://georgemaggessy.blogspot.com/"&gt;http://georgemaggessy.blogspot.com/&lt;/a&gt;&lt;br /&gt;
Michael Lee - &lt;a href="http://blogs.oracle.com/michaellee/"&gt;http://blogs.oracle.com/michaellee/&lt;/a&gt;&lt;br /&gt;
Vikram Kohli - &lt;a href="http://kohlivikram.blogspot.com/"&gt;http://kohlivikram.blogspot.com/&lt;/a&gt;&lt;br /&gt;
Mohammed Tanveer - &lt;a href="http://tanveeroracle.blogspot.com/"&gt;http://tanveeroracle.blogspot.com/&lt;/a&gt;&lt;br /&gt;
Avrom Roy Faderman - &lt;a href="http://www.avromroyfaderman.com/"&gt;http://www.avromroyfaderman.com/&lt;/a&gt;&lt;br /&gt;
Steve Muench - not a new blogger but a new location - &lt;a href="http://blogs.oracle.com/smuenchadf/"&gt;http://blogs.oracle.com/smuenchadf/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can get an RSS feed of the latest technical entries we know about here: &lt;a href="http://www.connotea.org/rss/user/jdeveloper"&gt;http://www.connotea.org/rss/user/jdeveloper&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/u73BKAb5KJg" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/new_jdeveloperadf_bloggers.html</feedburner:origLink></entry>

<entry>
   <title>ADF Applications Show Case at OOW 09</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/PDpFvHps_ns/adf_applications_show_case_at.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.15071</id>
   
   <published>2009-10-16T15:59:16Z</published>
   <updated>2009-10-16T16:39:18Z</updated>
   
   <summary>One cool session at OOW 09 unconference was the Oracle ADF Enterprise Methodology group - show me yours session. It was basically a bunch of ADF customers showcasing a bit of the applications that they have running in production and...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="adf" label="ADF" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="customers" label="customers" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="oow09" label="oow09" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;One cool session at OOW 09 unconference was the&lt;a href="http://groups.google.com/group/adf-methodology?pli=1"&gt; Oracle ADF Enterprise Methodology group&lt;/a&gt; - show me yours session.&lt;/p&gt;

&lt;p&gt;It was basically a bunch of ADF customers showcasing a bit of the applications that they have running in production and talking about the special features that their system implements.&lt;br /&gt;
It was an interesting mix of both 10.1.3 and 11g versions.&lt;/p&gt;

&lt;p&gt;A quick recap and some pictures:&lt;/p&gt;

&lt;p&gt;Bashir from &lt;a href="http://www.innowavetech.com/"&gt;Innowave&lt;/a&gt; showed off the 11g UI they built to help users understand their business flows inside the Oracle SOA suite.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3003/4017189462_aa118ee82d.jpg"&gt;&lt;/p&gt;

&lt;p&gt;Wes from the &lt;a href="http://www.mskcc.org"&gt;Memorial Sloan-Kettering Cancer Center&lt;/a&gt; showed parts of their 10.1.3 applications that has been in production for 2 years now with about 200 users - managing medical info.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm3.static.flickr.com/2713/4016425439_7c0e1c044e.jpg"&gt;&lt;/p&gt;

&lt;p&gt;Andrejus from Red Samurai showed the 11g system that they built for MedNet to replace an Oracle Forms application.&lt;br /&gt;
&lt;img src="http://farm3.static.flickr.com/2710/4016485539_96d29fe607.jpg"&gt;&lt;/p&gt;

&lt;p&gt;John from the substance abuse 7 mental health service administration (SAMHSA) showed the 10.1.3 application they are about to put on the Web to help people locate centers near them where they can get help.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm3.static.flickr.com/2651/4017189892_c17524a48c.jpg"&gt;&lt;/p&gt;

&lt;p&gt;Greg from &lt;a href="http://www.ecsteam.com/"&gt;ECS&lt;/a&gt; showed the 11g system currently running at &lt;a href="http://www.collectamerica.com/"&gt;Collect America&lt;/a&gt; helping them collect debts.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm3.static.flickr.com/2682/4016425817_4745fb6878.jpg"&gt;&lt;/p&gt;

&lt;p&gt;(For bigger versions of the images look &lt;a href="http://www.flickr.com/photos/gevatron/sets/72157622473305817/"&gt;here&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;One hour after the session ended there was another showcase of ADF based application - this time by Larry Ellison showing of the new Oracle Fusion Applications - but more on this in a separate entry.&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/PDpFvHps_ns" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/adf_applications_show_case_at.html</feedburner:origLink></entry>

<entry>
   <title>Oracle Develop Day 4? - Yes, it's in the unconference</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/70_K9wWfwhs/oracle_develop_day_4_-_yes_its.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14994</id>
   
   <published>2009-10-13T22:05:55Z</published>
   <updated>2009-10-13T22:11:18Z</updated>
   
   <summary>Oracle Develop only lasts 3 days, but if you are still thirsty for more ADF knowledge, don't miss the un-official ADF track running tomorrow at the Oracle OpenWorld Un-Conference. We'll have ADF presentations from 9 till 5 including: 9:00 a.m....</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="adf" label="ADF" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="oow09" label="oow09" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="unconference" label="unconference" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;Oracle Develop only lasts 3 days, but if you are still thirsty for more ADF knowledge, don't miss the un-official ADF track running tomorrow at the Oracle OpenWorld Un-Conference.&lt;/p&gt;

&lt;p&gt;We'll have ADF presentations from 9 till 5 including:&lt;/p&gt;

&lt;p&gt;9:00 a.m. Rich Client Interfaces via Functional UI Patterns &amp; Best Practices from &lt;br /&gt;
10:00 a.m. Extreme Faces Makeover - Inject ADF Faces Rich Client Components into your applications &lt;br /&gt;
11:00 a.m. The Secrets of ADF Region Interaction &lt;br /&gt;
1:00 p.m. ADF Methodology Group Meeting &lt;br /&gt;
2:00 p.m. ADF Methodology Group Meeting - Show me Yours session&lt;br /&gt;
3:00 p.m. Tips for JDeveloper Users - The Small things that make the difference &lt;br /&gt;
4:00 p.m. Data Visualization Components in a nutshell&lt;/p&gt;

&lt;p&gt;The other advantage of coming to this set of sessions is that you won't need to go outside of Moscone south the whole day - and you'll stay dry.&lt;/p&gt;

&lt;p&gt;See you tomorrow.&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/70_K9wWfwhs" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/oracle_develop_day_4_-_yes_its.html</feedburner:origLink></entry>

<entry>
   <title>Did OpenWorld Start Already?</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/EHft-UuBO5g/did_openworld_start_already.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14908</id>
   
   <published>2009-10-12T04:52:19Z</published>
   <updated>2009-10-12T05:08:45Z</updated>
   
   <summary>It's the first time in many years that I didn't need to be in the San Francisco for the Sunday part of OOW. Somehow all the stars aligned, and none of my sessions/labs at Oracle develop got assigned to Sunday....</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="oow09" label="oow09" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;It's the first time in many years that I didn't  need to be in the San Francisco  for the Sunday part of OOW. Somehow all the stars aligned, and none of my sessions/labs at Oracle develop got assigned to Sunday. So I took advantage of this to spend a day with the family before I disappear for the next 5 days.&lt;/p&gt;

&lt;p&gt;To compensate my day tomorrow is probably my busiest at OOW with an Oracle Develop session, another OOW session and a demoground shift at the ADF Faces pod.&lt;/p&gt;

&lt;p&gt;To tell the truth, I still did OOW related stuff today - I  tracked the blog posts on &lt;a href="http://www.OraNA.info"&gt;www.OraNA.info&lt;/a&gt; to keep up to speed with what people are doing there.&lt;br /&gt;
I also spent another hour putting the finishing touches on the demo for my 10:15 session at Oracle Develop tomorrow (Developing with JSF/EJB 3.0 and JPA: A More Productive Way).&lt;br /&gt;
This session is aimed at Java developers (and WebLogic customers) who are currently working on Java EE applications, and it shows them how JDeveloper and ADF can take them to the next level of productivity when building applications using the JPA/EJB and JSF stack.&lt;/p&gt;

&lt;p&gt;If you never took a look at ADF before for your Java development - this will be a good introduction.&lt;br /&gt;
If you never took a look at Java before for your development - come to my 5:00pm session (The Oracle Fusion Development Experience: An Overview) and get a bit of a higher level picture with less acronyms :-)&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/EHft-UuBO5g" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/did_openworld_start_already.html</feedburner:origLink></entry>

<entry>
   <title>My JDeveloper and ADF Sessions at OOW</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/K4FAdDzq0rc/my_jdeveloper_and_adf_sessions.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14781</id>
   
   <published>2009-10-06T16:47:22Z</published>
   <updated>2009-10-06T17:18:43Z</updated>
   
   <summary>It's that crazy time of the year again - Oracle Develop and Oracle OpenWorld are starting next week, and we are finalizing slides, demos and the rest of the activities. Some tips for JDeveloper/ADF users Here is a list of...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="oow" label="OOW" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="oracledevelop" label="Oracle Develop" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;It's that crazy time of the year again - Oracle Develop and Oracle OpenWorld are starting next week, and we are finalizing slides, demos and the rest of the activities.&lt;/p&gt;

&lt;p&gt;Some tips for JDeveloper/ADF users&lt;br /&gt;
Here is a &lt;a href="http://www.oracle.com/technology/products/jdev/events/fusiondevelopmentoow09.pdf"&gt;list of all the activities that cover JDeveloper and ADF&lt;/a&gt; - note that this has been updated last week so grab a fresh copy.&lt;/p&gt;

&lt;p&gt;Make sure to book the hands-on labs and sessions you are interested in through the schedule builder application - this will guarantee your spot.&lt;/p&gt;

&lt;p&gt;Don't miss the ADF Track at the &lt;a href="http://wiki.oracle.com/page/Oracle+OpenWorld+Unconference"&gt;Unconference area&lt;/a&gt; on Wed - this includes a special meeting of the ADF Methodology Group and various other technical sessions all in the Overlook I room from 9 to 5 &lt;/p&gt;

&lt;p&gt;While at Oracle Develop make sure to visit the JDeveloper Usability folks at their develop demo ground booth - you will get a chance to win a Wii as well as influence how the tool will look.&lt;/p&gt;

&lt;p&gt;Don't miss the Oracle demoground - this is where you can get a chance to talk directly to us product managers. Look us up at the Moscone West demoground.&lt;/p&gt;

&lt;p&gt;Here is where you can catch me at the conference:&lt;br /&gt;
(Click &lt;a href="http://www20.cplan.com/cc221_new/newCatalog.jsp?ilc=221-1&amp;ilg=english&amp;isort_sessions=&amp;isort_demos=&amp;isort_exhibitors=&amp;is=yes&amp;isort_sessions_type=&amp;isort_exhibitors_type=&amp;isort_demos_type=&amp;icriteria2=&amp;search_sessions=yes&amp;icriteria1=+&amp;icriteria8=shmeltzer&amp;openTagSearch=&amp;icriteria9=+&amp;icriteria6=&amp;icriteria3=+&amp;icriteria4=+&amp;icriteria7=&amp;search_advance=yes&amp;horizontal1=20"&gt;here &lt;/a&gt;to read the abstracts for the sessions)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Monday &lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;10:15 &lt;em&gt;Developing with JSF/EJB 3.0 and JPA: A More Productive Way&lt;/em&gt; - Hilton Golden Gate 4/5 &lt;/p&gt;

&lt;p&gt;12:30-2:30 &lt;em&gt;ADF Faces Demo Booth&lt;/em&gt; - Moscone West&lt;/p&gt;

&lt;p&gt;5:30 &lt;em&gt;The Oracle Fusion Development Experience: An Overview&lt;/em&gt;  - Marriott Hotel  	Salon 7&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tuesday&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;10:30 &lt;em&gt;Navteq Booth&lt;/em&gt; showing of our Map component&lt;/p&gt;

&lt;p&gt;2:30 &lt;em&gt;Hands-on Lab Adding Dynamic Data Visualization to Web Applications&lt;/em&gt; - Hilton Hotel Continental Ballroom 6&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Wednesday&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;11:15-1:15  &lt;em&gt;ADF Faces Demo Booth&lt;/em&gt; - Moscone West&lt;br /&gt;
1:15-3:00 &lt;em&gt;ADF Enterprise Methodology Group&lt;/em&gt; - Moscone West Unconference&lt;br /&gt;
3:00 &lt;em&gt;Tips for JDeveloper Users - The Small things that make the difference&lt;/em&gt; - Moscone West Unconference&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thursday&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1:30 &lt;em&gt;Web 2.0 Front Ends for PeopleSoft, Oracle E-Business Suite, and Siebel Apps&lt;/em&gt; - Moscone West L3 Room 3020&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/K4FAdDzq0rc" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/my_jdeveloper_and_adf_sessions.html</feedburner:origLink></entry>

<entry>
   <title>Changing the Aggregation of an ADF Pivot Table</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/1oaDZ1t5wEM/changing_the_aggregation_of_an.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14729</id>
   
   <published>2009-10-02T22:27:39Z</published>
   <updated>2009-10-02T22:32:03Z</updated>
   
   <summary>A quick tip for people using the ADF Pivot Table component. When you are using a pivot table with ADF binding by default the table aggregates the data using the SUM function for each intersection of axises. However - you...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="adf" label="ADF" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="pivottable" label="Pivot table" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;A quick tip for people using the ADF Pivot Table component.&lt;/p&gt;

&lt;p&gt;When you are using a pivot table with ADF binding by default the table aggregates the data using the SUM function for each intersection of axises.&lt;br /&gt;
However - you can actually change the aggregation to be something else like Avg, Count and more.&lt;/p&gt;

&lt;p&gt;To do this you'll need to go into the binding tab of your page, choose the pivotTable binding you added and navigate to the data in the structure pane. Then in the property inspector you'll see other options for the aggregation like this (right click -&gt; view image for the full size version):&lt;/p&gt;

&lt;p&gt;&lt;span class="mt-enclosure mt-enclosure-image" style="display: inline;"&gt;&lt;img alt="pivot002.jpg" src="http://blogs.oracle.com/shay/images/pivot002.jpg" width="600" height="320" class="mt-image-none" style="" /&gt;&lt;/span&gt;&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/1oaDZ1t5wEM" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/10/changing_the_aggregation_of_an.html</feedburner:origLink></entry>

<entry>
   <title>Oracle ADF at Silicon Valley Code Camp - This Weekend</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/MachKMrbVy0/oracle_adf_at_silicon_valley_c.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14647</id>
   
   <published>2009-09-29T16:02:35Z</published>
   <updated>2009-10-01T18:04:08Z</updated>
   
   <summary>I'm going to present two sessions at the upcoming Silicon Valley Code Camp this weekend (Oct 3th and 4th). One will be an overview of the whole ADF framework and the other is a deeper dive into the ADF Faces...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="svcc" label="svcc" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;I'm going to present two sessions at the upcoming &lt;a href="http://www.siliconvalley-codecamp.com"&gt;Silicon Valley Code Camp&lt;/a&gt; this weekend (Oct 3th and 4th). One will be an overview of the whole ADF framework and the other is a deeper dive into the ADF Faces part and how it enables the creation of Ajax UIs with JSF.&lt;br /&gt;
You can find the sessions info &lt;a href="http://www.siliconvalley-codecamp.com/Sessions.aspx?ForceSortBySessionTime=true&amp;id=213"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;For those not familiar with the Code Camp concept - the idea is to have a conference  organized by the community and for the community, and as such it is FREE for all.&lt;br /&gt;
You can come and hear sessions about a variety of development topics - just register online and show-up. This year there is a complete &lt;a href="http://www.siliconvalley-codecamp.com/Sessions.aspx?track=2"&gt;Oracle Track&lt;/a&gt; in the conference. &lt;br /&gt;
So if you are in the Silicon Valley area and you want to expand your horizons a bit - here is a free, easy way to do it.&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/MachKMrbVy0" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/09/oracle_adf_at_silicon_valley_c.html</feedburner:origLink></entry>

<entry>
   <title>Web Services with Complex Data Types in ADF 11g</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/mGKFj8vB90g/web_services_with_complex_data.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14356</id>
   
   <published>2009-09-11T21:31:43Z</published>
   <updated>2009-09-11T23:22:34Z</updated>
   
   <summary>A guest post by Srikant Subramaniam from our Fusion Middleware for Apps product management group. The Web Service Data Control The Web Service Data Control in ADF 11g provides an easy and convenient interface to incorporate web services in an...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="webservices" label="Web Services" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="datacontrol" label="data control" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;A guest post by Srikant Subramaniam from our &lt;a href="http://www.oracle.com/technology/tech/fmw4apps/index.html"&gt;Fusion Middleware for Apps&lt;/a&gt; product management group.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Web Service Data Control&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Web Service Data Control in ADF 11g provides an easy and convenient interface to incorporate web services in an ADF application. The data control abstracts the implementation of a business service (such as a web service) thus providing a consistent mechanism for the ADF pages to access the data. &lt;/p&gt;

&lt;p&gt;While most of the simple samples out there will show you how to invoke a Web service that returns a simple string, there are some specific things you need to know when you are working with complex data types.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Complex Data Types&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A complex data type wraps a number of attributes, such as an array of objects.  For instance, the request object for the "getObject" operation contains an array of individual attributes as shown below:&lt;/p&gt;

&lt;p&gt;&lt;img alt="snap001.jpg" src="http://blogs.oracle.com/shay/images/snap001.jpg" width="217" height="459" class="mt-image-none" style="" /&gt;&lt;br /&gt;
 &lt;br /&gt;
Similarly, the response object can also contain several individual attributes:&lt;/p&gt;

&lt;p&gt; &lt;img alt="snap-0107.gif" src="http://blogs.oracle.com/shay/images/snap-0107.gif" width="247" height="409" class="mt-image-none" style="" /&gt;&lt;/p&gt;

&lt;p&gt;In JDeveloper 10.1.3 there was no out-of-the-box support for complex data types, hence the inability to drag and drop only the relevant input/output attributes onto the JSF page when designing the ADF UI. &lt;br /&gt;
As a result, we had the following workarounds:&lt;br /&gt;
1. For complex input parameters, create an instance of the complex input type in a managed bean and add it to the parameter map of an Oracle ADF operation binding that invoked the web service, as described &lt;a href="http://susanduncan.blogspot.com/2006/09/dealing-with-complex-input-params-in.html"&gt;here&lt;/a&gt;.&lt;br /&gt;
2. For complex return types, either via the use of web service data control; or a web service proxy, as described &lt;a href="http://www.oracle.com/technology/products/jdev/howtos/1013/wsadf/adfcomplexwstypes.html"&gt;here&lt;/a&gt;.&lt;br /&gt;
While these workarounds were fully functional, they introduced the need for custom Java coding/development.&lt;/p&gt;

&lt;p&gt;This has changed with JDeveloper and ADF 11g, and complex data types are now supported out-of-the-box, creating an ADF client does not require any custom Java coding and is accomplished via drag/drop style data binding of the complex data types.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://download.oracle.com/otndocs/technology/tech/fmw4apps/agile/pdf/adf11g-agile.pdf"&gt;This tutorial&lt;/a&gt; shows how to build an ADF 11g client using complex data types.&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/mGKFj8vB90g" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/09/web_services_with_complex_data.html</feedburner:origLink></entry>

<entry>
   <title>A Guide to JDeveloper and ADF at Oracle Open World and Oracle Develop</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/H5GqQrjbYMg/a_guide_to_jdeveloper_and_adf.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.14328</id>
   
   <published>2009-09-10T23:03:45Z</published>
   <updated>2009-09-10T23:11:50Z</updated>
   
   <summary>If I'm not mistaken there are over 2000 sessions running at Oracle Open World this year - so reading the agenda and planning what to see when can be quite a long task for anyone to take. One thing we...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="oow" label="OOW" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;If I'm not mistaken there are over 2000 sessions running at Oracle Open World this year - so reading the agenda and planning what to see when can be quite a long task for anyone to take.&lt;/p&gt;

&lt;p&gt;One thing we are trying to do to simplify your task is to provide "Focus On" documents that lists all the sessions for a specific topic.&lt;/p&gt;

&lt;p&gt;I'm assuming that if you are reading this blog you are interested in JDeveloper and ADF - so the document for you is &lt;a href="http://www.oracle.com/technology/products/jdev/events/fusiondevelopmentoow09.pdf"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;As you'll see a lot of our sessions are in the first three days at Oracle Develop - the main event for developers held in the Hilton SF this year.&lt;br /&gt;
Note that is you have a regular OOW pass, you'll need to extend it to get access to these sessions - do this before you arrive.&lt;/p&gt;

&lt;p&gt;Once the three first days are over you still get to hear JDev/ADF content at OOW - and new this year - in the unofficial ADF track at the OOW unconference.&lt;br /&gt;
On Wed in Moscone West, we lined up a full day of technical sessions about ADF and JDeveloper along with a meeting of the ADF Methodology Group - Note that these sessions won't appear in your online scheduling tool - so make a mental note about them and make sure to attend.&lt;/p&gt;

&lt;p&gt;Beyond all of the sessions and labs, don't miss your chance to interact directly with JDeveloper experts at the OOW demoground - we'll have 3 booths dedicated to JDeveloper, ADF Faces and ADF Mobile there - so come and say hello.&lt;/p&gt;

&lt;p&gt;Now you have the basic details - and you can spend the next 4 weeks planning your schedule.&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/H5GqQrjbYMg" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/09/a_guide_to_jdeveloper_and_adf.html</feedburner:origLink></entry>

<entry>
   <title>What Would You Like To See In The Next JDeveloper?</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/mIYrXDxDEww/what_would_you_like_to_see_in.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.13920</id>
   
   <published>2009-08-20T00:03:29Z</published>
   <updated>2009-08-20T00:08:16Z</updated>
   
   <summary>We are in the process of collecting requirements for one of the next versions of JDeveloper. And we figured we'll give you a chance to tell us what you would like to see. To make it interesting try and prioritize...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="jdeveloper" label="JDeveloper" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;We are in the process of collecting requirements for one of the next versions of JDeveloper.&lt;br /&gt;
And we figured we'll give you a chance to tell us what you would like to see.&lt;br /&gt;
To make it interesting try and prioritize your request (since we probably won't be able to implement every little one of them).&lt;br /&gt;
Then post your list &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=942874"&gt;on this OTN thread&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Also please try and be specific - for example, instead of saying better documentation - tell us what type of docs you would like to see and what specific topics do you want us to cover.&lt;/p&gt;

&lt;p&gt;Thanks for helping us create a better tool.&lt;/p&gt;

&lt;p&gt;P.S. - if you are still on version 10.1.3.* you might be interested in the newly released 10.1.3.5 version of JDeveloper now on OTN.&lt;br /&gt;
Here is the &lt;a href="http://www.oracle.com//technology/products/jdev/htdocs/10.1.3.5/10135fixlist.html"&gt;Fix list&lt;/a&gt;.&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/mIYrXDxDEww" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/08/what_would_you_like_to_see_in.html</feedburner:origLink></entry>

<entry>
   <title>Removing Applications from your Integrated WebLogic Server in JDeveloper</title>
   <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ShayShmeltzersWeblog/~3/azZlxLfmy8Y/removing_applications_from_you.html" />
   <id>tag:blogs.oracle.com,2009:/shay//99.13682</id>
   
   <published>2009-08-06T22:54:03Z</published>
   <updated>2009-08-06T23:14:13Z</updated>
   
   <summary>JDeveloper has an integrated WebLogic Server now - and when you deploy the applications to it, it behaves a little different then in the old days of OC4J. For example you can have multiple applications deployed and running at the...</summary>
   <author>
      <name>shay.shmeltzer</name>
      <uri>http://blogs.oracle.com/shay</uri>
   </author>
   
   <category term="weblogic" label="WebLogic" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="deploy" label="deploy" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://blogs.oracle.com/shay/">
      &lt;p&gt;JDeveloper has an integrated WebLogic Server now - and when you deploy the applications to it, it behaves a little different then in the old days of OC4J. For example you can have multiple applications deployed and running at the same time on the server.&lt;br /&gt;
However, sometimes one of those application might still be around when you don't need it anymore. This can happen for example if you had your WLS running and killed it with the task manager.&lt;/p&gt;

&lt;p&gt;This might cause an error when you try and run the application again - saying that the application is already up there.&lt;/p&gt;

&lt;p&gt;The nice thing in JDeveloper is that you can actually undeploy that application directly from inside JDeveloper. Here is how:&lt;/p&gt;

&lt;p&gt;From the View menu choose Application Server Navigator&lt;br /&gt;
Expend the IntegratedWLSConnection to look at the applications that are available.&lt;br /&gt;
(By the way, you should see there all the ADF libraries, DO NOT UNDEPLOY THEM)&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;img alt="wls001.jpg" src="http://blogs.oracle.com/shay/images/wls001.jpg"  /&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Next you can locate your application, right click it and undeploy it.&lt;br /&gt;
&lt;img alt="wls002.jpg" src="http://blogs.oracle.com/shay/images/wls002.jpg"  /&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
That's it. &lt;br /&gt;
You should now be able to redploy it.&lt;br /&gt;
&lt;/p&gt;
      
   &lt;img src="http://feeds.feedburner.com/~r/ShayShmeltzersWeblog/~4/azZlxLfmy8Y" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://blogs.oracle.com/shay/2009/08/removing_applications_from_you.html</feedburner:origLink></entry>

</feed>
