SoapBox Framework<br>Mobile Edition
| Author |
|
| Company |
Winfessor, Inc. |
| Source Code Available |
No |
| License Type |
Commercial |
| Submitted On |
February 19, 2003 |
| Updated on |
July 25, 2007 |
| .NET Framework |
1.x |
| Cost |
$199 |
Description
The Ultimate in Mobile Instant Messaging for .NET
Innovate using instant messaging from ASP.NET, C#, J#, VB.NET, or the Compact Framework.
Create custom instant messaging solutions with .NET. Provide interoperable instant messaging with Jabber, MSN Messenger, AIM, Yahoo Messenger, and ICQ.
Send messages in any language. There's full support for creating applications using multiple languages including German, Spanish, Korean, Italian, and Chinese.
Enable your application to communicate using the standard Jabber/XMPP protocol. Target any of your enterprise devices with instant messaging including devices that support Windows, Pocket PC, Smartphone, Linux, and BSD.
Syntax Example
'There are numerous examples available in VB.NET, C#, and J#.
'Includes 4 larger examples in C# and VB.NET including an Example Chat Client with Buddy List
Public Sub SendMessage()
With New Session("jabber.org", 5222)
.OpenStreamSynchronous()
'*** Log into the Jabber Server
Dim UserJID As New JabberID("someone@jabber.org", "Work")
Dim AuthLogin As New IQ.Auth.AuthDigestPasswordRequest(UserJID, "password", .SessionID)
Dim response As Packet = .Send(AuthLogin, 5000)
If Not TypeOf response Is IQ.IQResultResponse Then
MessageBox.Show("Login Failed")
Return
End If
'*** Send a message to the target user
Dim TargetUser As New JabberID("target@jabber.org")
.Send(New MessagePacket(TargetUser, UserJID, "Test Subject", "Test Body"))
MessageBox.Show(String.Format("Message Sent to User: {0}", TargetUser.ToString))
.CloseStream()
End With
End Sub
Screenshots
Reviews
Submit a review