[Solved] I am working in wcf service i created one function its working fine but i have to reduce line sizes in that function

It is difficult to understand your question but I suspect you are trying to return an array that is larger than that allowed by your current transport binding settings. BOTH in your server and client you should look at increasing your readerQuotas eg: <readerQuotas maxDepth=”32″ maxStringContentLength=”10000000″ maxArrayLength=”10000000″ maxBytesPerRead=”10000000″ maxNameTableCharCount=”10000000″ /> and possibly also your buffers … Read more

[Solved] WCF, MySQL and Transaction

This can’t be the code that’s causing an issue. The error you are getting is coming from an attempt to return or pass in a MySqlTransaction to/from the service. That’s just simply not going to work. Also, why on earth are you exposing a Command object to the outside world via a public property? Furthermore, … Read more

[Solved] Creating a batch files for visaul studio command

we can create a batch(.bat) file for executing the multiple commands in visual studio command prompt explained below. call “C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat” the above command will call the visual studio command prompt and then we have to wrote our multiple commands then it will be executed and save this file in .bat … Read more

[Solved] How i can use wcf in a wpf application [closed]

WPF is a computer-software graphical subsystem for rendering user interfaces in Windows-based application. WCF is a set of APIs in the .NET Framework for building connected, service-oriented applications. There is a cool blog post about how you can implement a WCF service and then consume it using a WPF client. 2 solved How i can … Read more

[Solved] WCF CallBack implementation [closed]

I can give you one big advantage. We have an application that involves a client (WPF) and a Windows service. Normally the client calls the service (via WCF) to retrieve and/or save data etc. But, there are times we want the service to send the client a message, to notify the client it needs to … Read more