<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comments on: CallManager WebDialer form</title>
	<atom:link href="http://blog.stuartlewis.com/2008/06/27/callmanager-webdialer-form/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stuartlewis.com/2008/06/27/callmanager-webdialer-form/</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 09:45:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kamal</title>
		<link>http://blog.stuartlewis.com/2008/06/27/callmanager-webdialer-form/comment-page-1/#comment-2776</link>
		<dc:creator>Kamal</dc:creator>
		<pubDate>Thu, 30 Jul 2009 17:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartlewis.com/?p=18#comment-2776</guid>
		<description>1.Create new windows application on VS 2005
2.Add web reference with webdialer soap link


Example:
http://CISCO_SERVER/webdialer/wsdl/WebdialerSoap.wsdl

CISCO_SERVER - is your cisco call manager server name

3.You can see the setting from app.config 

            
                http://CISCO_SERVER wdsoap/servlet/rpcrouter
            
        

private void button1_Click(object sender, EventArgs e)
        {

   WebdialerSoap wd = new WebdialerSoap();

    Credential crd = new Credential();
    crd.userID = &quot;Your domain username&quot;;
    crd.password = &quot;password&quot;;
    UserProfile uf = new UserProfile();
    uf.deviceName = &quot;SEP000XXXXXXXX&quot;; /Replacewith ur device name
    uf.lineNumber = &quot;XXXX&quot;; //Your line# ..ext
    uf.user = crd.userID;
    uf.locale = &quot;English&quot;;

    wd.makeCallSoap(crd, &quot;YYYY&quot;, uf); //YYYY is a number to call

}</description>
		<content:encoded><![CDATA[<p>1.Create new windows application on VS 2005<br />
2.Add web reference with webdialer soap link</p>
<p>Example:<br />
<a href="http://CISCO_SERVER/webdialer/wsdl/WebdialerSoap.wsdl" rel="nofollow">http://CISCO_SERVER/webdialer/wsdl/WebdialerSoap.wsdl</a></p>
<p>CISCO_SERVER &#8211; is your cisco call manager server name</p>
<p>3.You can see the setting from app.config </p>
<p>                <a href="http://CISCO_SERVER" rel="nofollow">http://CISCO_SERVER</a> wdsoap/servlet/rpcrouter</p>
<p>private void button1_Click(object sender, EventArgs e)<br />
        {</p>
<p>   WebdialerSoap wd = new WebdialerSoap();</p>
<p>    Credential crd = new Credential();<br />
    crd.userID = &#8220;Your domain username&#8221;;<br />
    crd.password = &#8220;password&#8221;;<br />
    UserProfile uf = new UserProfile();<br />
    uf.deviceName = &#8220;SEP000XXXXXXXX&#8221;; /Replacewith ur device name<br />
    uf.lineNumber = &#8220;XXXX&#8221;; //Your line# ..ext<br />
    uf.user = crd.userID;<br />
    uf.locale = &#8220;English&#8221;;</p>
<p>    wd.makeCallSoap(crd, &#8220;YYYY&#8221;, uf); //YYYY is a number to call</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EGomezB</title>
		<link>http://blog.stuartlewis.com/2008/06/27/callmanager-webdialer-form/comment-page-1/#comment-151</link>
		<dc:creator>EGomezB</dc:creator>
		<pubDate>Fri, 25 Jul 2008 21:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartlewis.com/?p=18#comment-151</guid>
		<description>I&#039;m trying to make a windows program that will allow any user to call using the Cisco Web Dialer, Can you show me how can I send the request to the webdialer without the user having to click anything on the web page?

Thanks,

EGB</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to make a windows program that will allow any user to call using the Cisco Web Dialer, Can you show me how can I send the request to the webdialer without the user having to click anything on the web page?</p>
<p>Thanks,</p>
<p>EGB</p>
]]></content:encoded>
	</item>
</channel>
</rss>

