When we are using MapiMessage.fromMailMessage in multiple threads, we noticed some weird exception. The exception will only throw when we use multiple threads. And worked fine with ONE thread.
It’s rare and we only notice 2-5 times with a 100K message set testing.
Anyway, it show up many times when we repeated the test. So the issue should be there.
Thanks,
{code}
The mailMsg is created by us. We add headers, bodies add attachments to it.
MapiMessage.fromMailMessage(mailMsg, MapiConversionOptions.getUnicodeFormat());
java.lang.NullPointerException
at com.aspose.email.MapiMessage.a(Unknown Source)
at com.aspose.email.MapiMessage.b(Unknown Source)
at com.aspose.email.MapiMessage.a(Unknown Source)
at com.aspose.email.MapiMessage.a(Unknown Source)
at com.aspose.email.MapiMessage.fromMailMessage(Unknown Source)
{code}
Hi,
We tried with 650K messages(number not size), not just a few hundred message.
The issue only show up when we use multiple threads.
Using one thread, all 650K messages could be processed.
When we are using multiple threads, all exceptions coming from the call:
MapiMessage.fromMailMessage(message, MapiConversionOptions.getUnicodeFormat());
We could not give our test samples to you because of company policy. What I can tell is that we have samples from various sources. Some are Envelope Journey messages. Some are malformed, some are having special characters.
The concurrent issue only show up a few time with 650K message test. But it’s indeed there because every time I run the test, I saw random exception here and there. With one thread, no issue. Also, if I synchronized the MapiMessage.fromMailMessage call, NO ISSUE. So it’s must be a bug in your code.
We are at final stage to decide whether select your product or not. And those bugs I raised already delayed our decision several times. Some issues, I found a work around. Some of them like the thread issue wasted lots of time. I had to wrote special code to bypass those bugs. MapiMessage.fromMailMessage is too slow. we want to use multiple threads to improve performance. On our server, it can only handle avg 33 messages per second. If you can find the bug and fix it, then it can save us time. And you don’t offer source code, otherwise, I can fix the bug myself.
Thanks,
Hi Billow,
Based on my testing, the concurrent thread issue usually show up when I create MailMessage with attachments, then convert the MailMessage to MapiMessage. Create MailMessage was fine, no exception. The exception usually show up at:
MapiMessage.fromMailMessage(mailMsg, MapiConversionOptions.getUnicodeFormat());
When it tried to read the attachment, some value of the attachment was NULL, so throw null exception.
It seems that one of your static function shared a value. And in concurrent thread, the value was set to NULL, and the other thread was trying to use it at the same time.
My sample dataset have lots of email with attachments, calendar, nested messages.
If I try it on email without attachment, no such issue.
I have to use STATIC lock to get rid of those random exceptions.
Hopefully it will help you to find the bug.
Thanks,
Ying
Hi Ying,
I will write one and submit tomorrow.
BTW, I had the code submitted a while ago in another thread.
Thanks,
Ying
Hi there,
Please check the attached file.
It has a java source code with four output files using different arguments.
If you check the file, there were two of them worked fine without any issue.
nolock-1-thread.txt: no lock, one thread
syncmapi-8-threads.txt: with lock, 8 threads
And two of them throw random exceptions and had failures.
nolock-8-threads.txt: no lock, 8 threads
synclock-8-threads.txt: with lock on MailMessage.load(bis, mailLoadOption), no lock on MapiMessage.fromMailMessage(mailMsg, MapiConversionOptions.getUnicodeFormat());
Hi Ying,
Thank you for sharing the sample code and details.
We have run the test with your sample code using the latest version of Asopse.Email for Java 5.1.0 and the following settings:
- Total Threads: 8
- syncLoad = false
- syncMapi = false
You need to create some malformed emails.
Such as malformed content-type, missing boundary, wrong encoding, child/parent boundary with the same boundary name, nested messages, envelop journey messages.
Many of samples we used, have malformed data in them.
I had 395 samples.
It did work fine with well-formatted email. Tried several thousands of well-formated email. worked fine.
But when we are testing, we focus more on malformed emails. They can help you to find edge cases.
Hi Ying,
Hey I am facing same issue . I am using Aspose.Email for .net I am convert .eml file using MapiMessage.fromMailMessage in multiple threads getting error .NullPointerException
Hello @ashish007 ,
Thank you for sharing the issue. Could you share more details, such as your code snippet and the exact error message?
- Aspose.Email’s PST writer is not thread-safe. Without the lock:
-
Corrupted PST files.
-
InvalidOperationException
(“Object is busy”). For making threads safe
// Process message
lock (asposeLock)
{
using var mailMsg = MailMessage.Load(tempFilePath);
using var mapiMessage = MapiMessage.FromMailMessage(mailMsg);
inbox.AddMessage(mapiMessage);Interlocked.Increment(ref totalMessageInPst);
Interlocked.Increment(ref totalProcessedMessages);if (totalProcessedMessages % 100 == 0)
{
Log.Information(“Total messages processed: {Count}”, totalProcessedMessages);
}
} i am doing so not getting error
-
also i am getting new error [07:30:27 ERR] Error processing message -2147008364
System.ArgumentOutOfRangeException: Index and length must refer to a location within the string. (Parameter ‘length’)
at System.String.ThrowSubstringArgumentOutOfRange(Int32 startIndex, Int32 length)
at System.String.Substring(Int32 startIndex, Int32 length)
at mm.c(String d)
at Aspose.Email.Calendar.Recurrences.CalendarRecurrence.d(String d)
at Aspose.Email.Calendar.Recurrences.CalendarRecurrence…ctor(String pattern)
at Aspose.Email.Mapi.MapiCalendarRecurrencePatternFactory.d(jK d, List`1 v, MapiCalendarTimeZone c, MapiMessageItemBase t)
at Aspose.Email.Mapi.MapiMessage.d(LK d, OutlookMessageFormat v, String c, Int32 t)
at Aspose.Email.Mapi.MapiMessage.n(MailMessage d, MapiConversionOptions v)
at Aspose.Email.Mapi.MapiMessage.m(MailMessage d, MapiConversionOptions v)
at Aspose.Email.Mapi.MapiMessage.d(Attachment d, MapiConversionOptions v)
at Aspose.Email.Mapi.MapiMessage.v(Attachment d, MapiConversionOptions v)
at Aspose.Email.Mapi.MapiMessage.d(MailMessage d, MapiMessage v, MapiConversionOptions c)
at Aspose.Email.Mapi.MapiMessage.v(MailMessage d, MapiConversionOptions v)
at Aspose.Email.Mapi.MapiMessage.FromMailMessage(MailMessage message, MapiConversionOptions options)
at Aspose.Email.Mapi.MapiMessage.FromMailMessage(MailMessage message)
at Program.ProcessSingleMessage(SimpleMessage msg, String databaseId, FolderInfo inbox, SearchSoapClient searchSoapClient) in
- Is there a hard limit of 100 emails conversion .eml to .pst file at a time in the trial version?
and why visual studio output window give this error Exception thrown: ‘System.FormatException’ in Aspose.Email.dll
Aspose.Email guarantees that one thread can safely work with one PST file, but the PersonalStorage itself is not thread-safe.
What does this mean? You can use different PST files in different threads without any issues. You cannot write to the same PST file from multiple threads simultaneously without using a lock
. Otherwise, you may encounter errors like corrupted PST files/Object is busy.
The email may contain a recurring calendar event with an incorrectly formatted recurrence rule.
Or the recurrence rule string might be shorter than expected, leading to an invalid substring operation. Can you please provide an EML file causing this issue?
Evaluation version of Aspose.Email provides the following limitation in PST: Only 50 emails can be extracted from a folder.
We can’t determine the cause of the error based on such limited information. Please provide more details, such as:
- The specific method/code example being performed when the error occurs.
- Whether the error happens with all emails or only specific ones.
- A sample file that reproduces the issue.
- etc.