|
More site info...
Windows Communication Foundation | Forum profile
|
|
Forum profile page for Windows Communication Foundation on http://msdn.microsoft.com.
This report page is the aggregated overview from a single forum: Windows Communication Foundation, located on the Message Board at http://msdn.microsoft.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Windows Communication Foundation" on the Message Board at http://msdn.microsoft.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Windows Communication Foundation:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
399
|
1,149
|
2,784
|
|
Post:
|
712
|
2,011
|
5,801
|
|
|
Windows Communication Foundation Posting activity graph:
|
Top authors during last week:
user's latest post:
Security Support Provider...
Published (2009-12-09 09:11:00)
Dear MIC-Alex, I saw the svc file. Please let me know how you host the WCF service in this situation. http://miconsultancy.wcf.services/sehmanager/Application.svc If you host this service in IIS, we don't need to specify the base address. Please post out the client configuration file(how do you generate this file and please don't modify it) and service configuration file separately in two posts so that we can carefully check the...
user's latest post:
Tracking which users are using...
Published (2009-12-10 04:31:00)
Hi, You can get the endpoint from which the request is originating. That would help you to track. How does that sound?
user's latest post:
Using WCF to allow interaction...
Published (2009-12-10 01:53:00)
Hi Don, As for the windows service, would you provide more information about what it does now and what is the requirement for WCF service to interact with it. For example, what is the expected behavior of the WCF service you want to add(what it will accept as input and what is the output). If you just want to add WCF code into the existing windows service, you can have a look at the WCF windows service hosting scenario: #How to: Host a WCF...
user's latest post:
Parameter always null in call to...
Published (2009-12-10 06:28:00)
Hi, The DataContract exists in a shared library where both the client and server have access to it????? How do you reference the dataContract on your client side, did you add it by clicking "Add reference" or through "Add Service reference", or you did both of them. If you did both of them make sure you have the "Reuse types in all referenced assemblies" check in advanced settings when...
user's latest post:
How to handel session for...
Published (2009-12-08 11:22:00)
Hi, I'm not sure about this sentence "i want to do an applcation to know about session". what do you mean here? you need to have sessions betwee service and clients? About rest - sounds like you need ConcurrencyMode. Single(read this article: http://msdn.microsoft.com/en-us/library/system.servicemodel.concurrencymode.aspx )
user's latest post:
WCF events and callbacks?
Published (2009-12-08 15:01:00)
Sessions in WCF is a bit different then in asp.net. You close them by marking one operation as "Terminating" and when the client calls that operation, WCF will know to close the session as well. But yeah, the current solution you are using will be sufficient. You won't benefit from any callback/event messaging.
user's latest post:
Remoting with WCF.
Published (2009-12-08 16:07:00)
Any tips on how to get this to work. I first tried the simplest case where I am building the application and the proxy. During the build I set a build event to generate the proxy like: svcutil /reference:C:\...\References\XXX.SharedFunctions.dll XXX.WebServices.BsiServices.ServiceContracts.dll svcutil *.wsdl *.xsd /async /language:C# /n:*,XXX.BsiServices.WebServiceAgent /out:Services.cs del *.wsdl del *.xsd But I still get the type include in...
user's latest post:
Remoting with WCF.
Published (2009-12-07 17:48:00)
Okay, I can show you how I write a string to a stream. (Which, in my case is the concession I made to use streams, since my endpoints all must use streams. Originally, the function I am showing you returned a string. Now, it still returns a string, but...its insode the stream.) I thought this quite funny, how I had painted myself into this corner, but...that stream is actually a great generic data pipe for my service and clients. Here is a...
user's latest post:
Possible concurrency issues?
Published (2009-12-10 06:28:00)
Ok I think I'm mentally almost there The above is already very clear..thanks a lot. Really learned something Concurrency was not so clear to me.. I thought it had to do with the threading happening in the instance but now I see it has to do with the context where the instance resides in. I have to do some more reading but I'm getting there.. One last question: What will happen with the instance and the context when ConcurrencyMode...
user's latest post:
WCF Message headers
Published (2009-12-09 13:17:00)
thank you, i will look at that. I actually found an answer here http://blogs.msdn.com/mahatim/archive/2009/04/20/adding-custom-headers-to-wcf-messages-on-netcf.aspx It isnt the best method that I would like to use, but it works for now. Since these changes only need to happen in the CFClientBase.cs file, and there arent any changes made to that file when you generate/update the proxy, so I can rename that file and continue to use it. For now,...
|
|
|
|
Latest active threads on Windows Communication Foundation::
Started 2 days, 1 hour ago (2009-12-10 01:53:00)
by Steven Cheng - MSFT
Hi Don, As for the windows service, would you provide more information about what it does now and what is the requirement for WCF service to interact with it. For example, what is the expected behavior of the WCF service you want to add(what it will accept as input and what is the output). If you just want to add WCF code into the existing windows service, you can have a look at the WCF ...
Started 1 day, 18 hours ago (2009-12-10 08:44:00)
by Indigo Cowboy
Hi, I did not solve this. We did it in different way. If you have solved it please reply. Indigo Cowboy
Started 3 days, 10 hours ago (2009-12-08 16:46:00)
by nathan_works
Did you self-sign the cert ? Are you hosted in IIS or self-hosted ? Do you just want to get the connection through, or do you want to validate the SSL/cert implementation ? Check out MS's ssldiag if you are self-signing and hosted in IIS. (It will install and set up IIS to use the cert, nicely..) If you want the simple "make it work", you can use "ServicePointManager....
Started 1 month, 2 weeks ago (2009-10-27 10:43:00)
by programmerlive
Greetings, Some links are given below. A simple peer to peer chat application using WCF netPeerTcpBinding http://www.codeproject.com/KB/WCF/Chat_application _using_WC.aspx WCF Chat Application http://www.codeguru.com/csharp/csharp/cs_syntax/co mponentdevelopment/article.php/c13197/ Basic Windows Communication Foundation Technology Samples http://msdn.microsoft.com/en-us/...
Started 1 week, 1 day ago (2009-12-03 13:41:00)
by Patrik Löwendahl
Hi Spoofer, Where do you use the "Using block" around the client? WCF has concurrency management built in. Depending on what instanciation mode and concurrency mode you use it will behave differently in concurrency scenarios. You can read more about the options here: http://msdn.microsoft.com/en-us/magazine/cc163590. aspx and here: http://msdn.microsoft.com/en-us/library/system....
Started 1 week, 1 day ago (2009-12-04 00:04:00)
by Haripraghash
Hi, Try setting the order values of the datamembers.
|
|
Hot threads for last week on Windows Communication Foundation::
Started 1 week, 4 days ago (2009-11-30 09:54:00)
by Frank Xu Lei
Hi, From your Exception detail information. I guess that,Maybe it s something wrong with your Endpoint configratin. Such as contract="CDC.WebPortal.ServiceContract.IProductSe rvice" . Are you sure you set the correct namespace?
maybe this configratin is incorrect,so WCF thought you have no endpoints defined in config
Started 1 week, 2 days ago (2009-12-03 00:47:00)
by Haripraghash
Hi, Check this links for tips http://blogs.microsoft.co.il/blogs/rotemb/archive/ 2008/07/03/wcf-achieving-high-performance-list-of- key-design-decisions.aspx http://merill.net/2008/10/wcf-performance-optimiza tion-tips/
Started 1 week, 1 day ago (2009-12-03 13:41:00)
by Patrik Löwendahl
Hi Spoofer, Where do you use the "Using block" around the client? WCF has concurrency management built in. Depending on what instanciation mode and concurrency mode you use it will behave differently in concurrency scenarios. You can read more about the options here: http://msdn.microsoft.com/en-us/magazine/cc163590. aspx and here: http://msdn.microsoft.com/en-us/library/system....
Started 1 week, 2 days ago (2009-12-03 01:14:00)
by Haripraghash
Hi, Problem statement from my understanding : You have a set of xsd's and you have generated the classes for those xsds. Now you are trying to add another class to the response and want this newly added class to be able to correcly deserialize at the client side.But the client side doesnt know about this new type. You can use ExtensionDataObject for your case. Check this thread for more...
Started 4 days, 10 hours ago (2009-12-07 16:55:00)
by KevinBurton
I have a WCF application that is hosted in a Windows service. Recently I have a requirement to transfer an object that is defined in a 'foreign' assembly. I notice that if I specify the fully wuantified type name of the object as a member of the message sent the asssembly gets transferred via XmlSerializer just fine. The problem is on the client side the proxy that gets generated tries to ...
Started 1 week ago (2009-12-04 11:35:00)
by Patrik Löwendahl
Group assignments are cached for the user by windows. Usually all you need to do is to log on and off the user for it to get the new assignments. Have you tried this?
Started 1 week, 2 days ago (2009-12-02 19:22:00)
by vlyaku
Hi, So you have the same code in OnStart and in general? And everything works when you restart win service? Could you please post the full OnStart code?
Started 4 days, 17 hours ago (2009-12-07 09:25:00)
by Riquel_Dong
Hi Doug, In WCF Rest service there is not SOAP message, so you can't return a FaultException to the client. Actually the appropriate status code is returned to the requestor as an HTTP header, allowing the requestor to determine the result of the call. We can setting the status code on the response to give the caller more information in this situation. Please have a look at this article: ...
Started 4 days, 18 hours ago (2009-12-07 08:57:00)
by Riquel_Dong
Hi , Please give out more information about your situation: 1. Whether the offending clients and one client(successfully invoke service operations) have some difference, for example application type(console, ASP.NET), the different domains, the different users who run the application. 2. If you edit client config file like below, whether you can fix this issue: <identity> <...
Started 1 week, 1 day ago (2009-12-03 16:41:00)
by Justin Mason
You can do set it in configuration:
<bindings>
<binding name="defaultTCPBinding" maxReceivedMessageSize="2147483647" receiveTimeout = "07:00:00">
      <readerQuotas maxArrayLength="2147483647" />
     </binding >
</bindings>
<client>
<endpoint
   address="net.tcp://localhost:6000/MyService"
   binding="netTcpBinding"...
|
|