Examples of JingleFileTransfer


Examples of rocks.xmpp.extensions.jingle.apps.filetransfer.model.JingleFileTransfer

                "          <size>1022</size>\n" +
                "          <hash xmlns='urn:xmpp:hashes:1' algo='sha-1'>552da749930852c69ae5d2141d3766b1</hash>\n" +
                "        </file>\n" +
                "      </description>\n";

        JingleFileTransfer fileTransfer = unmarshal(xml, JingleFileTransfer.class);
        Assert.assertNotNull(fileTransfer.getFile());
        Assert.assertEquals(fileTransfer.getFile().getDescription(), "This is a test. If this were a real file...");
        Assert.assertEquals(fileTransfer.getFile().getMediaType(), "text/plain");
        Assert.assertEquals(fileTransfer.getFile().getName(), "test.txt");
        Assert.assertEquals(fileTransfer.getFile().getSize(), 1022);
    }
View Full Code Here

Examples of rocks.xmpp.extensions.jingle.apps.filetransfer.model.JingleFileTransfer

        jingleManager = xmppSession.getExtensionManager(JingleManager.class);
    }

    public JingleFileTransferSession initiateFileTransferSession(final Jid responder, File file, String description, long timeout) throws XmppException, IOException {
        JingleFileTransfer.File jingleFile = new JingleFileTransfer.File(file.getName(), file.length(), new Date(file.lastModified()), null, description);
        JingleFileTransfer jingleFileTransfer = new JingleFileTransfer(jingleFile);


        String ibbSessionId = UUID.randomUUID().toString();
        InBandBytestreamsTransportMethod ibbTransportMethod = new InBandBytestreamsTransportMethod(ibbSessionId, 4096);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.