andrewducker (
andrewducker) wrote2007-01-01 01:45 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Starting the New Year the way it's supposed to be
I have, so far, two entries in my New Years "Things to do" list. The second one is "Write a Livejournal client" - something which got started yesterday afternoon, and has been continued this morning.
I've mostly spent the time learning a bit about XML-RPC, finding a handy framework for doing such with C#, and playing around with it until I could get _something_ working. As of five minutes ago I finally have it sending a valid login request and retrieving a list of friends groups and journals with posting access.
The finished product will, eventually, allow you to edit friends lists in a much more usable way, as I'm forever pissed off with the limitations of both the website and the semagic client. This will have to wait, however, as I'm now going to grab a quick shower and head into town.
I've mostly spent the time learning a bit about XML-RPC, finding a handy framework for doing such with C#, and playing around with it until I could get _something_ working. As of five minutes ago I finally have it sending a valid login request and retrieving a list of friends groups and journals with posting access.
The finished product will, eventually, allow you to edit friends lists in a much more usable way, as I'm forever pissed off with the limitations of both the website and the semagic client. This will have to wait, however, as I'm now going to grab a quick shower and head into town.
no subject
no subject
no subject
no subject
ILJLogin loginProxy = XmlRpcProxyGen.Create();
LoginRequest loginRequest = new LoginRequest("test","test");
ILJLoginResponse ljLoginResponse = loginProxy.login(loginRequest);
Which I could simplify further, but I'd lose some flexibility.