Click here to Skip to main content
15,891,033 members
Home / Discussions / C#
   

C#

 
AnswerRe: activity-selection algorithm in c# Pin
riced27-Jan-13 11:06
riced27-Jan-13 11:06 
GeneralRe: activity-selection algorithm in c# Pin
PIEBALDconsult27-Jan-13 17:50
mvePIEBALDconsult27-Jan-13 17:50 
AnswerRe: activity-selection algorithm in c# Pin
J4amieC28-Jan-13 0:44
J4amieC28-Jan-13 0:44 
AnswerRe: activity-selection algorithm in c# Pin
pt140128-Jan-13 8:40
pt140128-Jan-13 8:40 
QuestionC# access excel file Pin
dcof26-Jan-13 18:24
dcof26-Jan-13 18:24 
SuggestionRe: C# access excel file Pin
Richard MacCutchan27-Jan-13 0:15
mveRichard MacCutchan27-Jan-13 0:15 
AnswerRe: C# access excel file Pin
Dave Kreskowiak27-Jan-13 3:44
mveDave Kreskowiak27-Jan-13 3:44 
QuestionWCF receiving large XML Pin
Alex Campos Vzla25-Jan-13 11:39
Alex Campos Vzla25-Jan-13 11:39 
hello, i have a service in WCF that wil recieve a alrge xml in response. here is my config
<bindings>
  <basicHttpBinding>
    <binding name="CVSCValidateContactAlertSOAP" />
    <binding name="CVSCUpdateOperationsContactSOAP" />
    <binding name="ContactRegisterSOAP" />
    <binding name="FindContactsListSOAP" />
    <binding name="FindReviewsByAccountSOAP" />
    <binding name="AddReviewSOAP" />
    <binding name="ProductOfferingSOAP" />
    <binding name="OperationSupportSOAP" maxBufferPoolSize="2147483647"
      maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
      transferMode="Streamed">
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
        maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
    </binding>
    <binding name="CustomerAccountSOAP" maxBufferPoolSize="2147483647"
      maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
      transferMode="Streamed">
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
        maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
    </binding>
    <binding name="BusinessInteractionSOAP" />
  </basicHttpBinding>
</bindings>



the answer from the server is


Server stack trace:
en System.ServiceModel.Channels.HttpInput.ThrowMaxReceivedMessageSizeExceeded()
en System.ServiceModel.Channels.HttpInput.GetMessageBuffer()
en System.ServiceModel.Channels.HttpInput.ReadBufferedMessage(Stream inputStream)
en System.ServiceModel.Channels.HttpInput.ParseIncomingMessage(HttpRequestMessage httpRequestMessage, Exception& requestException)
en System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
en System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
en System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
en System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
en System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
en System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]:
en System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
en System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
en IServicioCuenta.buscarCuenta(Auditoria auditoria, CriterioSeleccion criterio)
en ServicioCuentaClient.buscarCuenta(Auditoria auditoria, CriterioSeleccion criterio)
AnswerRe: WCF receiving large XML Pin
Eddy Vluggen26-Jan-13 3:38
professionalEddy Vluggen26-Jan-13 3:38 
Questionreading NTFS Share permission - how to interpret SHARE_INFO_2.Permissions flag Pin
devvvy25-Jan-13 8:52
devvvy25-Jan-13 8:52 
AnswerRe: reading NTFS Share permission - how to interpret SHARE_INFO_2.Permissions flag Pin
André Kraak25-Jan-13 10:57
André Kraak25-Jan-13 10:57 
AnswerRe: reading NTFS Share permission - how to interpret SHARE_INFO_2.Permissions flag Pin
Richard Deeming28-Jan-13 2:02
mveRichard Deeming28-Jan-13 2:02 
Questionreturn list of url if i enter specific keyword Pin
prashant.k.bamania25-Jan-13 2:24
prashant.k.bamania25-Jan-13 2:24 
AnswerRe: return list of url if i enter specific keyword Pin
Richard MacCutchan25-Jan-13 3:24
mveRichard MacCutchan25-Jan-13 3:24 
GeneralRe: return list of url if i enter specific keyword Pin
prashant.k.bamania26-Jan-13 1:21
prashant.k.bamania26-Jan-13 1:21 
GeneralRe: return list of url if i enter specific keyword Pin
Richard MacCutchan26-Jan-13 1:23
mveRichard MacCutchan26-Jan-13 1:23 
AnswerRe: return list of url if i enter specific keyword Pin
Pete O'Hanlon25-Jan-13 3:53
mvePete O'Hanlon25-Jan-13 3:53 
GeneralRe: return list of url if i enter specific keyword Pin
prashant.k.bamania26-Jan-13 1:22
prashant.k.bamania26-Jan-13 1:22 
GeneralRe: return list of url if i enter specific keyword Pin
Pete O'Hanlon26-Jan-13 5:12
mvePete O'Hanlon26-Jan-13 5:12 
AnswerRe: return list of url if i enter specific keyword Pin
Manfred Rudolf Bihy26-Jan-13 10:09
professionalManfred Rudolf Bihy26-Jan-13 10:09 
SuggestionGoogle Earth Plugin throwing Javascript Error to WPF Window Pin
citibabu24-Jan-13 19:50
citibabu24-Jan-13 19:50 
GeneralRe: Google Earth Plugin throwing Javascript Error to WPF Window Pin
Richard MacCutchan25-Jan-13 1:41
mveRichard MacCutchan25-Jan-13 1:41 
Questionimplementing skype plugin on windows 8 Pin
omotayo adebola24-Jan-13 13:37
omotayo adebola24-Jan-13 13:37 
AnswerRe: implementing skype plugin on windows 8 Pin
Pete O'Hanlon25-Jan-13 0:08
mvePete O'Hanlon25-Jan-13 0:08 
QuestionC# timeout Pin
dcof24-Jan-13 12:10
dcof24-Jan-13 12:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.