• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

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]
 
I am not a spy. Definitely. Definitely not a spy. Not me. No way. But this tiny ad ...
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic