Kofax server throws error "VRS failed with error -136" when a job is submitted with index fields and works fine when job is submitted without index fields. I suspect some configuration issue on the kofax server setup but unable find which configuration is causing it throw error -136
Related
My report is working all the while, until it suddenly hitting this error "An error occurred during local report processing." . I am not able to locate the actual problem.
_reportViewer.LocalReport.SetParameters(rptParameter); //<--Hit error
I have try the solution on An error occurred during local report processing..The definition of the report '' is invalid , but it is still not working
Please advice .
This is the most generic error you can find working with rdlc.
You have to catch the Exception and give a look at the various levels of InnerException; i.e.:
ex.Message
ex.InnerException.Message
ex.InnerException.InnerException.Message
Maybe try to allow null the parameter you have,
i think you are sending a nothing value on that parameter and your parameter is not design to accept null value, so error will occur.
if the problem still there, try to add screen shot
I have a WCF service running on azure and it gives this exception sometimes at random:
The underlying provider failed on Open.
There was no inner exception so I started looking into this. I enabled azure diagnostics so I could trace and log this exception.
I found out that this Exception is thrown whenever the following exception is thrown:
(MySql.Data.MySqlClient.MySqlException) Exception Message = "Unable to
connect to any of the specified MySQL hosts."
So I looked in to this and found out that EntityFramework.pdb cannot be found.
I tried solving this by checking Microsoft Symbol Servers. This does not solve the problem.
Some extra information :
The mysql database is made with a code first approach.
Mysql logged this :
I am getting an intermittent JavaScript error when using the DevExpress client API. This error can sometimes occur on one computer when all other computers are running the code perfectly fine.
The error is:
"Unhandled exception at line 70, column1 in http://localhost:4593/Home/Grid. JavaScript runtime error: 'MVCxClientGridView' is undefined."
The error occurs at the following line in the compiled code:
var dxo = new MVCxClientGridView('GridView');
I have not been able to successfully replicate the causes of the error - it sort of just goes away after awhile. What am I missing?
I had a C# application that communicates with a database using Linq to SQL and was working just fine when I last tested it a month ago. However, it is now throwing the following exception:
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
------ Exception ------
Error: A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The received certificate has expired.)
I am digitally signing the code with a Verisign key, but it has not expired. I don't digitally sign until I build the installer, and this is occurring on my dev system in debug, so the code had not been signed.
It is also happening on other systems where the software was signed and installed. These systems access the same test database as I use on my dev system, and were working previously.
The line of code that causes the error follows:
List<req> results = new List<req>();
using (var db = new MyDbDataContext(connectionString))
{
var query =
from item in db.reqs
where item.senddate == null
select item;
results = query.ToList();
}
The error happens when I call results = query.ToList();.
I use the following connection string:
Data Source=<removed>;Initial Catalog=<removed>;UID=sa;PWD=<removed>;Encrypt=true;Integrated Security=false
I am able to connect if I set Encrypt=false, but that is not a viable solution.
Again, this worked just fine the last time I tested it a couple weeks ago. Any insights as to what might be happening would be greatly appreciated.
I managed to find a solution from this post.
Basically, I added TrustServerCertificate=True to my connection text, and everything started working again. I'm not sure why it stopped working in the first place, and if anyone knows if this will be a permanent solution or not, I would love to find out more about what happened.
Thank you to Carson63000 and Jacco for the suggestions.
This is the second time I got following error for my website:
Warning: Fatal error 9001 occurred at May 5 2012 1:16AM. Note the
error and time, and contact your system administrator.
I get this error while login to website. However, there is no any problem for connecting database or fetching records.
Last time I just took a backup and restore my database then this issue was resolved. But, I got again similar issue, now I want to know exact cause for this error.
I appreciate your reply.
Check SQL Server logs, seems to be an issue with log being full. "Last time I just took a backup and restore my database then this issue was resolved." seems to be database related. Check https://serverfault.com/questions/238394/diagnosing-microsoft-sql-server-error-9001-the-log-for-the-database-is-not-avai.