GurdeepS
GurdeepS

Reputation: 67223

ASP.NET webreferences/servicereferences for WCF

A couple of questions:

Is App_WebReferences for WCF schema files? Should this not be App_ServiceReferences?

Also, what is dynamic compilation in ASP.NET?

Thanks

Upvotes: 1

Views: 203

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038930

From MSDN:

App_WebReferences folder Contains files used to create a reference to a Web service (in the same project or external to the project), including .disco and .wsdl files

There's no special folder in ASP.NET called App_ServiceReferences.

As far as dynamic compilation is concerned you may take a look at this article which explains it very good.

Upvotes: 2

Related Questions