1
vote
1answer
63 views

Why do I get null pointer exception: null when getting value from view with form url encoded?

I am coding in Java/html-scala in the Play framework. I am trying to get a value from my view using form url encoded but all I get is null pointer exception. In my controller, I do: String[] ...
0
votes
2answers
119 views

Multiple forms in one form play[2.0.4]

I am trying to do a form that has one model and 2 values that are always the same but there is one value that changes. My html form is: @helper.form(action = ...
0
votes
1answer
58 views

Forcing proper charset encoding of the filename of uploaded file in Play 2.0.4

I have annoying problem with non-latin characters in names of uploaded files. I'm using upload method pretty similar as in the Play's doc (extended by DB operations) and while running dist vrsion on ...
0
votes
0answers
59 views

Error when programmatically button click and website authentication

Im having troubles tackling this problem. Pretty much, I want my application to pro grammatically authenticate itself(which iv done successfully) then once its auntheicated itself, programmatically ...
-2
votes
2answers
201 views

Do Spring MVC controller look for ids or names?

If I have the following HTML form: <form id="myForm" action="/myFormHandler" method="post"> <input type="hidden" id="fizz-id" name="fizz" value="3" /> <input type="hidden" ...
1
vote
1answer
89 views

I need to get the path instead of selecting file name in my browse dialog box to save my file

This is my code. This will take only the filename. I want my browse dialog to select the path location to save my file. <form name="uploadFile" method="POST" enctype="multipart/form-data"> ...
0
votes
1answer
70 views

java +simple Webserver +htmlform encoding

As an assignment, I have ti implement a simple webserver in Java. My Problem is: There is a html-form that looks like this: <form method="POST" action="dummy" accept-charset="UTF-8"> <input ...
1
vote
1answer
96 views

get unchecked box

I have a form of a table with 'checkbox': out.print("<table><tr>"); String box_user = null; out.print("<td>"); box_user = "<input name = 'check' value=r" + id + " ...
0
votes
1answer
107 views

form:errors does not display error message when value is rejected

the complete code is in github: https://github.com/cuipengfei/MPJSP/tree/master/tmp in the controller, there is a method that handles the submit: @RequestMapping(value = "/home", method = ...
0
votes
1answer
238 views

multipart form generating a malformed packet

I'm attempting to include an email attachment in form submission. My backend has a tomcat server using jersey to receive RESTful calls. When I try to generate a post with this form (all the styling ...
0
votes
0answers
162 views

Form submission not working though all elements along with button is found in HtmlUnit

I am getting all form elements along with submit button but form submission is not working in HtmlUnit.There is onehidden field in the form but the value is set already. following is the html code of ...
2
votes
5answers
591 views

Two forms but only 1 jsp file

Here's what I've got going on. I have one .jsp file. However, I have two forms with multiple inputs inside those forms. What is the best way to detect that one form was submitted but not the other? ...
1
vote
3answers
878 views

jsp - execute java function through onsubmit

I have this jsp page - <%@page import="java.text.Normalizer.Form"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ...
3
votes
2answers
2k views

Use HttpClient POST to submit form with upload

I have an html form that looks something like this: <div class="field> <input id="product_name" name="product[name]" size="30" type="text"/> </div> <div class="field> ...
0
votes
1answer
2k views

JSP{ - HTML Form - Submit Action - How to send to Java class for processing

I have a JSP html based form. I want to do the post through my java code, i.e HttpURLConnection, OutputStreamWriter etc.. How do I make my form action process point towards my java class that is to ...
0
votes
3answers
393 views

html form not rendering in java servlet

I am doing a very simple tutorial to learn java servlet programming. For some reason, the browser is not rendering the submit button in the html form that I am writing while doing the tutorial in ...
-6
votes
2answers
145 views

Sending email from a form

I have one problem in the below code first: <form action="resultPage.jsp" > <br/> <br/> <br/> <h4> <label>subject</label> <input ...
0
votes
1answer
919 views

Struts - Submit <html:form> within <logic:iterate>

I have jsp page where I iterate over a collection using logic:iterate and an html:form is displayed for each item. This works but every time I submit one of these forms and the page gets reloaded, ...
1
vote
4answers
855 views

sending html form data to java application

Is there any possible way to send the html form data to java application without using php and asp stuff? I know we can do this using php and do it before but can i do it directly? I had used php in ...
3
votes
1answer
3k views

POST an array of custom objects to a Struts 2 action

How do I POST an array of custom objects to a Struts 2 action in Java? For example if I have the following Java object: public class Person { private String name; private String lastName; ...
0
votes
1answer
269 views

getting an error page, uploading a file worked last week and I have made no changes

here is my JSF/HTML page <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ...
1
vote
3answers
254 views

Domain Transfer Object for a html form with various count of fields

Has anybody dealt with a situation, that on the client side (html form) there is one type of field, that exist various times? Like: <input id="fileRef1" type="hidden"/> <input ...
1
vote
2answers
360 views

When should I use html's <form> and when spring's <form:form> in Spring MVC web app?

I am wondering is it good practice to write all forms in spring tags or can I mix spring form tags with html form tags?
0
votes
1answer
173 views

How can you print out the values of undeclared HTML form values from a Spring (3) controller action method?

If my HTML form contains two form inputs (input1 and input2), I could access them like this: @RequestMapping(value = "/foo", method = RequestMethod.POST) public String foo(HttpServletRequest request, ...
-2
votes
3answers
5k views

How to fill HTTP forms through java?

I want to fill a text field of a HTTP form through java and then want to click on the submit button through java so as to get the page source of the document returned after submitting the form. I can ...
2
votes
2answers
244 views

How do I get data from a web form?

As a pet project I want to build a program that translate from English to Hebrew. The way I want to make the translation itself is using a web site called morfix. In this site can enter an English ...