radius

What (good) Java RADIUS server libraries are out there?

I've only been able to find two thus far, namely TinyRadius, which itself discourages production use and AXL, which is pay-only. JRadius seems tied to FreeRADIUS, which isn't a library and will need a lot of cajoling to function like one. ...

Clearbox Radius attributes through SQL statement?

I authenticate users through Radius, and I have the option to assign Radius attributes through SQL statements, but I can't for the life of me find any documentation on this. Anyone know the proper syntax? ...

Test RADIUS client implementation

We have a RADIUS client implementation that doesn't quite conform to RFCs (either of them). I'd like to run some sort of unit tests against it to spot the bugs easily. As I'm probably not the first person in the world trying to do that, I believe there must be some sort of conformace test server. The question is: how to find it? The cu...

jQuery animate css border-radius property (webkit, mozilla)

Is there a way in jQuery to animate the css3 border-radius property available in webkit and mozilla browsers? I haven't found a plugin that will do it. -webkit-border-radius -moz-border-radius Thanks. ...

Best method for working out locations within a radius of starting point

I'm aiming to create a feature in my latest project preferably using PHP. When each user signs up they are going to input their postcode. Then hopefully I will be converting this to lat/long using Open Street Map. Anyway, I want to be able to find out other users located near the current user. I have seen a lot of people using the Have...

Need help with ruby radiant cms

I have some hidden pages like this: /staff John Bob Mike In all this pages i have extended content, like photo, bio and additional info. I make this, to have logical structure and quick edit without editing radiant code. My question is, how i can with base radius functional get access to this pages in this code: <r:find url="/sta...

finding objects within radius.

looking for a light weight way to find objects within a radius. so far the answer that is obvious to me is go through each object, comparing its x and y position, with the center of the radius. example: Turret - looking for targets in radius. TargetArray - array of possible targets. WithinRangeArray - array we push applicable targets...

Using Linq to Sql to find ZipCodes within Radius distance

I have a database table of zipcodes with their Lat/Longs. I'm trying to find some code that shows a query that takes a zipcode and x miles and then return set of results that include all the zipcodes that are within that radius (precision is not very important - as long as it's close). Can this be done with a Linq to SQL query so I don...

SQL: Determine if one coordinate is in radius of another

Lets say i have a Table of rows that contain coordinates. what would be the best way to pull only the rows of coordinates which are in the radius of a another coordinate? To simplify my question, i'm giving the following example: Table like: Columns: Latitude, Longitude. Row1: 23.44444 24.55555 Row2: 32.44444 28.22222 Row3: ...

Webkit button: color overflows round corners

I'm trying to make a rounded button using -webkit-border-radius This gives me this button (in Safari): You can see that the color overflows in the rounding. I tried changing border size and radius, and it doesn't help. Is this a rendering bug with Safari or something? ...

How to animate specific corners of the border radius when hovered in and out? (Firefox)

I know how to do this for webkit browsers but i'm kinda stuck in firefox. The code below just animate the top-left corner while the rest just snap into places. Here's my code: $('img').hover(function(){ $(this).animate({ MozBorderRadius: '50px 50px 0px 0px'}, 900); }...

Know any AAA software as a service solution?

Hello, I'm looking for an Radius AAA (Authentication, Authorization, and Accounting) SaaS solution. If no such thing exists I would be glad to find a ready to use virtual apliance that performs the task, preferably with a Web interface. I will prefer FOSS solutions. Thanks! P. ...

freeradius radacct table AcctStartTime and AcctStopTime recordings is wrong

I am running freeradius -V 2.1.0 on Ubuntu and it was working perfect until now. It used to work like this... when a user connect to internet it puts a current time on AcctStartTime column and null value on AcctStopTime column of radaccts table, and when a user logs out then it updates the null column(AcctStopTime) with the current time....

Calculate GPS coordinates to form a radius of given size.

I've come up with a method that takes a coordinate and a range (in miles) and return a list of coordinates that form a circle around the origin. I seem to have made some progress with it, but I have an issue with getting the range part down. private const Double LAT_MILE = 0.0144839; private const Double LONG_MILE = 0.0190693; public ...

How do I get a thin border in qtip with round corners?

I try to get a thin border with round corners for the tip in qtip, using: border: {width: 1, radius: 7, color: "#B8E25E"} (Like explained here: http://craigsworks.com/projects/qtip/docs/tutorials#borders) But the border is then getting quite thick, like 7 or something, is there a way to get a thin border with round corners? ...

border radius misbehaving.

In FF this border radius doesn't seem to want to work. Editable link here. the right radius of the big box should be 0px and the left of the small boxshould be 0 to join them.. ...

Zip Code Radius Search question...

I'm wondering if it's possible to find all points by longitude and latitude within X radius of one point? So, if I provide a latitude/longitude of -76.0000, 38.0000, is it possible to simply find all the possible coordinates within (for example) a 10 mile radius of that? I know that there's a way to calculate the distance between t...

Extending the Radius Protocol

I am using radius protocol to for sending some values from client to server. Within that, I am using vendor-specific value pairs, and defining our own types. However, the value length for vendor-specific data is 255, and our data length is crossing it. Please can any one tell me how to incorporate data longer than 255 bytes? ...

Query points using SQL Server 2008 geography type

I have a table with the geography type and I want to run a query to find all rows within 25 miles of a specific lat/long. What would the query look like to accomplish this? ...

ActionScript lineStyle Thickness to fill a circle

i'm trying to build a circle using lines. each line starts in the centre of the circle and is as long as the circle's radius. using a loop along with sine and cosign waves, i can build the circle using the sine and cosign to mark the coordinates of the lineTo parameter. my problem is with the line thickness parameter of lineStyle. i ...