HomeCommunityControl GalleryMobile ControlsSoapBox FrameworkMobile Edition

SoapBox Framework<br>Mobile Edition



Submit a Review

1,076 Downloads

18,321 Views


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(&quot;jabber.org&quot;, 5222) .OpenStreamSynchronous() '*** Log into the Jabber Server Dim UserJID As New JabberID(&quot;someone@jabber.org&quot;, &quot;Work&quot;) Dim AuthLogin As New IQ.Auth.AuthDigestPasswordRequest(UserJID, &quot;password&quot;, .SessionID) Dim response As Packet = .Send(AuthLogin, 5000) If Not TypeOf response Is IQ.IQResultResponse Then MessageBox.Show(&quot;Login Failed&quot;) Return End If '*** Send a message to the target user Dim TargetUser As New JabberID(&quot;target@jabber.org&quot;) .Send(New MessagePacket(TargetUser, UserJID, &quot;Test Subject&quot;, &quot;Test Body&quot;)) MessageBox.Show(String.Format(&quot;Message Sent to User: {0}&quot;, TargetUser.ToString)) .CloseStream() End With End Sub

Screenshots

Reviews

Submit a review