Categories
EDIINT AS2 Java Mendelson AS2 solution Microsoft Windows 7 Windows Server 2008 Windows Vista Windows XP

mendelson AS2 solution – “[SSLPeerUnverifiedException]: peer not authenticated … Connection problem, failed to transmit data.”

When you send a file to your partner the trasmission fails with the following error message:

[SSLPeerUnverifiedException]: peer not authenticated
Connection problem, failed to transmit data.

If the software is configured properly and you have managed to send files then the problem is software related.

Solution 1:

Download and install the latest version

My experience: with (AS2 1.1 b33) I could send a maximum of 5 consecutive files, I received the error over the fifth file and had to wait 10 minutes until half an hour before I can resubmit the files.

Solution 2:

Update all Expired Certificates in
…\mendelson\opensource\as2\certificates.p12
and in
…\mendelson\opensource\as2\jetty\etc\keystore

I suggest you use
Portecle, a user friendly GUI application for creating, managing and examining keystores, keys, certificates, certificate requests, certificate revocation lists and more.
Portecle can be launched directly with Java Web Start (Java 1.6 or later with Web Start required) from http://portecle.sourceforge.net/
or downloaded from http://sourceforge.net/projects/portecle/
extract the folder, start Command Prompt Window (Start -> Run -> cmd) and execute the following command:

C:\portecle-1.7>java -jar portecle.jar

Did my solution solve your problem?

Categories
Android Eclipse Java SDK

Eclipse – “Invalid file name: must contain only [a-z0-9_.]”

When you rename an image file on the res folder show following error message:

Invalid file name: must contain only [a-z0-9_.]

ie, file name must start with a lowercase letter, then it may contain lowercase/uppercase letters or numbers or underscores or dots.

Select file name on the Package Explorer then
click the right mouse button -> Refactor -> Rename
or

press Alt+Shift+R
and insert valid file name.

Did my solution solve your problem?