Tagged Questions
The protocolexception tag has no wiki summary.
5
votes
1answer
419 views
Why would an XML-RPC API endpoint randomly throw a ProtocolError -1?
We have built an extensive middleware system around Magento's XML-RPC API. We've wrapped the endpoint with Python and are doing a lot of multicalls.
At a seemingly random interval, the API responds ...
4
votes
5answers
2k views
Getting error detail from WCF REST
I have a REST service consumed by a .Net WCF client.
When an error is encountered the REST service returns an HTTP 400 Bad Request with the response body containing JSON serialised details.
If I ...
1
vote
2answers
83 views
Throwing FaultException using Custom Exception Handler EL WCF
So I'm trying to use Enterprise Library in my WCF service to do some of the exception-related work for me.
My idea is to set up a "Custom Exception Handler" for say "NullReferenceException" and in ...
1
vote
2answers
2k views
Dealing with WCF service restart on client-side
I've got a GUI client which is running against a WCF services hosted as a Windows service on a server box. The WCF service is running in PerCall InstanceContextMode, and the client has a singleton ...
1
vote
0answers
504 views
Does System.ServiceModel.ProtocolException always have html code in its message?
Thats my question, I'm catching a few WCF exceptions on my client and the ProtocolException always has html code in its message.
Could I assume that will happen every time? For what I see the real ...
0
votes
1answer
23 views
playframework ProtocolException invalid message
I have a funny phenomenon:
If I start a blank index.html page with this controller:
public class Application extends Controller {
public static void index() {
render();
}
}
I don't ...
0
votes
0answers
116 views
O need help java.net.ProtocolException: Server redirected too many times (20)
I'm trying to download a file from this address
LINK
But I'm getting this exception
java.net.ProtocolException: Server redirected too many times (20)
what is making me confuse is that if I paste ...
0
votes
0answers
45 views
Always protocolexception is thrown while accessing java webservice from my wcf client
I'm getting the success response when valid data is passed. But In case of any failure, I'm always receiving a protocolexeption instead of the actual exception thrown by the service. From SOAPUI I can ...
0
votes
2answers
2k views
WCF Weird Service Behavior
I'm using a wsHttpBinding service that is working perfectly since now. My WPF application (client) is connected to it and automatically receives information from the server every 15 seconds.
I've ...
0
votes
2answers
225 views
C# Request not timing out
I have this code which runs in a BackgroundWorker, and should make a POST request to the server and get a response. It works fine when it is supposed to work, but when I try to induce a 404 error it ...