navik pathak

Greenhorn
+ Follow
since May 06, 2001
Merit badge: grant badges
For More
http://geocities.com/navik232
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by navik pathak

Hello Frineds,
I want to know that how one store his Attachement To local Directory Using JavaMail???
can Any help me??
thanks in advance
bye
21 years ago
Hello friends,
i am very curious about java...
can java be used for connecting to Web service for DialUp.
how to activate DialUp connection and how can we satisfy the need of User name and Password.....for it challang and handshake...
can any one give me idea about it
thanks in advance
navik
21 years ago
Hello friends,
i am very curious about java...
can java be used for connecting to Web service for DialUp.
how to activate DialUp connection and how can we satisfy the need of User name and Password.....for it challang and handshake...
can any one give me idea about it
thanks in advance
navik
21 years ago
Hi friend,
I am new to JavaMail and i am trying to send mail but could not make it. i got error about POP authentication when i am sending mail how this error comes in sending mail...
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class JDCSend {
public static void main (String args[])
throws Exception {
String smtpHost = args[0];
String from = args[1];
String to = args[2];
// Get system properties
Properties props = System.getProperties();
// Setup mail server
props.put("mail.smtp.host", smtpHost);

// Get session
Session session =
Session.getDefaultInstance(props, null);
// Define message
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("Hello, JDC");
message.setText("Welcome to the JDC");
// Send message
Transport.send(message);
}
}
i am using above code,....and running the prog like
java JDCSend smtp.mail.yahoo.com navik232@yahoo.com navik232@yahoo.com but got error like
javax.mail.SendingFailed and another nested Exception javax.mail.MessaginException:530 popauthentication required........
so what to do in that....
pls help me...
thanks
navik pathak
21 years ago
hi friends,
i have devloped voice chat appl...
but it work half-duplex ....
how to do it for full-duplex...
i doing it createing session manager and
startSession() method...
thanks in advance
bye
navik
22 years ago
hi friends,
i have done voice chat in jmf but it only works half-duplex
b'cas i had used multicast rtp session.......
is any one can guide about it to full duplex.....
please give code for creating unicast rtpSession.
bye
navik
22 years ago
hello friends,
i am able to do applet chain but i could not pass a sokcet to other applet .
in first applet i checking user name and pass and after that
i am allowing user to make conversation to server but i am not able to pass socket to another applet
please help me out in this problem
bye
navik
22 years ago