vote up 2 vote down star
1

I need to make a change to an ASP.NET web service written a couple years ago on 2.0. I call this web service from an old 1.1 web site. I need to make some changes to the web service, so am thinking, should I rewrite this into a WCF service and if so, will I still be able to use it from my 1.1 web site?

flag

80% accept rate

4 Answers

vote up 3 vote down check

Yes this will work. Your service will need to be at least .net 3.0, but as long as you use a basicHttpBinding or wsHttpBinding, you can consume it like any other webservice.

link|flag
1  
.NET 1.1 cannot use a wsHttpBinding endpoint – John Saunders Jul 16 at 11:52
True... Only BasicHttpBinding as far as I have seen. – Daniel Auger Jul 16 at 15:46
vote up 1 vote down

You can make a WCF service act and behave just like a traditional 1.1 ASMX web service, but is that what you want?

I think you need to ask yourself what featires of WCF are motivating you to upgrade.
Do you want to also expose the service as a REST-ful service? Do you need to implement message level security?

If it's just to go to the latest technology for the sake of the latest technology, I'd say stick with ASMX web services if your requirements for message and protocol security aren't that high and you're working with mostly microsoft technologies.

Writing a WCF service is regrettably more difficult than a plain-old asmx web service.

link|flag
Great food for thought. Right now, no, I don't need the enhanced features of WCF, but if I get a basic service going, I can expand it later. I really want to know if I can use it from 1.1 or if there are any gotchas. – Scott Oct 8 '08 at 13:20
Yup, wcf is a world of config pain, stick to asmx – redsquare Oct 8 '08 at 13:34
vote up 0 vote down

yes you can... make sure to choose the correct bindings and authentication methods

link|flag
vote up 0 vote down

how i can use asp.net 1.1 with WCF?

link|flag
1  
Hi, I see you're new here. Please take the time to read the stackoverflow.com/faq (on the top of every page). This is a very different kind of site from what you're used to. It's a Q&A site. If you have a question, click the "Ask a Question" button. Do not "reply" to an existing question. That's for Answers, not new questions. Thanks, and Welcome to StackOverflow! – John Saunders Jul 16 at 11:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.