<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Set Up A Podcast On TalkShoe &#8211; The Forgotten Guide</title>
	<atom:link href="http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Tue, 24 Nov 2009 05:16:40 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Guy McDowell</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/comment-page-1/#comment-389155</link>
		<dc:creator>Guy McDowell</dc:creator>
		<pubDate>Tue, 09 Jun 2009 01:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18626#comment-389155</guid>
		<description>I got an awesome letter from Neil Fusillo, CEO of Infinideas, inc. Providers of the proxy VoIP I mentioned in the article. Here it is:
Guy,

Doing a company vanity search as a somewhat routine Monday-morning
pre-meeting ritual, I noticed a recent makeuseof.com article on how to
set up a TalkShoe podcast.

In Step 4, you discuss calling the show with the call ID, and the PIN:

&quot;Go ahead and open up SJPhone. Now the next part is REALLY important.
You want to enter the following as the number to call:

7463#*CALL_ID*#*PIN*#@proxy.ideasip.com

*CALL_ID* is the number of your show. Let’s say it is 53082. *PIN *is
your pin number that you chose when you signed up. Let’s say it is
123456789. So you would enter the
string*7463#53082#123456789#@proxy.ideasip.com.* Why does that work? I
don’t know, honestly, it just does.&quot;


Just to let you know, the reason that setup in IdeaSIP exists dates back
to a fellow named Randy Resnick (if you&#039;re into Wine or Asterisk, you&#039;re
bound to have run into him before) and the Wine Lovers&#039; Podcast on
TalkShoe. He signed up with IdeaSIP years ago and wanted to work out a
way to get people into his wine podcast via VoIP. We also sponsor his
Wine Podcast in a couple of countries with some IdeasIN numbers that
forward directly to the podcast when it&#039;s active. The trick was getting
it all to work with TalkShoe.

In the beginning, that was easy. TalkShoe just had a single SIP userid
and you&#039;d dial in, enter in your conference info by hand and voila --
you were in. Later on, they changed it to a unique SIP URI for each call
ID and you just had to enter your pin.  Now, it all has to be encoded
using SIP headers.  Each time, we&#039;d go in and make the changes so that
Randy&#039;s podcasts -- now both the Wine Lovers&#039; podcast and the VoIP
Users&#039; Conference podcast -- would work.

If you&#039;re familiar with Asterisk, the way this works in Asterisk is
handled by this snippet of dial plan code:

; Talkshoe forwards
exten =&gt; _7463.,1,Answer
exten =&gt; _7463.,n,Set(TSSTRING=${EXTEN:5})
exten =&gt; _7463.,n,Set(TSPASSCODE=${CUT(TSSTRING,#,1)})
exten =&gt; _7463.,n,Set(TSPIN=${CUT(TSSTRING,#,2)})
exten =&gt;
_7463.,n,SipAddHeader(Subject:${TSPASSCODE}${TSPIN})
exten =&gt; _7463.,n,Dial(SIP/123@talkshoe,30)

It&#039;s somewhat ugly in order to handle the encoding from our Proxy server
through our Asterisk server and then on to Talkshoe. We could probably
have done it all in the proxy server, but to be honest, I&#039;m not sure why
it wasn&#039;t done that way. Still... it works, so we haven&#039;t been in a rush
to &#039;fix&#039; it, as it were.

This way, we could allow users to dial in directly or, as in the case of
the wine podcast, forward IdeasIN DIDs directly to a particular podcast.

So now you know why it all works the way it does.

Thanks again for mentioning us. We rely somewhat strictly on
word-of-mouth for our consumer customer IdeaSIP product, so it&#039;s always
nice to see some exposure out there.

--
Neil Fusillo
CEO
Infinideas, inc.
http://www.ideasip.com</description>
		<content:encoded><![CDATA[<p>I got an awesome letter from Neil Fusillo, CEO of Infinideas, inc. Providers of the proxy VoIP I mentioned in the article. Here it is:<br />
Guy,</p>
<p>Doing a company vanity search as a somewhat routine Monday-morning<br />
pre-meeting ritual, I noticed a recent makeuseof.com article on how to<br />
set up a TalkShoe podcast.</p>
<p>In Step 4, you discuss calling the show with the call ID, and the PIN:</p>
<p>&#8220;Go ahead and open up SJPhone. Now the next part is REALLY important.<br />
You want to enter the following as the number to call:</p>
<p>7463#*CALL_ID*#*PIN*#@proxy.ideasip.com</p>
<p>*CALL_ID* is the number of your show. Let’s say it is 53082. *PIN *is<br />
your pin number that you chose when you signed up. Let’s say it is<br />
123456789. So you would enter the<br />
string*7463#53082#123456789#@proxy.ideasip.com.* Why does that work? I<br />
don’t know, honestly, it just does.&#8221;</p>
<p>Just to let you know, the reason that setup in IdeaSIP exists dates back<br />
to a fellow named Randy Resnick (if you&#8217;re into Wine or Asterisk, you&#8217;re<br />
bound to have run into him before) and the Wine Lovers&#8217; Podcast on<br />
TalkShoe. He signed up with IdeaSIP years ago and wanted to work out a<br />
way to get people into his wine podcast via VoIP. We also sponsor his<br />
Wine Podcast in a couple of countries with some IdeasIN numbers that<br />
forward directly to the podcast when it&#8217;s active. The trick was getting<br />
it all to work with TalkShoe.</p>
<p>In the beginning, that was easy. TalkShoe just had a single SIP userid<br />
and you&#8217;d dial in, enter in your conference info by hand and voila &#8211;<br />
you were in. Later on, they changed it to a unique SIP URI for each call<br />
ID and you just had to enter your pin.  Now, it all has to be encoded<br />
using SIP headers.  Each time, we&#8217;d go in and make the changes so that<br />
Randy&#8217;s podcasts &#8212; now both the Wine Lovers&#8217; podcast and the VoIP<br />
Users&#8217; Conference podcast &#8212; would work.</p>
<p>If you&#8217;re familiar with Asterisk, the way this works in Asterisk is<br />
handled by this snippet of dial plan code:</p>
<p>; Talkshoe forwards<br />
exten =&gt; _7463.,1,Answer<br />
exten =&gt; _7463.,n,Set(TSSTRING=${EXTEN:5})<br />
exten =&gt; _7463.,n,Set(TSPASSCODE=${CUT(TSSTRING,#,1)})<br />
exten =&gt; _7463.,n,Set(TSPIN=${CUT(TSSTRING,#,2)})<br />
exten =&gt;<br />
_7463.,n,SipAddHeader(Subject:${TSPASSCODE}${TSPIN})<br />
exten =&gt; _7463.,n,Dial(SIP/123@talkshoe,30)</p>
<p>It&#8217;s somewhat ugly in order to handle the encoding from our Proxy server<br />
through our Asterisk server and then on to Talkshoe. We could probably<br />
have done it all in the proxy server, but to be honest, I&#8217;m not sure why<br />
it wasn&#8217;t done that way. Still&#8230; it works, so we haven&#8217;t been in a rush<br />
to &#8216;fix&#8217; it, as it were.</p>
<p>This way, we could allow users to dial in directly or, as in the case of<br />
the wine podcast, forward IdeasIN DIDs directly to a particular podcast.</p>
<p>So now you know why it all works the way it does.</p>
<p>Thanks again for mentioning us. We rely somewhat strictly on<br />
word-of-mouth for our consumer customer IdeaSIP product, so it&#8217;s always<br />
nice to see some exposure out there.</p>
<p>&#8211;<br />
Neil Fusillo<br />
CEO<br />
Infinideas, inc.<br />
<a href="http://www.ideasip.com" rel="nofollow">http://www.ideasip.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy McDowell</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/comment-page-1/#comment-389154</link>
		<dc:creator>Guy McDowell</dc:creator>
		<pubDate>Tue, 09 Jun 2009 01:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18626#comment-389154</guid>
		<description>Good question! If you have an account with TalkShoe the syntax is the same. Only you use your PIN number. I don&#039;t think a person can call in completely anonymously via the SJPhone option I&#039;ve listed. I believe you would have to use a VoIP to Landline connection. I could be wrong about that though.</description>
		<content:encoded><![CDATA[<p>Good question! If you have an account with TalkShoe the syntax is the same. Only you use your PIN number. I don&#8217;t think a person can call in completely anonymously via the SJPhone option I&#8217;ve listed. I believe you would have to use a VoIP to Landline connection. I could be wrong about that though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trapper</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/comment-page-1/#comment-389138</link>
		<dc:creator>trapper</dc:creator>
		<pubDate>Mon, 08 Jun 2009 20:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18626#comment-389138</guid>
		<description>If 7463#CALL_ID#PIN#@proxy.ideasip.com is how the host calls in via SJphone, how do other participants call in? Is it 7463#CALL_ID#@proxy.ideasip.com ?</description>
		<content:encoded><![CDATA[<p>If 7463#CALL_ID#PIN#@proxy.ideasip.com is how the host calls in via SJphone, how do other participants call in? Is it 7463#CALL_ID#@proxy.ideasip.com ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Welcome to The World of VoIP Technology &#124; Technology Talk</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/comment-page-1/#comment-389050</link>
		<dc:creator>Welcome to The World of VoIP Technology &#124; Technology Talk</dc:creator>
		<pubDate>Mon, 08 Jun 2009 01:44:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18626#comment-389050</guid>
		<description>[...]  How To Set Up A Podcast On TalkShoe - The Forgotten Guide  (makeuseof.com) [...]</description>
		<content:encoded><![CDATA[<p>[...]  How To Set Up A Podcast On TalkShoe &#8211; The Forgotten Guide  (makeuseof.com) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SIP VoIP for Business Applications &#124; Technology Talk</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-a-podcast-on-talkshoe-the-forgotten-guide/comment-page-1/#comment-389016</link>
		<dc:creator>SIP VoIP for Business Applications &#124; Technology Talk</dc:creator>
		<pubDate>Sun, 07 Jun 2009 14:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18626#comment-389016</guid>
		<description>[...] How To Set Up A Podcast On TalkShoe - The Forgotten Guide (makeuseof.com) [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Set Up A Podcast On TalkShoe &#8211; The Forgotten Guide (makeuseof.com) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
