• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

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]
 
The government thinks you are too stupid to make your own lightbulb choices. But this tiny ad thinks you are smart:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic