Results 91 to 105 of 110
-
03-08-2011, 19:36 #91
Hmm I got a Socket Protocol not specified exception or something like that. Then I changed it and it worked. For me it's reproduceable.
-
03-08-2011, 19:49 #92
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
I'm currently sitting in a restaurant for dinner. Can you send me your instant messaging details for further communication via pm?
-
03-08-2011, 20:39 #93
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
Found the error and fixed it
-
04-08-2011, 10:29 #94
-= TeamSpeak Team =-
- Join Date
- Jun 2008
- Location
- Krün, Germany
- Posts
- 464
"TS3 Client" should be correct. We accidently changed it to "TS3 CLIENT" previously, but that appeared to be a bad idea because of some applications breaking, so it is back to "TS3 Client" again with revision 14933.
Or just ignore case in your check, then you are on the safe side. But once we release 3.0.0 in stable channel, there should no longer be many clients with "TS3 CLIENT".
Sorry for the confusion. :-)
-
04-08-2011, 11:18 #95
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
I'm doing a case insensitive string comparison now.
So it doesn't matter anymore.
-
11-08-2011, 09:42 #96
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
New Version 1.0.0.0 (Final)
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 to ClientDbInfoResponse class (Release change)
- Added property LastServerConnectionHandlerId to IQueryDispatcher, Async- and SyncTcpDispatcher
- Added basic support for Client Query to AsyncTcpDispatcher
- Added basic support for ClientQuery to SyncTcpDispatcher
- Removed UnreadMessages property of ClientInfoResponse class (RC2 change)
- Added Sample apps for most technologies
- Changed AsyncTcpDispatcher to raise events on the same thread it was created on
- Added method DetachAllEventListeners to TcpDispatcherBase and AsyncTcpDispatcher which detaches all methods attached to any event on the dispatcher
- Fixed bug in AsyncTcpDispatcher that the ServerClosedConnection event was fired twice when disposing the AsyncTcpDispatcher and a connection to a server was established
I'll start restructuring the lib with the next release to strongly support Client-Query. A lot of class names will change.
Please report bugs and feel free to criticize me
SCO
-
31-08-2011, 03:04 #97
Hello,
I've started documentation a while back. But I'm working on it again.
I currently have been working on the Query Runner Class, but I will be working on a lot more classes coming up soon.
Just to give you an idea how nost of it works, I've added code examples on most pages with C#, and vb.net code syntax.
Check often for new pages, updates, etc...
Enjoy
-
28-04-2012, 14:26 #98
-= TeamSpeak User =-
- Join Date
- Jan 2011
- Location
- Poland
- Posts
- 11
How to login with AsyncTcpDispatcher? When i'm trying login i get ErrorId = 0, IsErroneous = true and rest null. With SyncTcpDispatcher every thing works. What am i doing wrong?
-
28-04-2012, 16:39 #99
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
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 query-runner when this event was first called.
So wait for this event to fire.. than call login...
-
28-04-2012, 18:43 #100
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
New Version 1.0.5.0
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
- Renamed Properties AntiFloodPointsNeededIPBan and AntiFloodPointsNeededCommandStop of ServerInfoResponse to AntiFloodPointsNeededIPBlock and AntiFloodPointsNeededCommandBlock
- Added new VirtualServerStatus "OtherInstance"
- Added Property OriginServerId to WhoAmIResponse
- Removed check for server name when creating a new server using QueryRunner.CreateServer (command servercreate wont need an virtualserver_name anymore, will use the template default name instead)
- Removed Properties: AntiFloodPointsNeededWarning, AntiFloodPointsNeededKick, AntiFloodPointsNeededBan, AntiFloodBanTime from ServerInfoResponse class. Added Properties: AntiFloodPointsNeededIPBan and AntiFloodPointsNeededCommandStop to ServerInfoResponse class
- Fixed GetChannelConnectionInfo. Replaced parametername "channelid" with "cid"
- Added basic support for client query (there are two namepsaces now: Client and Server), thats why QueryRunner and Co. does exist twice
Please report bugs and feel free to criticize me
SCO
-
19-06-2012, 00:20 #101
-= TeamSpeak User =-
- Join Date
- Jan 2011
- Location
- Poland
- Posts
- 11
In silverlight when i want to connect i get Socket Error Access Denied, how to fix this? In WPF it is OK.
-
19-06-2012, 19:11 #102
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
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 TS3-Query-Port to be within this range. And second the server on which the TS3-Server is running need to have a policy server providing a credentials xml which allows silverlight clients to connect on this port range.
You can read more about it here:
http://msdn.microsoft.com/en-us/libr...(v=vs.95).aspx
-
13-07-2012, 15:41 #103
-= TeamSpeak User =-
- Join Date
- Jul 2012
- Posts
- 3
I added the reference as normal in Microsoft Visual C# Express and if i type "using TS3QueryLib.Core.Query;" there is an Error:
"The type or namespace name 'Query' does not exist in the namespace 'TS3QueryLib.Core' (are you missing an assembly reference?)"
Thanls for help...
-
13-07-2012, 16:10 #104
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 115
Have a Look at your Project Settings. Maybe you See using .net Framework client Profile. use the full Framework.
-
13-07-2012, 17:43 #105
-= TeamSpeak User =-
- Join Date
- Jul 2012
- Posts
- 3
Target Framework: Set to ".NET Framework 4.0.3" still not working
Problem is only in the newest version...Last edited by iMoritz; 14-07-2012 at 13:50.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
BUG? Repeated query client connect/diconnect
By HHD_HELLBOUND in forum Bug ReportsReplies: 5Last Post: 09-02-2012, 08:04 -
[Solved] Normal user ban others?
By Morfi in forum Server SupportReplies: 21Last Post: 23-03-2010, 15:13 -
Beta 15 Crashing?
By MaXXimus in forum Linux / FreeBSDReplies: 4Last Post: 25-01-2010, 11:52 -
Query Port connection returns "ERROR: invalid id"
By Polecr0c in forum [TeamSpeak 2] Server SupportReplies: 2Last Post: 11-05-2006, 09:05


Reply With Quote
