Skip to content

Instantly share code, notes, and snippets.

@divyen
divyen / gist:6502336
Created September 9, 2013 22:26
Cisco Jabber URI in iOS Apps
- (IBAction)jabberCall:(id)sender
{
BOOL installed = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"ciscojabber://"]];
if(installed)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"ciscojabber://call?address=DirectoryNumber@CUCM-Server&type=4"]];
}
else
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/us/app/cisco-jabber-for-ipad/id540243083?mt=8&uo=4"]];
@divyen
divyen / Program.cs
Created June 23, 2012 04:54
AlchemyWebSocketServer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Alchemy;
using Alchemy.Classes;
using System.Collections.Concurrent;
using System.Threading;