I've added a sample for console applications:
https://github.com/Scordo/TS3QueryLib.Net/tree/master/Samples/Console/Connect
Dont forget to call a dummy command regularly. Otherwise TS-Server will...
Type: Posts; User: Scordo; Keyword(s):
I've added a sample for console applications:
https://github.com/Scordo/TS3QueryLib.Net/tree/master/Samples/Console/Connect
Dont forget to call a dummy command regularly. Otherwise TS-Server will...
Repository is online here:
https://github.com/Scordo/TS3QueryLib.Net
Hello,
I've been very busy and I dont think that I'll have any time in the near future for the project.
I'll put the project on github as soon as possible.. so you can fork and contribute with...
Have a Look at your Project Settings. Maybe you See using .net Framework client Profile. use the full Framework.
In silverlight there are some security restrictions you need to know. First of all silverlight can only communicate on a specific port range. So you will need to change the listening port of your...
Hello,
for my TS3QueryLib.Net I implemented a method to retrieve log entries using the queryport.
The problem I have is how to retrieve all the log entries? The query is limited to a max. of 100...
I've release a new version supporting changes introduced by server version 1.0.5.0:
http://ts3querylib.codeplex.com/releases/view/86852
Changes:
- Added ClientIP property to ClientListEntry
-...
When using the AsyncTcpDispatcher be aware, that there is an event "ReadyForSendingCommands" on the AsyncTcpDispatcher class. You need to attach to this event and only start command against the...
Found another problem:
clientupdate client_input_deactivated=1 or clientupdate client_input_deactivated=0
results in a "hanging" connection. Just type it using a telnet client and you'll see it.
The command "channelconnectinfo" does not work as expected. It always returns the info of the channel I'm currently in, even when I provide an id of a different channel using the channelid parameter....
I've release the final version of this lib:
http://ts3querylib.codeplex.com/releases/view/71586
Changes:
- Added LastIP property to ClientDbEntry class (Release change)
- Added LastIP property...
I'm doing a case insensitive string comparison now.
So it doesn't matter anymore.
Found the error and fixed it
I'm currently sitting in a restaurant for dinner. Can you send me your instant messaging details for further communication via pm?
Mhh case shouldn't matter, because all string comparison is made case insensitive. Will check that when I'm back home in an hour.
The reason I'm asking this is that I wrote a C# lib for server query and I would like to reuse as much code as possible when adding support for clientquery. Each command in my lib returns typesafe...
Ist it by design that the channellist command does not provide "channel_needed_subscribe_power" when used with ClientQuery?
The result of channellist using ServerQuery and ClientQuery is different.
I've added basic support for ClientQuery to SyncTcpDispatcher so you can use SyncTcpDispatcher and the QueryRunner to run a few commands against ClientQuery. The one that I found working currently...
It shouldn't be a problem for you to reuse my lib for this scenario. I think the only thing thats needed is to implement is a different TcpDispatcher that handles the new greeting.
German: Toll...
I think I'll support it in future but I wont support it before TS 3 is final. (When I get time I'll do it earlier)
Those guys are changing their API too often. So I'll wait until it's stable.
I dont understand what you mean with "new ClientQueryLib".
Will have a look at it.
I've release a new version supporting changes introduced by server version RC1:
http://ts3querylib.codeplex.com/releases/view/68560
Changes:
- Added support for windows phone 7.1
- Added...
It's possible:
queryRunner.UpdateCurrentQueryClient(new ClientModification { Nickname = "Desired name goes here" });
The version under source control @ codeplex already supports wp7 but i had no verve to release a new version.
I had a quick look at your source through reflector and I saw your message processing isn't perfect. To be honest it's very error-prone. Maybe you should consider using TS3QueryLib.Net instead of...
Sorry for the late response. I have not seen this posting. Here is your answer:
queryRunner.SelectVirtualServerById(1); // the id of the server you've previously created ...
Just to let you know: This project is alive and with the new Windows Phone 7.1 SDK Release I'm going to implement support for Windows Phone 7 - Sockets are available there :).
Due to the recent beta 30 release I've created a new release of the library. You can download it here:
http://ts3querylib.codeplex.com/releases/view/54586
Changes:
- Added new event "TokenUsed"...
I've created a little sample app about how to use the AsyncTcpDispatcher.
You can download it here:
4272
Here is how to get it all mixed up for WPF.
C#
private void button1_Click(object sender, System.Windows.RoutedEventArgs e)
{
ChannelTreeView.ItemsSource =...
An example on how to use the asnyc one can be found within the project "TS3ServerManager" on the project page.
Which dispatcher are you using? Notifications only work with the Async one.
The sync one is, as the name suggests, not meant to be async like events.
I've created a small maintenance release. You can download it here:
http://ts3querylib.codeplex.com/releases/view/54586
Changes:
- Changed greeting check to detect wrong greetings earlier.
-...
Ok, so no prob?!?! As the lib is intended for beta 29. For Versions below please use the correct version.
P.S. I know the reason for the hang is because of the logic added for the new greeting....