:)
I mean to ask, what are the parameters to use to connect... What settings to 
set in pidgin for server name, port, etc...?


the below server code I got from the internet ....

public class Trial_XMPP_Server {

    public void startServer() throws Exception {

                XMPPServer server = new XMPPServer("vysper.org");
                        
                StorageProviderRegistry providerRegistry = new 
MemoryStorageProviderRegistry();

                AccountManagement accountManagement = (AccountManagement) 
providerRegistry.retrieve(AccountManagement.class);

                Entity user = EntityImpl.parseUnchecked("[email protected]");
                accountManagement.addUser(user, "password");

                server.setStorageProviderRegistry(providerRegistry);

                server.addEndpoint(new TCPEndpoint());

                server.setTLSCertificateInfo(new File("Trial_keystore.jks"), 
"Password123");

                server.start();
                System.out.println("Vysper server is running...");

                server.addModule(new EntityTimeModule());
                server.addModule(new VcardTempModule());
                server.addModule(new XmppPingModule());
                server.addModule(new PrivateDataModule());
    }

    public static void main(String args[]) throws Exception {
                Trial_XMPP_Server s = new Trial_XMPP_Server();
        s.startServer();
    }
}



Shibu Narayanan 

-----Original Message-----
From: Bernd Fondermann [mailto:[email protected]] 
Sent: Friday, May 30, 2014 10:20 PM
To: [email protected]
Subject: Re: connect to Vysper using pidgin

On Fri, May 30, 2014 at 3:07 PM, Shibu Narayanan <[email protected]> 
wrote:
> Is it possible to connect to Vysper using pidgin?

Yes.

  Bernd

Reply via email to