<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
	<title>For developers</title>
	<description>Skype extras and accessories development discussion.</description>
	<link>http://forum.skype.com/index.php</link>
	<pubDate>Mon, 23 Nov 2009 10:52:04 +0000</pubDate>
	<ttl>5</ttl>
	<item>
		<title>GMail Contacts to Skype Import/Sync</title>
		<link>http://forum.skype.com/index.php?showtopic=228841</link>
		<description><![CDATA[Hi, <br />If anyone here is interested, I've written a PHP script that will connect to the GMail contacts API, download all your contacts, then add any with telephone numbers as SkypeOut contacts to Skype using the Skype4com API.<br /><br />I cant provide any support for this, but if you think it may be useful and can figure it out on your own I'm happy to give it away, some info:<br /><br /><ul><li>It uses the Zend Frameworks HTTP client to connect to Google, so you'll need a copy of that locally</li><li>It uses the Skype4com API, so windows only</li><li>It currently removes all SkypeOut contacts before adding any back in again (can easily be disabled if you want)</li><li>It only does a one way sync, from Google to Skype</li><li>You'll need to use the script via the command line</li><li>It is very hacky (something I literally just threw together) and has no error checking at all</li></ul><br />Let me know if you're interested and I'll post the code.]]></description>
		<pubDate>Mon, 27 Oct 2008 19:40:06 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=228841</guid>
	</item>
	<item>
		<title>Dissconnect SkypeIN line using Skype4Java wrapper</title>
		<link>http://forum.skype.com/index.php?showtopic=473781</link>
		<description><![CDATA[Hi all<br /><br />Im developing an application which uses the "Caller ID" when receive calls using Skype4Java. The issue is when I disconnect the line, the user is directed to VM (Voice Message) automatically. I learned that disabling VM is not possible in Skype yet. Is there a way to disconnect the line without forwarding calls to VM?<br /><br />My OS is Windows XP and the Skype Tracer shows the same when I disconnect it manually and using Skype4Java but disconnecting manually does not direct to VM.<br /><br />Skype Tracer displays:<br /><br />&gt; CALL 12109 STATUS RINGING<br />&gt; CALL 12109 CONF_ID 0<br />&gt; CALL 12109 STATUS REFUSED]]></description>
		<pubDate>Fri, 20 Nov 2009 03:53:26 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=473781</guid>
	</item>
	<item>
		<title>PHP API integration problem</title>
		<link>http://forum.skype.com/index.php?showtopic=473091</link>
		<description><![CDATA[Hi,<br /><br />I am using the skype API for PHP to call my clients and  play some audio file (abc.wav) when the call in progress. I am pasting the code here ,<br /><br />&lt;?php<br /><br />// Event sink:<br />class _ISkypeEvents {<br /><br />function AttachmentStatus($status) {<br />echo "&gt;Attachment status $status&#092;n";<br />}<br />function CallStatus($call, $status) {<br />echo "&gt;Call $call-&gt;id status $status&#092;n";<br />}<br />}<br /><br />// Create a Skype4COM object:<br />$skype = new COM("Skype4COM.Skype");<br /><br />// Create a sink object:<br />$sink =& new _ISkypeEvents ();<br />$sink-&gt;convert = $skype-&gt;convert();<br /><br />// Connect to the sink:<br />com_event_sink($skype, $sink, "_ISkypeEvents");<br /><br />// Create a conversion object:<br />$convert = $skype-&gt;convert;<br />$convert-&gt;language = "en";<br /><br />// Start the Skype client, minimized and with no splash screen:<br />if (!$skype-&gt;client()-&gt;isRunning()) {<br />$skype-&gt;client()-&gt;start(true, true);<br />}<br /><br />// If the user status is not "online", change user status to "online":<br />if ($skype-&gt;currentUserStatus() == $convert-&gt;textToUserStatus("OFFLINE")) {<br />$skype-&gt;changeUserStatus($convert-&gt;textToUserStatus("ONLINE"));<br />}<br /><br />// Create a user object<br />$user = $skype-&gt;user("ali-khan");<br />echo "User " . $user-&gt;handle . " online status is " . $convert-&gt;onlineStatusToText($user-&gt;onlineStatus) . "&#092;n";<br /><br />// Place a call<br />$call = $skype-&gt;PlaceCall($user-&gt;handle);<br />while ($call-&gt;status &lt;&gt; $convert-&gt;textToCallStatus("INPROGRESS")) {<br />$wavfile = "ALTER CALL 175 SET_OUTPUT file='C:&#092;tst.wav'";<br /><br />$skype-&gt;SendCommand($wavfile);<br /><br />if ($call-&gt;status == $convert-&gt;textToCallStatus("FAILED") ||<br />$call-&gt;status == $convert-&gt;textToCallStatus("REFUSED") ||<br />$call-&gt;status == $convert-&gt;textToCallStatus("CANCELLED") ||<br />$call-&gt;status == $convert-&gt;textToCallStatus("FINISHED") ||<br />$call-&gt;status == $convert-&gt;textToCallStatus("BUSY"))<br />die ("Call status " . $convert-&gt;callStatusToText($call-&gt;status));<br />else<br />com_message_pump (500);<br />}<br /><br />// Send dtmf tones:<br />com_message_pump (10000);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "0";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "1";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "2";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "3";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "4";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "5";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "6";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "7";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "8";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "9";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "#";<br />com_message_pump (500);<br />if ($call-&gt;status == $convert-&gt;textToCallStatus("INPROGRESS")) $call-&gt;dtmf = "*";<br /><br />// Finish the call:<br />if ($call-&gt;status &lt;&gt; $convert-&gt;textToCallStatus("FINISHED")) $call-&gt;finish();<br /><br />//Sleep:<br />com_message_pump (1000);<br /><br />?&gt;<br /><br />==================================================================<br /><br />Here is what I am getting (error) .<br /><br />Fatal error: Uncaught exception 'com_exception' with message '&lt;b&gt;Source:&lt;/b&gt; Skype4COM.Skype.1&lt;br/&gt;&lt;b&gt;Description:&lt;/b&gt; Not attached.' in E:&#092;wamp&#092;www&#092;skype&#092;skype.php:34 Stack trace: #0 E:&#092;wamp&#092;www&#092;skype&#092;skype.php(34): com-&gt;currentUserStatus() #1 {main} thrown in E:&#092;wamp&#092;www&#092;skype&#092;skype.php on line ....<br /><br />Same error I got on xampp. Please help me to know what is wrong. Am i using the wrong method?<br /><br />Thanks .]]></description>
		<pubDate>Thu, 19 Nov 2009 17:10:15 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=473091</guid>
	</item>
	<item>
		<title>SMS</title>
		<link>http://forum.skype.com/index.php?showtopic=471051</link>
		<description><![CDATA[Can anyone provide me an example of VB code that would allow me using a variable to set the 'ReplyToNumber' for individual SMS messages. In other words each SMS message has its own discrete 'ReplyToNumber' rather than the Skype Name or Skype verified Mobile Phone Number. <br /><br />Is it the third variable in SendSms($PhoneNum, $Message, "ReplyToNumber)????<br /><br />Ant..<br /><br />]]></description>
		<pubDate>Tue, 17 Nov 2009 02:10:40 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=471051</guid>
	</item>
	<item>
		<title>full screen video?</title>
		<link>http://forum.skype.com/index.php?showtopic=109965</link>
		<description><![CDATA[Hi all,<br /><br />I have used Skype4COM to start a video call. All works fine so far.<br />But how can I make the video full-screen using the API (not clicking on the skype window)???<br /><br />thanks a lot for your help,<br />ermutarra]]></description>
		<pubDate>Wed, 20 Feb 2008 11:22:16 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=109965</guid>
	</item>
	<item>
		<title>redirecting of speech from Skype to other application</title>
		<link>http://forum.skype.com/index.php?showtopic=464711</link>
		<description><![CDATA[Hello :-)!<br /><br />I'd like to create little system with the use of Skype. Can anybody suggest me how to start, please?<br /><br />It should work like this:<br />I. user makes a call from mobile phone (do I need to have Skype and/or access to Internet on mobile phone?)<br />II. Skype on server automatically receives the call, redirects speech to Sphinx4 (CMU Sphinx is speech recognition system), recognizes the spoken numbers, calculates control sum based on those recognized numbers, answers to the user that numbers are OK or bad, user hears server's answer on mobile phone<br /><br />In fact the only one issues which I'd like you to help me are those:<br />1. how to call Skype on server from mobile phone?<br />2. how to automatically receive call on Skype on server, without need to manually click any button in Skype?<br />3. <b>how to redirect speech from/to other application and Skype</b> (i.e. allow Skype to send speech to Sphinx4 and receive speech from Sphinx4)?<br /><br />Thanks very much for your help in advance :-)!<br />Greetins :-)!]]></description>
		<pubDate>Sun, 08 Nov 2009 12:00:33 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=464711</guid>
	</item>
	<item>
		<title>Skype recorder</title>
		<link>http://forum.skype.com/index.php?showtopic=469531</link>
		<description><![CDATA[Hello,<br /><br />inspite of a lot of people looking for a good free skype recorder there doesn't seem to exist any. Does anyone know why this is the case?<br /><br />Any suggestion on how to get started, other than the obvious "read the docs".<br /><br />Thanks!]]></description>
		<pubDate>Sat, 14 Nov 2009 20:04:54 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=469531</guid>
	</item>
	<item>
		<title><![CDATA[Skype4Com/Javascript -  SendSms works but PlaceCall gets "no answer"]]></title>
		<link>http://forum.skype.com/index.php?showtopic=473951</link>
		<description><![CDATA[We have a website on a dedicated server in a data centre.  The server runs various tasks during the day and night and I'm trying to get it to call me on my mobile if it runs into problems.<br /><br />I've built a very simple test webpage that references a local copy of the Skype4Com dll as an ActiveX object.<br /><br />When I navigate to the page from the server itself, I can send Skype messages and SMSs but whenever I try to use Skype.PlaceCall it immediately says "no answer".<br /><br />If I use the UI on the server, exactly the same thing happens.<br /><br />I've navigated to the webpage from a couple of laptops and am able to use the PlaceCall function to call the server.  The server shows an incoming call which, when you click Answer, is dropped with a message saying "Missed call from ..." and an alert at the top of the UI saying there is no sound due to a problem with the sound card inside the computer.<br /><br />Is this the reason that the server is unable to place a call?  If so, is there any way round this issue?  I only really need the server to be able to make my mobile ring, I don't actually need to speak to it.  I can use SMS messages but I'm more likely to wake up in the dead of night if the mobile rings rather than just being notified that an SMS has arrived!]]></description>
		<pubDate>Fri, 20 Nov 2009 12:06:15 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=473951</guid>
	</item>
	<item>
		<title>Voice Modem (PSTN Line) Call transfer to Skype user/Skype Online Number</title>
		<link>http://forum.skype.com/index.php?showtopic=440751</link>
		<description><![CDATA[I have a very special need in regards to call tranfers. skype does not provides an Online number in the country in south america where we will have a small office. so we are purchasing a PSTN line there.<br /><br />We need a system that is able to get an indbound call on the Voice Modem and transfer that call to a desired skype user / skype online number. this is the only way we will be able to receive local calls and have the person attending the phone to forward that call to europe via skype.<br /><br />has anyone develop such a solution ? could anyone tell me how i could do this, any c# code example will be nice.<br /><br />I will be using TAPI to control the voice modem and the skype api to control skype.<br /><br />thanks in advanced]]></description>
		<pubDate>Tue, 06 Oct 2009 12:37:00 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=440751</guid>
	</item>
	<item>
		<title>Skype plugin (C# example)</title>
		<link>http://forum.skype.com/index.php?showtopic=470881</link>
		<description><![CDATA[Hello! I try write skype plugin in C#. For example i want to add custom menu item and run this plugin everytime when skype is running.<br /><br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->static void Main&#40;string&#91;&#93; args&#41;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Skype skype = new Skype&#40;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;const string pluginIconPath = @&#34;d&#58;&#092;menuicon.png&#34;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var menu1 = skype.Client.CreateMenuItem&#40;&#34;MENU_ID_1&#34;,&nbsp;&nbsp;&nbsp;&nbsp; TPluginContext.pluginContextCall, &#34;MenuCaption&#34;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#34;Menu&nbsp;&nbsp;item hint&#34;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pluginIconPath, true, TPluginContactType.pluginContactTypeAll, true&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<!--c2--></div><!--ec2--><br /><br />What is ISkypePlugin interface and how use it?<br />What type should my program (dll or executable application)?<br /><br />I use 4.0.0215 Skype version and Skype4Com.dll library 1.0.33.0!<br />]]></description>
		<pubDate>Mon, 16 Nov 2009 20:14:00 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=470881</guid>
	</item>
	<item>
		<title>PHP and skype</title>
		<link>http://forum.skype.com/index.php?showtopic=309301</link>
		<description><![CDATA[Hey guys me a newbie integrating api's<br /><br /><br />Can someone give a complete overview of how to integrate skype api in php..Remember me a complete newbie so i would like to know everything..<br /><br />Thanks in advance<br /><br /><br /><br /><br />Php rocks]]></description>
		<pubDate>Mon, 23 Mar 2009 16:29:15 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=309301</guid>
	</item>
	<item>
		<title>Attaching from Windows service (Vista/7)</title>
		<link>http://forum.skype.com/index.php?showtopic=470651</link>
		<description><![CDATA[Is it correct that it's not possible to connect to the Public API from Windows services in Vista and 7 anymore, as the session 0 is no longer associated with a user account? <br /><br />In XP it helped to check the checkbox to allow interaction between desktop and service, but in Vista / 7 this does not work any more. <br /><br />So far this is understandable. It is more curious that I can't even attach when the service is running on a user account. (client.Start leads to an unexpected internal COM error 0x80040206).<br /><br />Again, running the same code from a user application or service with desktop interaction rights in XP works fine.<br /><br />Thank you.<br />Tobias]]></description>
		<pubDate>Mon, 16 Nov 2009 15:27:22 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=470651</guid>
	</item>
	<item>
		<title>Video call integration in c# application</title>
		<link>http://forum.skype.com/index.php?showtopic=457811</link>
		<description><![CDATA[Hi!<br />I saw it's possible to control Skype through API, I also used Skype4Java to start a call in a simple application.<br />But is it possible to integrate the Skype in a new application with Skype4com APIs? The application is a sort of whiteboard developed in C# where I would integrate a video call.]]></description>
		<pubDate>Thu, 29 Oct 2009 16:52:02 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=457811</guid>
	</item>
	<item>
		<title>online meeting room using Skype</title>
		<link>http://forum.skype.com/index.php?showtopic=461471</link>
		<description><![CDATA[Hi! I’d like to develop a web meeting room using skype, and I have no experience in coding with skype API. So before diving into the skype API docs, I’d appreciate if any guru can let me know if it’s possible to implement the following functions using skype API, assuming all the members in the web meeting room have skype in their local PC and are connected to internet.<br /><br />1. The host of the meeting room, given the skypeID of a meeting attendant Mr. Lucky, can press a button “Allow” on the website to let Mr. Lucky join the meeting. And in the background, the website will automatically setup skype voice connection between the host and the attendant. Or, if there is already voice conversation going on between the host and other attendants, the web site can automatically add and connect Mr. Lucky to the current conversation.<br /><br />2. The host can press a button “Remove” to close Mr. Lucky’s skype connection to the current conversion, and Mr. Lucky can also, in his interface, press a button “Quit” to close his skype connection to the current conversion at any time.<br /><br />3. The website can monitor how many minutes each meeting attendant stays in the meeting.<br /><br />Thanks a lot!<br /><br />Jack<br />]]></description>
		<pubDate>Tue, 03 Nov 2009 17:04:51 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=461471</guid>
	</item>
	<item>
		<title>Skype API on iPhone</title>
		<link>http://forum.skype.com/index.php?showtopic=469981</link>
		<description><![CDATA[Hello,<br /><br />Is there Skype Public API available on iPhone?<br />If not, any plans in the future?<br /><br />Thanks,<br />Ramaz]]></description>
		<pubDate>Sun, 15 Nov 2009 12:40:48 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=469981</guid>
	</item>
	<item>
		<title>Determining sample rate</title>
		<link>http://forum.skype.com/index.php?showtopic=234541</link>
		<description>I am using the Skype4Com object and receiving audio from the MicDevice. How do I determine what the current sample rate is? I know that the audio is 16 bit mono, but there seems to be no way of accessing the sample rate.</description>
		<pubDate>Thu, 06 Nov 2008 22:26:06 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=234541</guid>
	</item>
	<item>
		<title>Packet Collision arbitration</title>
		<link>http://forum.skype.com/index.php?showtopic=469051</link>
		<description>Is there packet collision arbitration in the codec or in the main skype code?</description>
		<pubDate>Sat, 14 Nov 2009 07:33:50 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=469051</guid>
	</item>
	<item>
		<title>How to create a permanent menu item for my plugin?</title>
		<link>http://forum.skype.com/index.php?showtopic=466641</link>
		<description><![CDATA[How to create a permanent menu item for my plugin?<br />I've tried delphi example with Skype.Client.CreateMenuItem(...)<br />but my menu is disappear after I close my application.  <br />In the manual I've found this:<br />"Note that custom menu items are removed automatically when the client application that created them is disconnected."<br /><br />But I didn't find HOW TO CREATE A PERMANENT MENU ITEM... Like "Send Fax" or something like this.<br />Thanks. <br />]]></description>
		<pubDate>Tue, 10 Nov 2009 21:29:30 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=466641</guid>
	</item>
	<item>
		<title><![CDATA[Injecting Audio into a call doesn't work under Windows Vista and Windows Server 2008.]]></title>
		<link>http://forum.skype.com/index.php?showtopic=467121</link>
		<description><![CDATA[I use Skype4Com v 1.0.32 + C# and have some problems with Injecting Audio into a call<br /><br />I have following code:<br /><br />pCall.set_InputDevice(TCallIoDeviceType.callIoDeviceTypeFile, "c:&#092;&#092;sample.wav");<br /><br />This code works fine under Windows XP and Windows 2003 and I hear sound from wav file in my cell phone. But I hear nothing if I use my program under Windows Vista or Windows Server 2008. How can I fix it?. Please help me.]]></description>
		<pubDate>Wed, 11 Nov 2009 16:08:47 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=467121</guid>
	</item>
	<item>
		<title>Skype4Com in .Net web service running in IIS7</title>
		<link>http://forum.skype.com/index.php?showtopic=468181</link>
		<description><![CDATA[Hi<br /><br />I am integrating Skype4COM.dll in a .net web service in Visual Studio 2008. When I configure the web service to run under IIS 7, with the service and skype running under same user account, I am not able to see the authorization dialog in Skype interface to allow access to IIS worker process. And, because this does not happen I cannot send messages.<br /><br />I have tried out all solutions posted in the forums without any success.<br /><br />Any help will be appreciated.<br /><br />]]></description>
		<pubDate>Fri, 13 Nov 2009 03:24:38 +0000</pubDate>
		<guid>http://forum.skype.com/index.php?showtopic=468181</guid>
	</item>
</channel>
</rss>