-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
We are facing a problem of .Net framework corruption for one our clients with the following environment
OS : Windows 2008 Server SP2;
Framework : .NET Framework 3.5 SP1;
Application Details
Database : SQL Server 2008;
Server : WCF hosted webservice;
Client : WPF based UI;
Problem : The Config…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
We are facing a problem of .Net framework corruption for one our clients with the following environment
OS : Windows 2008 Server SP2;
Framework : .NET Framework 3.5 SP1;
Application Details
Database : SQL Server 2008;
Server : WCF hosted webservice;
Client : WPF based UI;
Problem : The Config…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element.
Let me begin by saying that I can fix the problem by increasing the size of MaxReceivedMessageSize and the appropriate…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have created a WCF service with one method which returns a System.Xml.XmlElement:
using System.Xml;
...
public XmlElement Execute(...)
{
XmlNode node = ...;
return (XmlElement)node;
}
When I try to access the service deployed on my server
WCFServiceClient service = new WCFServiceClient("WSHttpBinding_IWCFService");
XmlElement…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am having issues specifying the dataContractSerializer maxItemsInObjectGraph in host's web.config.
<behaviors>
<serviceBehaviors>
<behavior name="beSetting">
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="True"…
>>> More