![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | Calling Indigo WebService from JavaScript in web browser Hi, I'm going to develop webservices on Indigo. I need to stay compatible with non-Indigo clients, particularly call the web service from JavaScript in web browser. Microsoft used to supply WebService.htc behavior for this but the download page says in red print that it is not supported anymore. What would be the up-to date method to do it ? Is there any sample available for this ? Thanks for help. Jan |
My System Specs![]() |
| | #2 (permalink) |
| | Re: Calling Indigo WebService from JavaScript in web browser Hi, Jan wrote: > Hi, > I'm going to develop webservices on Indigo. > > I need to stay compatible with non-Indigo clients, particularly call the web > service from JavaScript in web browser. > Microsoft used to supply WebService.htc behavior for this but the download > page says in red print that it is not supported anymore. What would be the > up-to date method to do it ? Is there any sample available for this ? > > Thanks for help. > Jan If you do not want to use the interfaces provided by Atlas, you can program the XmlHttpRequest object directly with JavaScript. However, if you work with SOAP, it's quite a lot of work to parse the SOAP code. I wouldn't recommend it for SOAP. but it's OK for POX or other kind of AJAX. HTH, Laurent -- Laurent Bugnion, GalaSoft Software engineering: http://www.galasoft-LB.ch Private/Malaysia: http://mypage.bluewin.ch/lbugnion Support children in Calcutta: http://www.calcutta-espoir.ch |
My System Specs![]() |
| | #3 (permalink) |
| | Re: Calling Indigo WebService from JavaScript in web browser Hi, thanks for reply. I finally used XmlHttpRequest as my WebService interface is not so complex. It took only some time to line up all namespaces etc. What is the "Atlas" you wrote about ? Regards, Jan "Laurent Bugnion" wrote: > Hi, > > Jan wrote: > > Hi, > > I'm going to develop webservices on Indigo. > > > > I need to stay compatible with non-Indigo clients, particularly call the web > > service from JavaScript in web browser. > > Microsoft used to supply WebService.htc behavior for this but the download > > page says in red print that it is not supported anymore. What would be the > > up-to date method to do it ? Is there any sample available for this ? > > > > Thanks for help. > > Jan > > If you do not want to use the interfaces provided by Atlas, you can > program the XmlHttpRequest object directly with JavaScript. However, if > you work with SOAP, it's quite a lot of work to parse the SOAP code. I > wouldn't recommend it for SOAP. but it's OK for POX or other kind of AJAX. > > HTH, > Laurent > -- > Laurent Bugnion, GalaSoft > Software engineering: http://www.galasoft-LB.ch > Private/Malaysia: http://mypage.bluewin.ch/lbugnion > Support children in Calcutta: http://www.calcutta-espoir.ch > |
My System Specs![]() |
| | #4 (permalink) |
| | Re: Calling Indigo WebService from JavaScript in web browser Hi, Jan wrote: > Hi, > thanks for reply. I finally used XmlHttpRequest as my WebService interface > is not so complex. It took only some time to line up all namespaces etc. > > What is the "Atlas" you wrote about ? > > Regards, > Jan > > "Laurent Bugnion" wrote: > > >>Hi, >> >>Jan wrote: >> >>>Hi, >>>I'm going to develop webservices on Indigo. >>> >>>I need to stay compatible with non-Indigo clients, particularly call the web >>>service from JavaScript in web browser. >>>Microsoft used to supply WebService.htc behavior for this but the download >>>page says in red print that it is not supported anymore. What would be the >>>up-to date method to do it ? Is there any sample available for this ? >>> >>>Thanks for help. >>>Jan >> >>If you do not want to use the interfaces provided by Atlas, you can >>program the XmlHttpRequest object directly with JavaScript. However, if >>you work with SOAP, it's quite a lot of work to parse the SOAP code. I >>wouldn't recommend it for SOAP. but it's OK for POX or other kind of AJAX. >> >>HTH, >>Laurent Atlas was the codename for Windows Communication Foundation. Many still speak of Atlas when mentioning WCF, because it's such a cooler name ;-) Microsoft provides a set of server-side and client-side libraries in order to simplify AJAX implementation, especially when you use SOAP. These libraries are what I meant with the term Atlas. HTH, Laurent -- Laurent Bugnion, GalaSoft Software engineering: http://www.galasoft-LB.ch Private/Malaysia: http://mypage.bluewin.ch/lbugnion Support children in Calcutta: http://www.calcutta-espoir.ch |
My System Specs![]() |
| | #5 (permalink) |
| | Re: Calling Indigo WebService from JavaScript in web browser Clear. Thanks ! "Laurent Bugnion" wrote: > Hi, > > Jan wrote: > > Hi, > > thanks for reply. I finally used XmlHttpRequest as my WebService interface > > is not so complex. It took only some time to line up all namespaces etc. > > > > What is the "Atlas" you wrote about ? > > > > Regards, > > Jan > > > > "Laurent Bugnion" wrote: > > > > > >>Hi, > >> > >>Jan wrote: > >> > >>>Hi, > >>>I'm going to develop webservices on Indigo. > >>> > >>>I need to stay compatible with non-Indigo clients, particularly call the web > >>>service from JavaScript in web browser. > >>>Microsoft used to supply WebService.htc behavior for this but the download > >>>page says in red print that it is not supported anymore. What would be the > >>>up-to date method to do it ? Is there any sample available for this ? > >>> > >>>Thanks for help. > >>>Jan > >> > >>If you do not want to use the interfaces provided by Atlas, you can > >>program the XmlHttpRequest object directly with JavaScript. However, if > >>you work with SOAP, it's quite a lot of work to parse the SOAP code. I > >>wouldn't recommend it for SOAP. but it's OK for POX or other kind of AJAX. > >> > >>HTH, > >>Laurent > > Atlas was the codename for Windows Communication Foundation. Many still > speak of Atlas when mentioning WCF, because it's such a cooler name ;-) > > Microsoft provides a set of server-side and client-side libraries in > order to simplify AJAX implementation, especially when you use SOAP. > These libraries are what I meant with the term Atlas. > > HTH, > Laurent > -- > Laurent Bugnion, GalaSoft > Software engineering: http://www.galasoft-LB.ch > Private/Malaysia: http://mypage.bluewin.ch/lbugnion > Support children in Calcutta: http://www.calcutta-espoir.ch > |
My System Specs![]() |
| | #6 (permalink) |
| | Re: Calling Indigo WebService from JavaScript in web browser "Laurent Bugnion" <galasoft-lb@bluewin.ch> wrote in message news:uwEpdIpmGHA.3752@TK2MSFTNGP02.phx.gbl... > Hi, > > Atlas was the codename for Windows Communication Foundation. Many still > speak of Atlas when mentioning WCF, because it's such a cooler name ;-) > > Microsoft provides a set of server-side and client-side libraries in order > to simplify AJAX implementation, especially when you use SOAP. These > libraries are what I meant with the term Atlas. > Actually, the codename for Windows Communication Foundation was Indigo. Atlas is Microsoft's framework for AJAX development and it is still in beta and do not have an offical market name. Regards, -- Martin Kulov http://www.codeattest.com/blogs/martin MVP, MCT, MCSD, MCPD |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| .Net 2.0 issue with HttpWebRequest/Proxy breaking WebService | .NET General | |||
| Calling a JavaScript Sub-Routine | VB Script | |||
| WebService and Timeout | .NET General | |||
| creating a powershell webservice | PowerShell | |||
| Name collision using connect-webservice | PowerShell | |||