<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX Networking and Web Services</title><link>http://forums.asp.net/1009.aspx</link><description>Discuss your issues with the client and server interaction in AJAX using web services and other transports used by AJAX</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: AJAX AutoCompleteExtender and Access Denied.</title><link>http://forums.asp.net/thread/3269610.aspx</link><pubDate>Wed, 01 Jul 2009 18:40:01 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3269610</guid><dc:creator>markymark1050</dc:creator><author>markymark1050</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3269610.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3269610</wfw:commentRss><description>&lt;p&gt;Hi there.&lt;/p&gt;
&lt;p&gt;Only just saw this.&amp;nbsp; The solution was to create an internal web service for the AJAX extender to communicate with and then this internal web service gets the required details from the external web service, as the&amp;nbsp;AJAX control&amp;nbsp;cannot call an external web service.&lt;/p&gt;
&lt;p&gt;Hope that helps.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;Mark :)&lt;/p&gt;</description></item><item><title>Re: AJAX AutoCompleteExtender and Access Denied.</title><link>http://forums.asp.net/thread/3225101.aspx</link><pubDate>Thu, 11 Jun 2009 09:38:36 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3225101</guid><dc:creator>Fern82</dc:creator><author>Fern82</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3225101.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3225101</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I have the same issue, did you solve it?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Thanks.&lt;/p&gt;</description></item><item><title>Re: AJAX AutoCompleteExtender and Access Denied.</title><link>http://forums.asp.net/thread/2915894.aspx</link><pubDate>Wed, 04 Feb 2009 15:59:25 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2915894</guid><dc:creator>markymark1050</dc:creator><author>markymark1050</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2915894.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=2915894</wfw:commentRss><description>&lt;p&gt;Thank you, I will give the dual web service approach a go and hopefully solve matters down that route.&lt;/p&gt;
&lt;p&gt;Mark :)&lt;/p&gt;</description></item><item><title>Re: AJAX AutoCompleteExtender and Access Denied.</title><link>http://forums.asp.net/thread/2915851.aspx</link><pubDate>Wed, 04 Feb 2009 15:45:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2915851</guid><dc:creator>mrmercury</dc:creator><author>mrmercury</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2915851.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=2915851</wfw:commentRss><description>&lt;span style="mso-ansi-language:EN-US;"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;You can’t make cross-domain XMLHttpRequest calls, even if the application and the WebService are on the same machine they need to be under the same folder, this is why you are getting the access denied error, this is a constrain imposed by the browser not by AJAX, you could do two things to solve this: you could move the WebService under your application´s project, or if you need the WebService to be under a different project you could add a “bridge” WebService in your application that would be called by the client and in turn would call the external WebService and return the result to the client.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;</description></item><item><title>AJAX AutoCompleteExtender and Access Denied.</title><link>http://forums.asp.net/thread/2915553.aspx</link><pubDate>Wed, 04 Feb 2009 14:12:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2915553</guid><dc:creator>markymark1050</dc:creator><author>markymark1050</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2915553.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=2915553</wfw:commentRss><description>&lt;p&gt;Hi there.&lt;/p&gt;
&lt;p&gt;I have a web service external to my asp.net web application ( both written in C#) and within my web application I have attached an AutoComplete on a TextBox.&lt;/p&gt;
&lt;p&gt;As my web Service is external to the web application, I am qualifying the &lt;/p&gt;
&lt;p&gt;ServicePath=&lt;a href="http://localhost/MyWebService/Service.asmx"&gt;http://localhost/MyWebService/Service.asmx&lt;/a&gt;, &lt;/p&gt;
&lt;p&gt;do I also need to include a ServiceReference in the ScriptManager tag?&amp;nbsp; (First question)&lt;/p&gt;
&lt;p&gt;When I start up my web application and start to type into the TextBox I am receiving a JavaScript runtime error of &amp;quot;Access is denied&amp;quot;.&lt;/p&gt;
&lt;p&gt;Obviously I have done something daft here but I&amp;#39;m not sure if it is something to do with having the external web service and hence web method?&amp;nbsp; Any help will be greatly appreciated please?&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;Mark :)&lt;/p&gt;</description></item></channel></rss>