No announcements
Found 2919693 threads
-
0 Votes
How to change WCF service contract which does not effect client c#
Hi, I see that you have solved your problem in: httpUnanswered | 2 Replies | 888 Views | Created by Mou_kolkata - Thursday, January 23, 2014 11:10 AM | Last reply by Mou_kolkata - Friday, January 24, 2014 12:03 PM -
0 Votes
WCF contract change issue
happenning is that the client application is refering the contract, the methode name that it calls does not change, only different is that ...Answered | 1 Replies | 562 Views | Created by Serge Calderara - Friday, May 29, 2015 6:13 AM | Last reply by Amy Peng - Monday, June 1, 2015 2:59 AM -
1 Votes
WCF Service Contract
an address, a binding and a contract so you cannot create a WCF service without defining a contract. The ServiceContractAttribute is used ...Answered | 2 Replies | 484 Views | Created by nitinkaushik2001 - Monday, August 4, 2014 12:51 PM | Last reply by nitinkaushik2001 - Monday, August 4, 2014 1:10 PM -
1 Votes
Can not Implement Client-Side Service Contract Hierarchy in WCF
http://codeidol.com/csharp/wcf/Service-Contracts/Contract-Inheritance/ <client>Answered | 6 Replies | 4701 Views | Created by santoshsp - Tuesday, May 4, 2010 5:14 PM | Last reply by Haripraghash - Wednesday, May 5, 2010 10:22 AM -
0 Votes
WCF Service Contract
I'm running through the tutorials on how to create and use a WCF Service (http://msdn.microsoft.com/en-us/library/ms731835%28v=vs.100%29.aspx) On ...Answered | 1 Replies | 953 Views | Created by Draykkaan - Monday, June 3, 2013 7:20 PM | Last reply by Magnus (MM8) - Monday, June 3, 2013 7:30 PM -
1 Votes
WCF without service contract
WCF framework allows you to do that provided you are hosting your service in IIS. But this is not at all recommended as it break SOA rules.Answered | 1 Replies | 4692 Views | Created by Exception.Encounter - Thursday, April 14, 2011 5:01 AM | Last reply by Lingaraj Mishra - Thursday, April 14, 2011 5:04 AM -
0 Votes
Given a Service Contract Interface, How can I know which class is acting as WCF Client?
Hi Experts, I have a special case in which I need to find out the classes which are WCF client for a WCF ...Unanswered | 4 Replies | 3125 Views | Created by vashistha - Thursday, February 12, 2009 8:46 AM | Last reply by Marco Zhou - Tuesday, February 17, 2009 6:52 AM -
0 Votes
WCF - Service Contract Namespace
The namespace-property lets you specifie an XML-namespace. The assembly-namespace in which you define your servicecontract type is not suppose to be visible for the consumer ...Answered | 2 Replies | 25824 Views | Created by BiztalkGhost - Sunday, October 3, 2010 2:40 PM | Last reply by Dawgbytes - Sunday, October 3, 2010 4:02 PM -
0 Votes
WCF Service Contract issue...
Thanks Sara, but unfortunately that doesn't help. Here is the problem, I am trying to create a service contract for a caching service. The client needs ...Unanswered | 4 Replies | 5331 Views | Created by DEKER - Tuesday, July 31, 2007 11:58 PM | Last reply by Sara Wong - MSFT - Friday, August 17, 2007 10:24 PM -
0 Votes
The contract 'IMetadataExchange' in client configuration does not match the name in service contract.
is a confirmed bug. WCF services client will not work on a machine with the BizTalk SDK loaded. Which , is a big problem when you are doing Biztalk development. ...Answered | 3 Replies | 7514 Views | Created by MSDEVTECH - Tuesday, February 21, 2012 6:33 PM | Last reply by MSDEVTECH - Wednesday, March 14, 2012 12:42 PM -
0 Votes
WCF Callback service does not call back to client
Dear all, After reading tens of tutorials and examples throughout the internet, I managed to create a very shot and simple WCF Service which ...Answered | 2 Replies | 3715 Views | Created by Nemesish3d - Friday, May 8, 2009 8:48 AM | Last reply by Nemesish3d - Friday, May 8, 2009 9:21 AM -
0 Votes
WCF Service Contract - Method Encapsulation
- update the service reference in the client - add the new method to the client manager (a class that supports invocation of the WCF proxy, or the ...Answered | 3 Replies | 5138 Views | Created by Lefty123 - Tuesday, September 9, 2008 4:16 PM | Last reply by Dan Rigsby - Tuesday, September 9, 2008 8:24 PM -
0 Votes
WCF Service Contract Problem
Hi! I have layer architecture Data Layer (Fetches data from Sql using Linq) Domain Layer (Convert Data to Business Domain) WCF ...Answered | 7 Replies | 3790 Views | Created by Murtaza Dhari - Thursday, July 9, 2009 1:08 AM | Last reply by Dhananjay25 - Thursday, July 9, 2009 8:40 AM -
1 Votes
WCF Update Service Contract
anyone teach me how to do updates? something like public CustomerRecord GetUpdates(int paramCustomerID)... <refer to the blog> Any ideas ...Answered | 3 Replies | 1421 Views | Created by Khem Oco - Thursday, December 13, 2012 6:56 AM | Last reply by Khem Oco - Friday, December 14, 2012 3:06 AM -
0 Votes
Why Domain Service does not have endpoints and service contract?
it does not add [ServiceContract] attribute to the class 2>methods does not haveAnswered | 1 Replies | 1450 Views | Created by lax4u - Friday, February 11, 2011 5:25 PM | Last reply by Colin Blair - Friday, February 11, 2011 7:00 PM -
0 Votes
C++ client for C# duplex WCF service
can only be developed in C# or VB but not in managed C++.NET. At least, I didn't see managed C++.NET WCF project templates in VS2008. So how can ...Answered | 7 Replies | 6189 Views | Created by NKlimov - Saturday, February 18, 2012 6:12 AM | Last reply by masuberu - Friday, December 21, 2012 4:43 AM -
1 Votes
The contract 'IMetadataExchange' in client configuration does not match the name in service contract.
I am trying to run a test WCF tutorial and getting an error when I attempt to run it via F5: "The contract 'IMetadataExchange' in ...Answered | 4 Replies | 11434 Views | Created by Bill2010 - Tuesday, November 17, 2009 10:16 PM | Last reply by Yogurtu - Tuesday, September 3, 2013 11:11 AM -
0 Votes
Universal Contract not found by WCF Client using Add Service Reference
I am attempting to process a request/response message in WCF using a universal contract. This works fine if I specify the action in the request and response messages. ... -
0 Votes
How to connect wcf service hosted in windows service to a java service client c#
external users. The Windows service is the client to the Java Web service, which is a Web based solution. You ...Answered | 3 Replies | 1707 Views | Created by Roopini - Friday, December 5, 2014 9:22 AM | Last reply by darnold924 - Sunday, December 7, 2014 11:01 AM -
0 Votes
Contract "IMetaDataExchange" in client configuration does not match the name in service contract
sample, it throws an error stating the "Contract "IMetaDataExchange" in client configuration does not match the name in service ...Answered | 2 Replies | 7862 Views | Created by Bill2010 - Thursday, July 23, 2009 3:15 PM | Last reply by Bill2010 - Thursday, July 23, 2009 6:24 PM - Items 1 to 20 of 2919693 Next ›
No announcements