Not to be outdone by Google, Amazon.com, eBay and the like, we have ourselves a bunch of snazzy webservices (what?) here at Buzzsaw.
If you're a coder (even a cowboy coder), you can use these to access information about a Buzzsaw site - including its members and some attributes about those members.
The WSDL for Buzzsaw's Member management is here.
The WSDL for Buzzsaw's Attribute service is here.
You'll need a valid Buzzsaw login to access either one; use this format:
Sitename\Username
Password
Example: "Mysite\Bud Melman" "SnazzySpecs1234"
Here's some sample code, courtesy of developer Dave Watt, that gives you a .NET example of how to access Buzzsaw via its webservices API. (Unfortunately the blog software doesn't want the indentation to show up when I paste it in, so you get to imagine that it's neatly formatted as it was when I got it from Dave.)
Module Module1
Sub Main()
Dim test As String = ""
Try
Dim service As New projectpoint.MemberManagement.MemberManagement()
System.Net.ServicePointManager.Expect100Continue = False
Dim NewCreds As New System.Net.NetworkCredential("User", "PWD", "Site")
Dim NewCache As New System.Net.CredentialCache
NewCache.Add(New Uri(service.Url), "Basic", NewCreds)
service.Credentials = NewCache
test = service.Hello()
Catch ex As Exception
Console.WriteLine(ex.ToString)
End Try
Console.WriteLine(test)
End Sub
End Module
Good luck with it, hopefully you can find new and useful ways to connect to Buzzsaw with this API, which I think is just fantastic.
Jason
R.I.P., Calvin Deforest.