Oracle Enterprise Pack for Eclipse 11gR1 Released

From the description on the product page, this is a new version of WebLogic Workshop, but without the WebLogic Portal tools. WLP has a new release due out soon, and Oracle is focusing on their other IDE, so this makes sense, even if it doesn’t make old-time WebLogic developers feel all warm and fuzzy (or remembered).

If you found this interesting, please share.

© Scott S. Nelson

Interesting Post on WLP / Beehive Custom Events

I ran across this while working on tweaking some of my own flows. As luck would have it, I never got a chance to test it out, but wanted to keep a note on it just in case I run across it again:

Struggling BEA WLP fireCustomEvent in begin action

If you found this interesting, please share.

© Scott S. Nelson

SVN Subversive Plugin For WebLogic Workshop 10.2

The usual URL at http://download.eclipse.org/technology/subversive/0.7/update-site/ doesn’t work for Workshop for some reason. This URL does: http://www.polarion.org/projects/subversive/download/1.1/update-site/

If you found this interesting, please share.

© Scott S. Nelson

Suppress Eclipse Warnings Annotation

When I search for something too many times, I try to remember to post it here.  So, to drop the warnings for type safety when you know all is fine, you can do the following:

@SuppressWarnings("unchecked")
List<CustomerBean>    customers    = (List<CustomerBean>)session.getAttribute(CSRD_CONTACT_LIST);

 

If you found this interesting, please share.

© Scott S. Nelson