Search Results

0
votes
2answers
826 views

Where goes WCF binding configuration?

I was checking out streaming in the Programming WCF Services book, and I spotted a line about configurating. You will need to configure the binding on the client or service s …
0
votes
2answers
93 views

Too long string for WCF

I'm trying to send a long string by WCF, around 64k chars long. When sending a long string, the I get the HTTP error 400. But when I send shorter string, everything works fine. Here is the WCF inte …
0
votes
2answers
65 views

Why does it matter which order settings are in app.config

I had a problem with WCF test, and the problem was solved when I moved to the top of system.servicemodel. My question is, why does this matter? Doesn't .NET read the XML by the field names? …
0
votes
2answers
39 views

wsdl 404 problem

I'm having problems with a web service. I published the site on IIS 6. With my browser the interface works fine. When I try to create a proxy with wsdl.exe, It gives me 404 not found error. …
1
vote
3answers
102 views

Decimal Cut problem

Is it possible to cut decimal, and not round it. Like this. decimal number = 12.159m; How can I easily get 12.15 from number and not 12.16? Is …
0
votes

wsdl 404 problem

Ok, now it's working. The problem was that my internet connection was using a proxy, turned that off and now it's working. …