Also for Jetty you need to add
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
as a dependency or you get cannot find SAAJ...
Type: Posts; User: jgardner16; Keyword(s):
Also for Jetty you need to add
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
as a dependency or you get cannot find SAAJ...
Ok actually it appears that the problem is you need to include
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
as a...
ok I figured it out ha need to add these dependencies
<dependency>
<groupId>javax.xml.soap</groupId>
<artifactId>saaj-api</artifactId>
...
This has probably been talked about before but seems like when I run my service with java 1.6 I am getting this error. I read one post that said to use SAAJ 1.3.1 jar but looking in the maven repo...
Thanks that seems to have fixed it.
So this is weird this works fine in Tomcat seems to be a problem with jetty. What a pain.
By the way I running the application in jetty using maven plugin.
Hi I am confused by this using soap ui if I post
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sch="http://test/test/schemas">
<soapenv:Header/>
...
Hi,
So I created a new grails project in STS and do run-app and I get
ERROR context.GrailsContextLoader - Error executing bootstraps: Error creating bean with name 'pluginManager' defined in...
Hi,
Is it possible to add intercept-ur patterns on the fly. For example we have an app with a uri like /test/. So we add /test1/ is there a way to set permission for test1 without restarting the...
Hi Sorry if this has been answered before but this is a simple question. I have a registration form and would like to post the values to a restful webservice as JSON and have the spring dervice...
Transactions were not working because the database was mysql using MyISAM which doesn't allow for rollback. Switched to Oracle and everything is working great.
Sorry if this has been asked else where but I have a save method that save a userrecord. The user record has a list of email address objects and the email address has a unique constraint on the...
Hi,
Not sure if this is the right server for this but I am having a problem with configuring WS Security with cxf. I have the following crx-config.xml
<import...
THis has probably been asked before but I can't find any info on this so here goes.
I configured my groupAuthoritiesByUsernameQuery and everything seems ok. I just don't know how to make this...
Hi,
Using Spring 2.0 is it possible to bind to active directory for authentication the pull the users roles from the database? How would the config for this look?
So we are trying to secure a directory using spring security 2.0. Configured Apache to sent *.html requests to tomcat however have found that if the html file is in Apaches docroot it will serve the...
Hi I am having a strange problem with Safari. When I set default-target-url='/index.html' always-use-default-target='false' in safari will always go to index.html. However in other browsers it will...
Hi I deployed my spring MVC app to jboss and I am getting the following error
java.lang.NoClassDefFoundError: org/antlr/runtime/RecognitionException
Any ideas about what might be causing this.
Hi I have the same problem on my Ubuntu desktop I get
java.lang.NoSuchMethodError: method org.objectweb.asm.ClassVisitor.visit with signature...
Well actually the probem I am having is that acegi is not pulling the roles from LDAP. I am pretty new to LDAP so I am not sure how to assign the roles in LDAP so Acegi can read them.
I have configured Acegi to authenticate using LDAP the only problem is the roles are not being assigned to the user however in the log it says
Added following external roles to: testuser...