• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

please help,very urgent..applet-servlet communication..

 
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all,
i am trying to pass a vector from a servlet to an applet,following is the code for both of them,the problem is that when i run the applet the vector which supposedly should receive the value from the servlet's vector,shows a value of zero,is the servlet isnt passing any vector to the applet afterall..
SERVLET PART:
public void senddata(HttpServletResponse response) throws IOException {
ObjectOutputStream outputToApplet = null;
try {
outputToApplet = new ObjectOutputStream(response.getOutputStream());
outputToApplet.writeObject(vec);
outputToApplet.flush();
outputToApplet.close();
}
catch(Exception e) {
System.out.println("MyServlet: senddata() "+e.toString());
}
}
HERE "vec" is the vector which i am trying to pass to the applet,vec has been given some value in the while loop of the resultset.
APPLET PART:
public Vector getdatafromServlet() {
ObjectInputStream inputFromServlet = null;
try {
String servletLocation ="http://localhost:8080/servlet/myserv";
URL servletURL = new URL(servletLocation);
URLConnection servletConnection = servletURL.openConnection();
servletConnection.setDoInput(true);
servletConnection.setDoOutput(true);
servletConnection.setUseCaches(false);
servletConnection.setDefaultUseCaches(false);
servletConnection.setRequestProperty("Content-Type","application/octet-stream");
inputFromServlet = new ObjectInputStream(servletConnection.getInputStream());
myvec = (Vector)inputFromServlet.readObject();
inputFromServlet.close();
}
catch(ClassNotFoundException e) {}
catch(Exception e){}
finally {
return myvec;
}
}
//this is the function in which i call getdatafromServlet()

void draw(Graphics g){
g.setColor(Color.black);
g.fillRect(0,v3,v2,1000);
g.setColor(Color.green);
g.drawRect(500,400,100,100);

myvec1 = getdatafromServlet();
System.out.println(myvec1.size());//shows a value of zero
Enumeration venum = myvec1.elements();
while(venum.hasMoreElements())
{System.out.println(myvec1);}

g.setColor(Color.blue);
g.setFont(new Font("TimesRoman",Font.BOLD,25));
g.drawString(msg,v4,v5);

}

please please help me..its very urgent
thanks a million
karan
 
karan, chopra
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all,
i checked my above code and found out that the connection is somehow not being established btw the applet and the servlet.I tried to print out a statement after the following line in the applet code but the line didnt print and this is how i came to know that the connection is not established.the line was
inputFromServlet = new ObjectInputStream(servletConnection.getInputStream());
what do i do now..please tell..
karan
 
Without subsidies, chem-ag food costs four times more than organic. Or this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic