Hi.
I'm using MT SOAP API in my server side application.
Last days it fails almost always. Here're are request and response from server:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><Translate xmlns="http://api.microsofttranslator.com/v1/soap.svc"><appId>HIDDEN_APP_ID</appId><text>tes</text><from>en</from><to>ru</to></Translate></s:Body></s:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><s:Fault><faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:InternalServiceFault</faultcode><faultstring xml:lang="en-US">The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.</faultstring></s:Fault></s:Body></s:Envelope>
How can I diagnose the issue? Can this be due to a translations limitation of a free account or the response should be more meaning full?
-Sergey