12 Unanswered Topics

Remove Filter
Member Avatar for
Member Avatar for maurices5000

Are there two or more ways to couple and decouple the service type and service contract? The book I'm reading speaks of coupling and decoupling in two different ways. Am I reading it wrong? I can provide examples but I'm trying not to over complicate this post. 1) She speaks …

0
133
Member Avatar for Dendei

Hey i just wonder if i can send the method comments with the OperationContract so i see it in my WCF Test Client. that way the php dude can see what each method does and how to work from that. /// <summary> /// Text text /// </summary> /// <param name="Kund"></param> …

0
154
Member Avatar for libathos

Hi,I have already a web service written in C# which is designed to send a list of objects to the client.For the shake of simplicity let's say it's those objects have 2 fields, a description and an image.The web service is configured to send the data in buffered mode,now I …

0
170
Member Avatar for complete

As far as I can tell REST is a methodology or an archecture. Is it a real tangable thing? I mean, can you look at a back-end code and determine if it is REST or not REST? How do you communicate with a WCF RESTful service? Are all WCF services …

0
134
Member Avatar for astian

Hi, again Im hoping to be on the right topic. So here it is: I am publishing a SilverlightApplication that uses a WCF service to read from a database. The application uses Bing Maps to visualize some polygons. The thing is, that after I publish it ONLY on some machines …

0
151
Member Avatar for hueikar

I am doing system using window phone 7 and sql server as database. I am using below coding to get shopping cart list at listbox. public List<Order> FindOrder(string custemail, string orderstatus) { var findorder = from r in order.Orders where (r.CustEmail == custemail && r.OrderStatus == orderstatus ) select r; …

0
119
Member Avatar for HG&C

I have a C# WCF Ajax service with an OperationContract that accepts a string of text that is expected to be CSV. I have written most of a CSV parser for this, but I would like to possibly use OLEDB to parse this string. Is this possible? I would rather …

0
95
Member Avatar for Finarfin34

I got the error below what might cause it? Server Error in '/' Application. -------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Line …

0
90
Member Avatar for kinger29

I have created a simple web service based off one of the project templates in the Microsoft WCF Starter Kit 2 for .NET 3.5. I have successfully implemented a GET method. However I am having trouble get a POST method to work. [CODE] [WebHelp(Comment = "Sample description for DoWork")] [WebInvoke(UriTemplate …

0
178
Member Avatar for sachintha81

I have a very simple WCF program where I have a simple self-host and a client running on the same computer. There is a single method which returns a System.IO.Stream, which is actually a serialized form of a simple string. (This could be any number of data types, but for …

0
105
Member Avatar for andy1977

I have a WCF service in which I have one method, It gets new live auctions from the database. It is called every second. For each auctions WCF creates new thread and start the auction. This thread updates database every second and after auction ends that thread gets close. However …

0
96
Member Avatar for mjguingab

My team is currently working on a webchat project. But we have very limited knowledge on creating chat programs. The requirements are the following.. 1. The remote client can access us via web and chat with us. 2. Our office will answer their inquiries using client-side windows form-type of app. …

0
79

The End.