2
votes
2answers
40 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 …
0
votes
1answer
73 views
Update service reference not working
I'm using Visual Studio 2008 and have a WCF client working against a WCF service. They are both located in the same Visual Studio solution. After I've made a change in my WCF contract, I want to …
0
votes
1answer
474 views
How can I update the ScriptManager from a .ascx Web User Control in DNN?
Hi,
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>
…
2
votes
2answers
243 views
What is wrong with adding a service reference when consuming WCF in Silverlight?
This article talks about consuming WCF services in Silverlight, but claims:
There will be no proxies, no generated code, no 3rd party utilities, and no disgusting "Add Service Reference" usage.
What …
1
vote
1answer
141 views
HashSet in WCF
hi friends,
i'm using a HashSet in my WCF interface
[ServiceContract]
public interface IwcfServerSync
{
[OperationContract]
void Test(HashSet<int> someHashSet);
}
When i create a …
0
votes
1answer
228 views
Can’t re-add Service Reference Properly
I've got a WCF service up and running on a server. We have a proxy class that we add all service references to, and I tried to add my service reference there. However, it's not exposing all of the …
