Skip to content

ararog/WebSocketRails-WP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebSocketsRails client port for Windows Phone

Port of JavaScript client provided by https://github.com/websocket-rails/websocket-rails

Built on top of WebSocket4Net

Misc

Refer to https://github.com/websocket-rails/websocket-rails to learn more about WebSocketRails

Refer to https://websocket4net.codeplex.com to learn more about WebSocket4Net

Example

Since data exchange is JSON based, it's strongly recommended to use JSON.NET API to deserialize data.

Here's an example:

public void Initialize() 
{
	WebSocketRailsDispatcher dispatcher = new WebSocketRailsDispatcher(new Uri("ws://192.168.100.109:3000/websocket"));

	channel = dispatcher.Subscribe("my_channel");

	Notification notification = new Notification();

	Contact contact = new Contact();
	contact.Id = 007;
	contact.FirstName = "James";
	contact.LastName = "Bond";
	contact.CountryCode = "+1";
	contact.PhoneNumber = "11254526";

	notification.Contact = contact;
	notification.Type = 1;
	notification.Content = "Bond, James";

	channel.Trigger("notification_event", notification);

	channel.Bind("notification_event", messageReceived);
}

private void messageReceived(object sender, WebSocketRailsDataEventArgs e)
{
	if(e.Data is JObject) 
	{
		Notification notification =JsonConvert.DeserializeObject<Notification>(e.Data);
		
		// do something
	}
}

Projects using WebSocketRails-WP

Ow for Windows Phone

About

A Windows Phone client of WebSocket-Rails

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published