• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

trying to get sso cookies working

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've gone through the work of downloading the source from cvs. Created a myusersso.java file and used the code that is in another post. When I run ant against it - it bombs. Complaining ActionServletRequest being depracated. Any suggestions?

[javac] Compiling 336 source files to /Users/admin/jforumsrc-2.1.7/jforum/build/classes
[javac] /Users/admin/jforumsrc-2.1.7/jforum/src/net/jforum/sso/MyUserSSO.java:6: cannot find symbol
[javac] symbol : class ActionServletRequest
[javac] location: package net.jforum
[javac] import net.jforum.ActionServletRequest;
[javac] ^
[javac] /Users/admin/jforumsrc-2.1.7/jforum/src/net/jforum/sso/MyUserSSO.java:18: cannot find symbol
[javac] symbol : class ActionServletRequest
[javac] location: class net.jforum.sso.MyUserSSO
[javac] public String authenticateUser(ActionServletRequest request) {
[javac] ^
[javac] /Users/admin/jforumsrc-2.1.7/jforum/src/net/jforum/sso/MyUserSSO.java:14: net.jforum.sso.MyUserSSO is not abstract and does not override abstract method isSessionValid(net.jforum.entities.UserSession,net.jforum.context.RequestContext) in net.jforum.sso.SSO
[javac] public class MyUserSSO implements SSO {
[javac] ^
[javac] Note: Some input files use or override a deprecated API.
[javac] 3 errors


[originally posted on jforum.net by ddsi]
 
reply
    Bookmark Topic Watch Topic
  • New Topic