Chapter 12: Problem 6
Lines \(29-38\) of class TipTestMIDIet specify the servlet URL and the Welcomeserv1et URL. This approach can be problematic if a network administrator changes either URL. In practice, we would like the application descriptor file to contain the servlet URL and the MIDP-device user to specify the WelcomeServlet URL with the MIDP-device keypad. a) Encode the servlet URL - http: / / 10calhost : 8080/advjhtp1/-in the TipTestMIDIet application descriptor file by typing Servlet-URL : http: / / localhost : 8080 /advjhtp1/ at the end of TipTestMIDlet's . jad file. In TipTestMIDlet, use method get AppProperty of class MIDlet to return the servlet URL. (Method getAppProperty takes a property-tag string-e.g., "Servlet-URL"-as an argument and returns the string associated with that property.) b) Enable the user to specify the we1comeservlet URL. Modify the class TipTest- MIDIet constructor to create mainscreen (line 51 ) as a TextBox -a Screen subclass that enables the user to input text. A rext Box constructor takes four arguments: 1) a string that represents the TextBox's title; 2 ) a string that represents the TextBox's initial contents; 3 ) an int that represents the maximum number of characters allowed in the TextBox; 4 ) an input constraint int that specifies the required input format-e.g., if you want the user to enter a phone number, the constraint is TextField .PHONENUMBER. We want the user to enter a URL, so the constraint is TextField. URL. Use method getstring of class TextBox to return the TextBox's contents (user input) to store the We1comeServlet URL when the user presses the Select soft button.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.