Showing posts with label library. Show all posts
Showing posts with label library. Show all posts

Wednesday, March 28, 2012

AJAX Beta 2 apps on shared hosting

Hi guys,

I'm interested in developing some ASP.Net AJAX Beta 2 apps to be hosted on a shared host that supports .Net 2.0. However, since the library for AJAX Beta 2 is installed in the GAC, does this mean that the server I host my apps on have to install it as well? Can I still use the traditional /bin alternative?

Cheers and thanks in advance for any feedback.


Kind regards,

Ethan

You can deploy Ajax website and traditional website in a shared host.They can work fine and don't affect each other.If you want deploy a Ajax enabled website in a server,you need to install .net framework and Ajax framework first.Otherwise you can not run Ajax enabled website.
Try to take a look at this reading about Ajax from here - http://ajax.asp.net/docs/Default.aspx
Wish this can help you.

Saturday, March 24, 2012

Ajax And Web Reference

hi

is it possible to refer by web service to my ajax control library component AutoCompleteExtender1, if i add asmx page directly to project solution i'm able to give the service path and service method to this component.

i have a separate web service running which is communicating with my SQL Server 2000

so in my solution i added the webservice using add App_WebReferences, sohow to assign my service path and service method to the extender.

thanks in advance.

happy dotnetting.

bye

jags

Hi jags,

It isn't possible to connect to an external webservice. So one solution is. Create a webservice (WebserviceA) within your solution where your website resides. In the code for WebserviceA you make a connection (webreference like you are used to) to WebserviceB (which is outside your domain). Al the requests that are going to webserviceA are passed through to webserviceB which will return the value to webserviceA and webserviceA will return it to your browser. Hope this helps!

Regards,


thanks dennis, i'll be travelling for the next few days.i'll try this and will get back to you at the earliest.