There is no build provider registered for the extension '.asbx'. You can register one in the <compilation><buildProviders> section in machine.config or web.config. Make sure is has a BuildProviderAppliesToAttribute attribute which includes the value
'Web' or 'All'.
rcrowe
Member
47 Points
11 Posts
Re: asbx support in AJAX ASP.NET
Feb 13, 2007 01:13 AM|LINK
avmoldovan
Member
199 Points
41 Posts
Re: asbx support in AJAX ASP.NET
Feb 13, 2007 06:23 PM|LINK
Indeed, I also did not find any oficial documentation on AJAX web service bridges, but they are in the CTP (future capabilities) of the AJAX release.
I think this is the reason for which it might not have documentation yet, because its not part of the AJAX package.
azote
Member
87 Points
26 Posts
Re: asbx support in AJAX ASP.NET
Feb 27, 2007 09:02 PM|LINK
has anyone been successfull on using asbx on thet lates ctp??
i haven't yet...
alesha911
Member
161 Points
42 Posts
Re: asbx support in AJAX ASP.NET
Feb 27, 2007 10:30 PM|LINK
Senior Consultant
azote
Member
87 Points
26 Posts
Re: asbx support in AJAX ASP.NET
Feb 27, 2007 10:44 PM|LINK
thanks alesha911...
I'm getting this error:
There is no build provider registered for the extension '.asbx'. You can register one in the <compilation><buildProviders> section in machine.config or web.config. Make sure is has a BuildProviderAppliesToAttribute attribute which includes the value 'Web' or 'All'.
after a few horrible hours this was the problem:
had to be
<buildProviders>
<add extension=".asbx" type="Microsoft.Web.Preview.Services.BridgeBuildProvider" />
</buildProviders>
alesha911
Member
161 Points
42 Posts
Re: asbx support in AJAX ASP.NET
Feb 27, 2007 10:49 PM|LINK
I wish I could save you those hours :(
I had exactly the same problem, no idea why we have to spend hours to find this flaw...
Senior Consultant