0
votes
1answer
26 views
How to load data from HTTPPOST request in server side?
I have a WebInvoke method like this;
[OperationContract]
[WebInvoke(
Method = "POST",
UriTemplate = "/go",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = …
0
votes
3answers
704 views
WCF - HTTP Post The remote server returned an error: (400) Bad Request
client & sever code below
[ServiceContract(Namespace = "http://test.mydomain.com")]
public interface IMyService
{
[WebInvoke(UriTemplate = "",
BodyStyle = …
0
votes
1answer
168 views
WebInvoke/DataContractJsonSerializer, ‘1,6276’ cannot be parsed as ‘double’.
Hi,
I am using WCF WebInvokeAttribute for declarative JSON requests (DataContractJsonSerializer),
with DataContractAttribute/DataMemberAttribute based serialization.
I'm using a service that …
3
votes
1answer
1k views
Accepting form fields via HTTP Post in WCF
I need to accept form data to a WCF-based service. Here's the interface:
[OperationContract]
[WebInvoke(UriTemplate = "lead/inff",
BodyStyle = WebMessageBodyStyle.WrappedRequest)]
int Inff(Stream …
