Skip to main content

Posts

ADF css agent

This is different for different versions of browsers but here is what works for me: @agent ie - Internet Explorer - all gecko - firefox webkit - chrome @platform window, linux, macos ,  solaris - self explanatory @version I use this mostly for ie 6, 7, 8, 9 etc work for the separate versions Have not tried this but should work: @agent (touchScreen:none) @agent (touchScreen:single) @agent (touchScreen)

Oracle open world day 4 - final

Keynote device embedded intellegence - internet of things, funny stuff about sensors on cows, intellegent sensors, analytics. Adf architecture - most stuff found on architecture site ( http://www.oracle.com/technetwork/developer-tools/adf/learnmore/adfarchitect-1639592.html ) Adf scalability - opss cache, mds configuration, jrockit mission control, oracle-ateam.com, cdn, coherence. A team has some interesting ideas but one hour is not enough to go into detail. Feet are now officially sore and if I hear internet of things, big data or cloud again it will be too soon. All in all a good conference learned some stuff met some people.

Oracle open world 2013 - day 3

Keynote - modern customer experience to start off my day. ADF fusion architecture manage the modular approach - a bit of information overload on this one but good ideas never the less. Take home fact use artifactory again. Real world adf implementations - wow talk of the day TIA the Danish company did a forms migration in a year very impressive (had help from AMIS) still good though. The german guy from BA just wow one of the most impressive systems I have seen. Approached in exactly the way I think adf should be used  he spoke of the industrilization of software and a framework on top of ADF great. Then the Aussies doing mobile Colab really impressive set of technologies and challenges security using saml. Really great stuff  all around BI publisher - nice overview I really need to do more with our implementation. Hacking your way to a better application - good ideas but mostly a basic overview

Oracle open world day 2

Went to the hcm keynote On mobile and social for two reasons - one I find that the fusion apps stuff gives us a good view on what new features we will get in adf and webcenter also it gives you a good idea in what end users want in an application. What I saw was really impressive the mobile interface is slick and feature rich. Also I have a history with hcm applications so it was good. Then it was on to a user panel on webcenter content the panel of guests where kind of new to content(one only went into production this month) so it was kind of basic but good. The customer feedback dos and donts could not have more rich. The I attended a talk by Sten Vesterli of scott tiger - a very good basics talk on 10 "secrets" of a sucessful adf project. If you are not following these rules you should be. But again very basic. 1. Catalog what components you use and how 2. Under promise over deliver 3. Use poc 4. Package 5. Extend 6. Get and use a wiki 7. Nutcracker this is a de...

Oracle open world 2013 : Day 1

So far so good made it to San Francisco alive will post some feedback on sessions here Keynote on big data : good ideas hadoop nosql integration. Data is our future. Very Cloudy. Not a good start to the Web Center overview few technical presentation problems, turn out not too bad in the end. Adaptive design and enhanced search. Sites looks good on the new version. Form factor really... Oracle ADF Applications in Multiple Layers - best presentation of the day in my opinion focussed on MDS very informative made me realize a post of the mysteries of mds is long overdue. Simplifying Architecture the Restful way - Going to be good when we are on 12c release and this is available. Solaris App performance on Solaris - good tips here on mainly focussed on C++ dev.

ADF: PS5 to PS6 upgrade which turned into a PS7 11.1.1.8 webcenter and 11.1.1.7 adf upgrade

First thing I noticed is that clicking a link on a tab or menu disabled the link, had to style my tabs for this as the tab would vanish while loading - af|panelTabbed::header af|panelTabbed::tab:disabled af|panelTabbed::tab-start { background-image: url("/skins/images/my_tab_start_d.png"); } af|panelTabbed::header af|panelTabbed::tab:disabled af|panelTabbed::tab-content { background-image: url("/skins/images/my_tab_mid_d.png"); } af|panelTabbed::header af|panelTabbed::tab:disabled af|panelTabbed::tab-end { background-image: url("/skins/images/my_tab_end_d.png"); } The other problem was with some really old code that had only transient attributes in a vo - after 5 minutes on a screen and reclicking we would get a null pointer exception. Fixed this by marking passivate transient objects on the vo and cleaning up some old code. Also had a few navigation with web center menu errors. Skyros upgrade will take a lot of work to integrate with our s...

Shibboleth Weblogic SAML2 identity provider making it work [Work in progress...]

I am busy configuring a Weblogic Service Provider that talks to a Shibboleth implementation using SAML2 and this is a log of the problems (mostly with me) I have encountered: Problem number 1)  Unsupported binding type received: urn:mace:shibboleth:1.0:profiles:AuthnRequest For this I had to remove the entry < SingleSignOnService   Binding =" urn:mace:shibboleth:1.0:profiles:AuthnRequest "   Location =" https://server/idp/profile/Shibboleth/SSO " />  in the metadata file I received from my idp and re upload to the   Identity Provider Partners   section in weblogic. This was the stack trace: SecuritySAML2Service  exception info com.bea.security.saml2.binding.BindingHandlerException: Unsupported binding type received: urn:mace:shibboleth:1.0:profiles:AuthnRequest at com.bea.security.saml2.binding.BindingHandlerFactory.newBindingSender(BindingHandlerFactory.java:53) at com.bea.security.saml2.service.AbstractService.getSender(AbstractServ...