Tagged Questions
1
vote
1answer
27 views
Why WCF service change date value in case different TimeZone on client and server side
I have WCF service, one service method return array of some objects, single object contain some date values, for example {14-05-2013 08:00:00} Kind: Unspecified.
I can see in debug mode this value ...
0
votes
3answers
80 views
setting HttpContext.Current.User throws null reference exception
This is a WCF Oneway operation. HttpContext.Current.User is cleared in those operations, that is the reason I added a behavior that saves the User before it is cleared. Later I want to re-set the ...
2
votes
1answer
133 views
HttpContext.Current.User is null after installing .NET Framework 4.5
I was using .NET 4.0 VS10. I had working WCF services that were using forms authentication.
I upgraded to VS11, .NET 4.5.
Now my HttpContext.Current.User is null, in a wcf request.
I injected a ...
1
vote
2answers
690 views
With C#, WCF SOAP consumer that uses WSSE plain text authentication?
I have a WCF SOAP consumer that is implemented by Visual Studio 2012 from a WSDL. The WSDL was generated by PeopleTools. The base object is of type System.ServiceModel.ClientBase.
I need the SOAP ...
1
vote
1answer
437 views
WCF and Shared Reference Library Between Client & Service
Visual Studio and SvcUtil can be used to generate proxy code to integrate with a service. In VS 2010 and prior there were issues if you wanted to maintain a cross tier reference library of shared ...
0
votes
1answer
182 views
Lost access to HTTP Request after upgrade to .NET Framework 4.5
I have a WCF service that accepts a POST request from jqGrid in the form of HTML form and returns JSON.
While things were on .NET 4.0, all worked fine. I could access form fields inside the service ...
0
votes
1answer
99 views
How to read FaultException detail in consuming application?
In my WCF WebMethod I have the following code that provides some parameter validation. It works okay and throws the FaultException:
Public Function BeforeCall(operationName As String, inputs() As ...
0
votes
1answer
95 views
WCF FaultExceptions, SOAP Faults and non-.NET apps
I'm just developing my first WCF WebMethod, and am looking at error handling.
After having spent a week reading up on this, the general consensus seems to be that errors within WCF WebMethods ...
2
votes
1answer
395 views
.NET 4.5 and WCF Request Compression
We have a web application hosted on a third party hosting environment. The server application exposes some WCF RESTFUL services to our iPad applicaitons.
The WCF services are .svc-less and are ...
