View Single Post
  #3  
Old 02-14-2011, 09:34 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
When loading html files from a URL, instead of code embedded within the script, you must specify the action field of your form. Modifying your form definition to the following should work:
Code:
<form name="the_form" method="post" action="http://localhost:8080/vizhtml_form/">
This tells the browser to submit the form data to the vizhtml webserver.

We will update the documentation to mention this.
Reply With Quote