Hi, I'm upgrading an application from spring 1.2.8 to spring 2.0.2.
The app deploys as a web application in weblogic 8.1.
I am getting the following exception when starting the server even though...
Type: Posts; User: naor; Keyword(s):
Hi, I'm upgrading an application from spring 1.2.8 to spring 2.0.2.
The app deploys as a web application in weblogic 8.1.
I am getting the following exception when starting the server even though...
I'm trying to avoid using the JMSAdmin utility that registers an MQConnectionFactory in JNDI. I'm trying to configure it directly using a similar Spring config however i'm getting the following...
figured it out.
it turned out that I had to comment out my existing weblogic security in config.xml.
once this was done redirect works fine and i hit the next issue.
when done using...
I've looked into that and enabled debug on our MVC control servlet and related code but i don't see that it is being called at all
naor
I've modified the code to set a JaasGrantedAuthority:
auth = new UsernamePasswordAuthenticationToken(user, perms, new GrantedAuthority[]{new JaasGrantedAuthority("user_role", user)});
and now...
this is the trail of debug i currently get:
Token@5b0c7e: Username: naor; Password: [PROTECTED]; Authenticated: true; Details: null; Not granted any authorities
Oct-09-2005 18:02:45 DEBUG...
i've fixed the bean definition to be:
<bean id="authenticationProcessingFilter" class="net.sf.acegisecurity.ui.webapp.AuthenticationProcessingFilter">
<property...
thanks for your help,
I do use a homegrown MVC framework but the target url for a successful login is allways /secured/redirect.jsp
where should i specify this ACEGI_SECURITY_TARGET_URL_KEY?
...
Hi,
I'm making my first steps to integrate Acegi as a weblogic replacement.
I use the following definition in web.xml:
<welcome-file-list>
...
can you post it then?
I'm just playing with an existing weblogic .war and trying to get it to run with acegi to replace the weblogic providers and have a similar issue...
thanks,
naor
Thanks for the reply,
We use the same jndiTemplate to publish an object in the cluster JNDI and this call actually requires the cluster url in the form we use. (this is how it is specified in...
thanks for the reply.
I will add my vote too
:)
Here is what we see in the log when we use the single server URL:
Oct-04-2005 23:35:32 DEBUG (AbstractRemoteSlsbInvokerInterceptor.java:209) - Obtained reference to remote EJB:...
Hi
we have the following definition for a jndiTemplate:
<!-- remote access to weblogic JNDI -->
<bean id="jndiTemplate" class="org.springframework.jndi.JndiTemplate">
...
Hi,
I'm trying to replace my EJB calls (done through spring) with RMI.
My service is being exported on multiple servers in a cluster.
in the example taken from SpringInAction book the client...
I believe I've found the source for this issue.
thanks for your help.
NY
here is the code i use:
try {coreContext = new ClassPathXmlApplicationContext(beanFile);}
catch (Exception e) {throw new InitializationException("Error initializing SpringService:...
the GTStartup is where the spring container is initialized.
(a weblogic startup class)
the SpringService class simply loads a spring application context
after enabling debug for the org.quartz I still have no clue of what is the cause for failing:
Oct-01-2005 15:49:22 DEBUG (BeanWrapperImpl.java:862) - Invoked write method [public void...
Hey Costin,
Thanks for the tip.
My spring container is invoked from a Weblogic (8.1 sp4) startup class.
the full log is very long but as you can see the failure happens around quartz (the...
not sure what to do. even after setting log4j to debug i still can't see any exception thrown and after initializing quartz the container simply shuts down with no error:
Oct-01-2005 14:23:55...
thanks for your reply,
unfortunately I dont see any error :(
using spring 1.2.4 within weblogic8.1 (loaded from a startup class)
logging using log4j.
any idea?
I was dealing with an issue on a remote location and found myself having to edit bean configurations over a remote shell connection using VI.
I've made a mistake and used "ref=" instead of...
have you tries using import tags?
you can store common beans in one file and inport it from other files that need it.
NY
Hi
I'm new to spring and while trying to run some sample code i got ClassDefNotFound exceptions for objectweb.asm classes.
I followed the advice I found in these forums and downloaded...