I think i figured out my configuration for Mulitple IDPs and SPs for an IDP initiated scenario. My metadata configuration -which was confusing for me to figure out - is
<bean id="metadata"...
Type: Posts; User: jkookie; Keyword(s):
I think i figured out my configuration for Mulitple IDPs and SPs for an IDP initiated scenario. My metadata configuration -which was confusing for me to figure out - is
<bean id="metadata"...
Thanks for the comment Ian. I've customized a few classes as well. I'm coming to the conclusion that i'll have to customize filling the SAMLContext too, I was hoping that i could somehow use the...
I think the right thing to do is define multiple SPs in one metadata.xml, but not sure it will work. I tried a simple test where i included 2 ServiceProvider Entities in the metadata, defined one of...
Ok, Haven't had the chance to test with multiple IDPs yet, but i think i know what I'm doing wrong. I think I should be using one metadata.xml file for all my Service Provider configurations. Each SP...
I have a working setup of an IDP initiated SAML sign on to our single SP. The metadata configuration is as shown:
<bean id="metadata"...
Hi I'm having a similar issue. Did you manage to resolve your issue?
Thanks for replying.
I use hibernate as my ORM tool, and have DAO classes which retrieve data(not just one DAO per table) for different criteria. So, instead of simple CRUD-style methods like...
Hi, i have a DAO with about 16-17 methods( Is that too many?). The DAO deals with looking up, saving details to a table which holds a company's details.
Now, i understand that coding to interfaces...
I wrap a process with a declarative transaction and then in the process , I convert a string and set it to the an object's clob property using the Hibernate.createClob method.
However, when saving...
The filters and the filter-mappings in my web.xml weren't matching up. So the ExceptionTranslationFilter was never being called.
I fixed the part where the page is redirected to the login page for an unauthenticated user when the full url is not given. It turned out to be a welcome-file element in web.xml.
But if i try to...
I just ugraded my working 0.8.3 jar to the latest 1RC2. I've finished all the code and filter changes - atleast that's what i think.
The login page for my app is -...
The xml bean spec i wrote above is right. I found out that there was an error with the way i was testing this.
Thanks everybody.
I realized that the reason i didn't see the interceptor kicking in at any point was because i was calling the actual bean instead of the proxyFactoryBean. Once i changed that, i can see the stopwatch...
Hi, i'm trying to obtain an estimate for a particular method's execution time. The performanceMonitorInterceptor seems to be just what i'm looking for.
My interface is: com.ott.gt.queue.IQueue
One...
Hi all , we recently incorporated the acegi security system into our app ( was a replacement for weblogic's authentication/authorization system). A few details about our configuration -
...
Just needed an update of adobe..sheesh.
Hi i have a simple report written using iReports. All the fields that are printed in my pdf report are parameters passed through a HashMap. My report doesn't require a database connection.
In my...
I saw a familiar problem being discussed in a few posts where, the getAsText method wasn't being called in the CustomPropertyEditor. I had a similar problem.
I had a custom property editor written...
Phew, i created another applicationContext file and loaded that using the contextLoadListener, and moved the message resource bean spec from my xxx-frm-config.xml to the applicationContext.xml and...
Hi, anybody? All typemismatch errors appear in an ugly format on my form on bind errors. I still can't seem to get spring read of the properties file for meaningful errors.
:(
Hi everybody, I can't seem to find a solution to this for a few days now. I can't read off of the ApplicationResources.properties file.
Here is how i have my application configured.
web.xml
...
OK, i guess i should've realized that i can't assign null to a primitive int/double and have to assign a '0.0' if the field is empty ...any thoughts?
Thanks Simon, i read up a little about overriding the initbinder.
I wrote this and it works.
protected void initBinder(HttpServletRequest request,
...
I have a form extending SimpleFormController , which works well. I managed to integrate the commons-validator using the spring-validation bit from the springmodule's project.
Validation works...