On Tue, 20 Oct 2015 15:14:57 -0200, Krishna Kanth Abburi Venkata
wrote:
Hi all,
Hi!
I am having a weird problem with Tapestry-Spring-Security. I am using
tapestry-spring-security 5.0, When i am trying to Inject
AuthenticationManager
Hi all,
I am having a weird problem with Tapestry-Spring-Security. I am using
tapestry-spring-security 5.0, When i am trying to Inject
AuthenticationManager(org.springframework.security.authentication.AuthenticationManager)
in a tapestry page it works fine , when i am trying to Autowire the same
On Mon, 19 Oct 2015 10:22:03 -0200, Nathan Quirynen
wrote:
As we are already using it mainly for authentication (users and roles,
filters, ..), so we would prefer keep using it for new authorization use
cases. What I need is possible with Spring Security, I'm just not sure
how to set it all u
wrote:
Hi,
Hi!
Is it possible with the tapestry-spring-security module to create
your own PermissionEvaluator like in the following link?
http://www.borislam.com/2012/08/writing-your-spring-security-expression.html
My question is about step 1 on that page; the configuration. How can
On Fri, 16 Oct 2015 13:25:25 -0300, Nathan Quirynen
wrote:
Hi,
Hi!
Is it possible with the tapestry-spring-security module to create your
own PermissionEvaluator like in the following link?
http://www.borislam.com/2012/08/writing-your-spring-security-expression.html
My question is
Hi,
Is it possible with the tapestry-spring-security module to create your
own PermissionEvaluator like in the following link?
http://www.borislam.com/2012/08/writing-your-spring-security-expression.html
My question is about step 1 on that page; the configuration. How can I
do this with the
n
Am 15.07.2014 16:16 schrieb "TNO" :
Hello,
Is there anybody who already use tapestry-csrf-protection with
Tapestry-Spring-Security ?
tapestry-csrf-protection works out of the box with t:form, but
Tapestry-Spring-Security works with is a simple html form and uses the
Spring HttpServlet
pestry form.
>> Best regards
>> Eugen
>> Am 15.07.2014 16:16 schrieb "TNO" :
>>
>> Hello,
>>>
>>> Is there anybody who already use tapestry-csrf-protection with
>>> Tapestry-Spring-Security ?
>>>
>>> tapestry-csrf-p
ugen
Am 15.07.2014 16:16 schrieb "TNO" :
Hello,
Is there anybody who already use tapestry-csrf-protection with
Tapestry-Spring-Security ?
tapestry-csrf-protection works out of the box with t:form, but
Tapestry-Spring-Security works with is a simple html form and uses the
Spring HttpServ
Hi,
You can login programatically in onSucces function of a tapestry form.
Best regards
Eugen
Am 15.07.2014 16:16 schrieb "TNO" :
> Hello,
>
> Is there anybody who already use tapestry-csrf-protection with
> Tapestry-Spring-Security ?
>
> tapestry-csrf-protection work
Is there anybody who already use tapestry-csrf-protection with
Tapestry-Spring-Security ?
tapestry-csrf-protection works out of the box with t:form, but
Tapestry-Spring-Security works with is a simple html form and uses the
Spring HttpServletRequestFilter.
I'm using in the login form but
Hello,
Is there anybody who already use tapestry-csrf-protection with
Tapestry-Spring-Security ?
tapestry-csrf-protection works out of the box with t:form, but
Tapestry-Spring-Security works with is a simple html form and uses the
Spring HttpServletRequestFilter.
I'm using in the
Hi,
I'm trying to identicate automatically an user with a string token in an
url.
Example : www.toto.fr/mypage/mytoken
I'm trying to do this using the setupRender of myPage by doing this :
public void setContext(String tokenKey) {
UserDetails ud = loadUserByUsername(tokenKey);
Thanks !
Shing
- Original Message -
From: antalk
To: users@tapestry.apache.org
Cc:
Sent: Thursday, February 21, 2013 3:11 PM
Subject: Re: PlasticClassImp locked error in Tapestry Spring Security
And fixed, also added a testcase for this issue
--
View this message in context
And fixed, also added a testcase for this issue
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/PlasticClassImp-locked-error-in-Tapestry-Spring-Security-tp5720124p5720145.html
Sent from the Tapestry - User mailing list archive at Nabble.com
Let me have a look at it ;)
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/PlasticClassImp-locked-error-in-Tapestry-Spring-Security-tp5720124p5720144.html
Sent from the Tapestry - User mailing list archive at Nabble.com
I think you're hitting this issue:
https://issues.apache.org/jira/browse/TAP5-1837
The current tapestry-spring integration attempts to add all spring beans to
the registry, including abstract beans. A check for
BeanDefinition.isAbstract() needs to be added in SpringModuleDef.
--
View
Hi, I am having following spring bean in mine context
For this bean I am getting following exception:
Maybe someone know solution for that problem and will give me hint how to
solve it ?
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Tapestry-Spring-Abstract
> why not decorate the org.apache.tapestry5.ioc.Messages interface and why
decorate ComponentMessagesSource
Only services defined in tapestry's IOC registry can be decorated.
ComponentMessagesSource is a service, Messages is not (it's the result of
calling a method on a service).
> is there a good
If we want to use decorators, why not decorate the
org.apache.tapestry5.ioc.Messages interface and why decorate
ComponentMessagesSource. Also, is there a good example for me to follow for
decorating the interface.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Using-Pers
You need to contribute ComponentMessagesSource service:
@Contribute(ComponentMessagesSource.class)
public static void contributeComponentMessagesSource(
@Value("com/example/my-messages1") final Resource myMessage1,
@Value("com/example/my-messages2") final Resource myMessage2,
final OrderedConfig
On second thought, MessagesSource is part of the private API so shouldn't be
referenced by your code. Decorate ComponentMessagesSource [3] instead.
[3]
http://tapestry.apache.org/5.3.5/apidocs/org/apache/tapestry5/services/messages/ComponentMessagesSource.html
--
View this message in context:
Use a decorator [1] to decorate MessagesSource [2] and provide your own
implementation for getMessages()
[1] http://tapestry.apache.org/tapestry-ioc-decorators.html
[2]
http://tapestry.apache.org/5.3.5/apidocs/org/apache/tapestry5/internal/services/MessagesSource.html
--
View this message in co
Hi,
I am working on a Tapestry/Spring project and I am stuck at a problem related
to localization. I am using the Spring implementation of internationalization
and I would like the tapestry components to look for the messages in the spring
message catalog and not in the tapestry message catalog
Hi,
You can use this one: https://github.com/antalk/Tapestry-Spring-Security
I'm using it on a 5.3.5 site without problems.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Using-tapestry-spring-security-with-Tapestry-5-3-5-problem-tp5716078p5716094.html
Sent fro
I followed the guide from
http://www.localhost.nu/java/tapestry-spring-security/conf.html
http://www.localhost.nu/java/tapestry-spring-security/conf.html site.
The main problem is AliasContribution. In version 5.2.5 of Tapestry this is
depercated and in version 5.3.5 we can't use that an
terested as I still have an improvement on the latest
> tapestry-spring-security which is apparently not yet present in the fork.
>
> Best Regards,
> Wouter
>
>
>
> --
> View this message in context:
> http://tapestry.1045711.n5.nabble.com/Tapestry-Spring-Security-for-5-4
Hi Daniel,
Do you allow others to commit to your fork as well? Otherwise, I'd be
interested as I still have an improvement on the latest
tapestry-spring-security which is apparently not yet present in the fork.
Best Regards,
Wouter
--
View this message in context:
http://tapestry.10457
I forked lltyk's latest version and made some changes, as I wanted to use
T5.4 for a project I am rewriting.
Uses Tapestry 5.4-SNAPSHOT
Uses Spring 3.1.1-RELEASE
Removed most of the deprecation.
https://github.com/danieljue/tapestry-spring-security
Enjoy.
Deprecation I didn'
Hi ,
ProviderManager is part of the spring-security-core package which is
included as dependency on spring-security-web.
Tapestry Spring Security only depends on spring-security-web and have Maven
resolve the other required libraries. Maybe your project does not define the
correct dependencies
;
> How can there be a configured instance and Tapestry still thinks the
> service is not started?
> The HttpServletRequestFilter with ID "AuthenticationProcessingFilter"
> depends on this service and is 'real'.
>
>
> I'm really lost here, is there anyone who was able to ove
he
service is not started?
The HttpServletRequestFilter with ID "AuthenticationProcessingFilter"
depends on this service and is 'real'.
I'm really lost here, is there anyone who was able to override this
service successfully?
Cheers
Beat
2012/3/15 Beat Durrer :
>
Hi guys
I'm using T5.3.2 with tapestry-spring-security 3.0.3
I want to do some custom redirecting when a user logs in, so I tried
several ways to override the UsernamePasswordAuthenticationFilter of
tapestry-spring-security, but all failed.
The build Method looks like this:
p
spring 3.1.0
There may be some leftover flaws or bugs i did not encounter but you are
welcome to report those !
The library is a maven project hosted at:
https://github.com/antalk/Tapestry-Spring-Security
You'll have to compile and deploy the project yourself for your project.
Have fun.
--
thanks for the code, it's very useful for me too... :)
Nicolás.-
message in context:
http://tapestry.1045711.n5.nabble.com/T5-3-beta-2-Using-Tapestry-Spring-Security-with-5-3-tp4775194p5460157.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
-
To unsubscribe, e-mail: user
Antalk edited his first post :
> The code is now at: https://github.com/antalk/Tapestry-Spring-Security
As I said, It works with Tapestry 5.3 but you'll have to make some little
tweaks for Tapestry 5.3.1 and Tapestry 5.3.2.
--
View this message in context:
http://tapestry.1045711.n5.na
)httpServletRequest.getSession().getAttribute(AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY);
Regards,
Antal
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/keep-username-on-failed-logins-with-tapestry-spring-security-tp5451046p5453806.html
Sent from the Tapestry - User mailing list
/tapestry-spring-security
When using the default T5-Starter Setup, the following repository is used:
https://repository.apache.org/content/groups/staging/
There you'll find it under
com.github.lltyk
tapestry-spring-security
3.0.3
compile
Cheers
Beat
2012/2/3 a
Yes,
I'm interrested to because it could not find a version of this module being
compatible with Tapestry 5.3.x.
Therefor i've build my own version which can be found at :
https://github.com/antalk/Tapestry-Spring-Security
This is version 4.0.0 and fully works with Tapestry 5.3.x
;
> Cheers
> Beat
>
>
>
> 2012/2/2 Beat Durrer
>
>> Hi there,
>>
>> I added tapestry-spring-security 3.0.3 to the T5.3 archetype, following
>> the sample app under
>> http://www.localhost.nu/java/tapestry-spring-security/conf.html
>> Every
bj != null) ? usrnameObj.toString() : null;
}
}
Cheers
Beat
2012/2/2 Beat Durrer
> Hi there,
>
> I added tapestry-spring-security 3.0.3 to the T5.3 archetype, following
> the sample app under
> http://www.localhost.nu/java/tapestry-spring-security/conf.html
> Everythi
Hi there,
I added tapestry-spring-security 3.0.3 to the T5.3 archetype, following the
sample app under
http://www.localhost.nu/java/tapestry-spring-security/conf.html
Everything works fine.
How can I retrieve the username when a user fails to log in (to put it into
the input field again)?
The
Hi,
Where can I find the new version of Tapestry-Spring-Security comptatible
with Tapestry 5.3 ?
Thanks, Tom
Le 01/02/2012 10:13, Florian Parain a écrit :
> Hi,
>
> First of all, thanks a lot for your update.
> Replacing TransformerWorker by PlasticClass might have been pain
3.1.0. We should use AntPathRequestMatcher instead and
then replace RequestKey by RequestMatcher.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/T5-3-beta-2-Using-Tapestry-Spring-Security-with-5-3-tp4775194p5446925.html
Sent from the Tapestry - User mailing list archi
On Wed, Jan 11, 2012 at 4:44 AM, antalk wrote:
> I'm in the process of upgrading our webapps to Tap 5.3.x and we use this
> library for our authentication process. I'm happy to announce that i've
> updated the 3.0.0 trunk of tapestry-spring-security to work with Tapestr
;ve
> updated the 3.0.0 trunk of tapestry-spring-security to work with Tapestry
> 5.3.x.
>
> Now all i need is a repository where i can place the source code from which
> other developers can build the jar themselves.
>
> Antal
>
> --
> View this message in context:
>
Hi all,
I'm in the process of upgrading our webapps to Tap 5.3.x and we use this
library for our authentication process. I'm happy to announce that i've
updated the 3.0.0 trunk of tapestry-spring-security to work with Tapestry
5.3.x.
Now all i need is a repository where i can p
Hi all,
tapestry-spring (5.2.6) depends on spring 3 and not spring 2.5, this poses no
problems when injecting spring 2.5 beans into tapestry, but fails when trying
to inject tapestry services into spring (2.5.x):
Caused by: java.lang.NoSuchMethodError
Hi,
if it's not a burden, can I have a copy of the trunk too, it is still not
available :-(
Even better, if someone has T5.3 compatible version of tapestry spring
security, I would really appreciate someone sending it to me.
Cheers,
borut
2011/9/7 Robert Lentz
> Rado,
>
>
Rado,
Just read your posting
Early this year I contacted Robin about the latest TSS version, as 2.1.0
does not work with T5.2.x.
The trunk version 3.0.0 which uses spring-security-3.0
(http://www.localhost.nu/svn/public/tapestry-spring-security/trunk)
works with T5.2.6 not sure about the
I was in touch with Robin a couple of months ago - I'm also in the boat of
needing to make a choice very soon. He was not actively doing development
on it, but open to contributors.
It looks like the ServiceOverrides is almost a drop-in replacement. Just
rename the method, adjust a few types, and
Thank you guys! I'll be definitely giving Tynamo's security a try.
In the meantime I scanned through the sources of TSS 2.1.0 that I've checked
out from SVN several months ago, and now I have some basic understanding of
what the issue with Tapestry 5.3 is - it removed the deprecated Aliases
servic
worked with Tapestry for a few months now, and decided to
> > try out the new 5.3 beta 2 for a simple web-app. I've been using
> > Spring-Security a lot with my previous Tapestry 5 projects via the
> > Tapestry-Spring-Security module (version 2.1.0), and now I'm
r a few months now, and decided to
> try out the new 5.3 beta 2 for a simple web-app. I've been using
> Spring-Security a lot with my previous Tapestry 5 projects via the
> Tapestry-Spring-Security module (version 2.1.0), and now I'm running into
> some issues, namely getting thi
Guys, I haven't worked with Tapestry for a few months now, and decided to
try out the new 5.3 beta 2 for a simple web-app. I've been using
Spring-Security a lot with my previous Tapestry 5 projects via the
Tapestry-Spring-Security module (version 2.1.0), and now I'm running i
27;t get data source",
namingException);
}
return dataSource;
}
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/tapestry-spring-injecting-with-multiple-implementation-tp3318764p4266441.html
Sent from the Tapestry - User mailing l
Does anybody have experience configuring tapestry-spring-security to use
a ReflectionSaltSource? I've tried a few things and haven't been able
to get it to work. I was able to get the tapestry side wired up as an
alias contribution but spring-security was not configured.
Thanks
>>>> Caused by: java.lang.RuntimeException: No service implements the
>>>> interface org.appfuse.service.UserManager.
>>>
>>> There's no configured UserManager service in your setup. Is it a
>>> Tapestry
>>> or Spring-created
x27;s no configured UserManager service in your setup. Is it a
Tapestry
or Spring-created bean?
It's a Spring-created bean.
So there's no UserManager bean configured in Spring or the Tapestry-Spring
integration isn't working in your configuration/setup.
--
Thiago H.
erManager service in your setup. Is it a Tapestry
> or Spring-created bean?
>
It's a Spring-created bean.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Compiler-error-when-upgrading-from-tapestry-spring-5-0-18-to-5-2-4-tp3368139p3380038.html
Sent fr
So 5.2.x or 5.3 should have JSR 330?
Don't worry about CDI, getting more synergies out of that for Java EE I aim
at helping some of the other frameworks (from Matt's survey[?]) first and
foremost JSF, since it is official part of the JCP like those JSRs, too.
Where applicable, all interested EE f
On Thu, 03 Feb 2011 15:34:23 -0200, m...@raibledesigns.com
wrote:
Caused by: java.lang.RuntimeException: No service implements the
interface org.appfuse.service.UserManager.
There's no configured UserManager service in your setup. Is it a Tapestry
or Spring-created bean?
--
Thiago H. d
On Thu, 03 Feb 2011 14:22:45 -0200, Werner Keil
wrote:
At least in 5.2, is @Inject already coming from the JSR/CDI?
The support for the JSR 330 annotations is already in the Tapestry-IoC
trunk and the latest snapshot. I guess it'll be included in the next
release. CDI is another beast .
er_12dec96c491.java)
at
org.apache.tapestry5.internal.transform.InjectWorker$1.run(InjectWorker.java:67)
... 107 more
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Compiler-error-when-upgrading-from-tapestry-spring-5-0-18-to-5-2
o use the 5.1.0.5
version of tapestry-spring, even if the rest of Tapestry is at version
5.2.4.
On Wed, Feb 2, 2011 at 9:17 AM, m...@raibledesigns.com
wrote:
>
> I'm trying to upgrade my project from tapestry-spring 5.0.18 to 5.2.4. I have
> the following in a test class:
>
&
.
>
>
> http://source.appfuse.org/browse/appfuse/trunk/web/tapestry/src/test/java/org/appfuse/webapp/pages/BasePageTestCase.java?r=HEAD
> --
> View this message in context:
> http://tapestry.1045711.n5.nabble.com/Compiler-error-when-upgrading-from-tapestry-spring-5-0-18-to-5-
provide contextConfigLocation context parameter in your web.xml
2) alternatively you can create a TestModule in which you contribute an
ApplicationContextCustomizer. See here:
http://code.google.com/p/tapestrybook/source/browse/trunk/tapestry-spring/src/main/java/de/t5book/services/AppModule.java
pestry/src/test/java/org/appfuse/webapp/pages/BasePageTestCase.java?r=HEAD
> --
> View this message in context:
http://tapestry.1045711.n5.nabble.com/Compiler-error-when-upgrading-from-tapestry-spring-5-0-18-to-5-2-4-tp3368139p3369288.html
> Sent from
apestry.1045711.n5.nabble.com/Compiler-error-when-upgrading-from-tapestry-spring-5-0-18-to-5-2-4-tp3368139p3369288.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
-
To unsubscribe, e-mail:
y for
doing it which doesn't rely on the internal API.
On Wed, Feb 2, 2011 at 6:17 PM, m...@raibledesigns.com <
m...@raibledesigns.com> wrote:
>
> I'm trying to upgrade my project from tapestry-spring 5.0.18 to 5.2.4. I
> have
> the following in a test class:
&g
Matt uses Tapestry ?[?]
On Wed, Feb 2, 2011 at 10:47 PM, m...@raibledesigns.com <
m...@raibledesigns.com> wrote:
>
> I'm trying to upgrade my project from tapestry-spring 5.0.18 to 5.2.4. I
> have
> the following in a test class:
>
> @ContextConfiguration(loca
I'm trying to upgrade my project from tapestry-spring 5.0.18 to 5.2.4. I have
the following in a test class:
@ContextConfiguration(locations = {
"classpath:/applicationContext-resources.xml",
"classpath:/applicationContext-dao.xml",
"classpath:/
Thank you Alex!
You saved me from a lot of pain!
I checkout the SNAPSHOT version of TSS and it seems to work so far!
Thanks again for this great job.
Happy New Year
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/T5-2-4-Tapestry-Spring-Security-2-1-0
t; My application uses:
> - Hibernate 3
> - Spring Framework 3.0.5.RELEASE
> - Spring Security 3.0.5.RELEASE
> - Tapestry 5.2.4
>
> To link Tapestry and Spring-Security, I use:
> - Tapestry-Spring-Security 2.1.0:
> http://www.localhost.nu/java/tapestry-spring-security/index.h
work 3.0.5.RELEASE
> - Spring Security 3.0.5.RELEASE
> - Tapestry 5.2.4
>
> To link Tapestry and Spring-Security, I use:
> - Tapestry-Spring-Security 2.1.0:
> http://www.localhost.nu/java/tapestry-spring-security/index.html
>
> Unfortunately, the latest version of Tapestry-Sp
Hi!
My application uses:
- Hibernate 3
- Spring Framework 3.0.5.RELEASE
- Spring Security 3.0.5.RELEASE
- Tapestry 5.2.4
To link Tapestry and Spring-Security, I use:
- Tapestry-Spring-Security 2.1.0:
http://www.localhost.nu/java/tapestry-spring-security/index.html
Unfortunately, the latest
taSource;
i get too many class matching error.
What would be best way around this? Will the next version of tapestry allow
the ability to choose which implementation to inject?
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/tapestry-spring-injecting-with-multiple-implementati
f tapestry allow
the ability to choose which implementation to inject?
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/tapestry-spring-injecting-with-multiple-implementation-tp3318764p3318764.html
Sent from the Tapestry - User mailing list archive at
ride
that enabled injection of Spring beans by id. That would be the cleanest
way if you found it.
I hope that helps.
JB
On Sun, Dec 5, 2010 at 4:32 AM, wrote:
> Thank you very much Jonathan,
>
>
> It looks like you're using tapestry-hibernate as well as tapestry-spring.
&
Thank you very much Jonathan,
It looks like you're using tapestry-hibernate as well as tapestry-spring.
I've done a bunch of 2+ database stuff using tapestry-spring + hibernate,
and I've done single-db stuff using tapestry-hibernate, but I've never mixed
hibernate c
It looks like you're using tapestry-hibernate as well as tapestry-spring.
I've done a bunch of 2+ database stuff using tapestry-spring + hibernate,
and I've done single-db stuff using tapestry-hibernate, but I've never mixed
hibernate configuration methods.
Get rid of tapes
Hi!
I am wanting to connect to two databases. In the past I've written
Tapestry apps with just one DB and Spring and Hibernate - no problems.
I see that (currently) there is no way to connect to multiple DBs with
just tapestry-hibernate (although I read on the list archive that
there is a
a runtime error because
> > of a renamed package (org.springframework.security.ui
> > -> org.springframework.security.web).
> >
> > Is there any plans for lifting tapestry-spring-security to support Spring
> > Security 3.0.4.RELEASE?
> >
> > Olle Hallin
> > Senior Java Developer and Architect
> > olle.hal...@crisp.se
> > www.crisp.se
> > http://www.linkedin.com/in/ollehallin
> >
>
E, but I get a runtime error because
> of a renamed package (org.springframework.security.ui
> -> org.springframework.security.web).
>
> Is there any plans for lifting tapestry-spring-security to support Spring
> Security 3.0.4.RELEASE?
>
> Olle Hallin
> Senior Java
.security.web).
Is there any plans for lifting tapestry-spring-security to support Spring
Security 3.0.4.RELEASE?
Olle Hallin
Senior Java Developer and Architect
olle.hal...@crisp.se
www.crisp.se
http://www.linkedin.com/in/ollehallin
Andrey,
I'm glad that it worked, it's no big deal. The free beer offer is much
appreciated :-)
Regards,
Alex K
On Thu, Oct 14, 2010 at 12:53 AM, Andrey Gladilin wrote:
> Alex, it is your right to require free beer from me :)
>
> I changed the version of tapestry-sprin
Alex, it is your right to require free beer from me :)
I changed the version of tapestry-spring-security to 2.1.0 and found a
login page.
Thank you very much!
On Wed, Oct 13, 2010 at 11:32 PM, Alex Kotchnev wrote:
> Andrey,
> I think you might have some versioning issues that you migh
Andrey,
I think you might have some versioning issues that you might want to try
to address first:
1. From the TSS (Tapestry Spring Security) home page, it indicates that you
need TSS 2.1.0 to work w/ T 5.1.05 . You have TSS 2.0.0 with T5.1.0.5
(2009-07-16: Release *2.1.0* is available
not succeed in setting up the tapestry-spring-security.
> I created a default project from maven archetype, line this:
> http://tapestry.apache.org/tapestry5.1/quickstart/.
> I followed instructions from
> http://www.localhost.nu/java/tapestry-spring-security/conf.html
> and used some
Hello,
I can not succeed in setting up the tapestry-spring-security.
I created a default project from maven archetype, line this:
http://tapestry.apache.org/tapestry5.1/quickstart/.
I followed instructions from
http://www.localhost.nu/java/tapestry-spring-security/conf.html
and used some code
* Kai Weber :
> Any ideas? How can I override this service. Btw, I already tried _all_ the
> methods described on the webpage
> http://tapestry.apache.org/tapestry5.1/tapestry-ioc/cookbook/override.html
Fixed it myself. Had a typo in the decorate* method.
Seems, you have to use the decoration ap
Hi,
I have to override a service defined in tapestry-spring-security 2.1.0, T5 is
5.1.0.4:
@Marker(SpringSecurityServices.class)
public static RememberMeServices build(
final UserDetailsService userDetailsService, @Inject
@Value("${spring-security.rememberm
* Kai Weber :
> Any ideas? How can I override this service. Btw, I already tried _all_ the
> methods described on the webpage
> http://tapestry.apache.org/tapestry5.1/tapestry-ioc/cookbook/override.html
Solved it. Had a typo in decorateRememberMeService which should be
decorateRememberMeServices.
Hi,
I have to override a service defined in tapestry-spring-security 2.1.0,
T5 is 5.1.0.4:
@Marker(SpringSecurityServices.class)
public static RememberMeServices build(
final UserDetailsService userDetailsService, @Inject
@Value("${spring-security.rememberm
spring TSS related points)
now looks like that:
...
/*
* http://www.localhost.nu/java/tapestry-spring-security/conf.html
*/
public static UserDetailsService buildUserDetailsService(
@Inject UserDAO userDao) {
System.out.println("Building UserDetailSe
into this stackframe and debug step by step to see what's happening after
user retrieval.
Note that we use spring-security (w/o tapestry-spring-security) at
http://github.com/robink/wooki
2010/6/10 Daniel Henze
> The way I encode the password is using the following create m
e,
I installed Tapestry-Spring-Security and followed the installation and
configuration advise. But I have no luck as the login does not work for
me
and always returns "Username and/or password was wrong!". There was a
recent
post about the "Bad credentials" and it was the wrong SaltS
ds.
>
> Daniel
>
> Am 10.06.2010 09:51, schrieb Christophe Cordenier:
>
> Hi
>>
>> I guess you already did it but have you checked if the password is stored
>> in
>> SHA1 ?
>>
>> 2010/6/10 Daniel Henze
>>
>>
>>
>&g
e,
I installed Tapestry-Spring-Security and followed the installation and
configuration advise. But I have no luck as the login does not work for me
and always returns "Username and/or password was wrong!". There was a recent
post about the "Bad credentials" and it was the wrong Salt
1 - 100 of 430 matches
Mail list logo