Tagged Questions

2
votes
2answers
90 views

Do you use ServiceReferences in LoB applications?

Do you use auto-generated WCF service references in line of business applications? Or do you roll your own? And why? EDIT For anyone looking to roll their own, I found this article which may prove ...
2
votes
1answer
2k views

How can I update the ScriptManager from a .ascx Web User Control in DNN?

I've created a Web Service that I need to use in my .ascx page. I can't just add this: <asp:ScriptManager ID="OWUScripts" runat="server"> <Services> <asp:ServiceReference ...
0
votes
1answer
128 views

Web Reference or Service Reference in Business layer, where is the published url?

I have a solution that uses caching to trigger some action in the business project within my solution. I would like to call a web service from this project and was going to add either a web or service ...
0
votes
1answer
265 views

Webreference vs servicereference. Only one works ? Serialization?

I've got two applications. One uses webreference to my webservice, and second use servicereference to my webservice. There is metohod which I'm invoking: [WebMethod] public Car[] GetCars(string ...
0
votes
1answer
62 views

Multiple Servers with identical services

I have a dozen servers in different locations all running the same web service application but each going against their own SQL Server DB. I am writing a desktop application that consumes the web ...