Zum Inhalt springen

JavaMail 1.3.1: Session.getDefaultInstance kann nicht aufgelöst werden


Oortael

Empfohlene Beiträge

Morgen Jungs und Mädels,

kleines Problem mit JavaMail.

er meint, dass er Session.getDefaultInstance nicht auflösen kann. seht euch den Code mal an und gebt mir bitte bescheid wenn ihr ne Lösung gefunden habt.

Danke.

package com.test.test.stoerm.mail;

import java.util.*;

import javax.mail.*;

import javax.mail.internet.*;

public class SendStoerm

{

//Die Methode sendet die mail zum mailserver

public void sendMail(String args[])

{

//Lesen der Systemeigenschaften (Eingabeparamter auf Kommandozeile

Properties prop = System.getProperties();

prop.put("mail.smtp.host", args[4]);

Session sess = new Session.getDefaultInstance(prop);

//Erstelle zu sendende mail

MimeMessage mimeMail = new MimeMessage(sess);

//setze Empfänger

mimeMail.addRecipient(Message.RecipientType.TO, new InternetAddress(args[0]));

//Übergebenen Text in Mail einfügen

mimeMail.setText(args[3]);

//Sende Nachricht

mimeMail.saveChanges();

Transport transport = sess.getTransport("smtp");

transport.connect(args[4], args[5], args[6]);

transport.sendMessage(mimeMail, mimeMail.getAllRecipients());

transport.close();

}

}

Link zu diesem Kommentar
Auf anderen Seiten teilen

So wie es aussieht gibt es getDefaultInstance nur mit zwei Parametern.

Probier mal als zweiten Parameter null zu übergeben.

Grüße

themaster

Auszug: javadoc: http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/mail/Session.html

getDefaultInstance

public static Session getDefaultInstance(java.util.Properties props,

Authenticator authenticator)Get the default Session object. If a default has not yet been setup, a new Session object is created and installed as the default.

Since the default session is potentially available to all code executing in the same Java virtual machine, and the session can contain security sensitive information such as user names and passwords, access to the default session is restricted. The Authenticator object, which must be created by the caller, is used indirectly to check access permission. The Authenticator object passed in when the session is created is compared with the Authenticator object passed in to subsequent requests to get the default session. If both objects are the same, or are from the same ClassLoader, the request is allowed. Otherwise, it is denied.

Note that if the Authenticator object used to create the session is null, anyone can get the default session by passing in null.

In JDK 1.2, additional security Permission objects may be used to control access to the default session.

Parameters:

props - Properties object. Used only if a new Session object is created.

It is expected that the client supplies values for the properties listed in Appendix A of the JavaMail spec (particularly mail.store.protocol, mail.transport.protocol, mail.host, mail.user, and mail.from) as the defaults are unlikely to work in all cases.

authenticator - Authenticator object. Used only if a new Session object is created. Otherwise, it must match the Authenticator used to create the Session.

Returns:

the default Session object

Link zu diesem Kommentar
Auf anderen Seiten teilen

Dein Kommentar

Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung wiederherstellen

  Nur 75 Emojis sind erlaubt.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Dein vorheriger Inhalt wurde wiederhergestellt.   Editor leeren

×   Du kannst Bilder nicht direkt einfügen. Lade Bilder hoch oder lade sie von einer URL.

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...