Skip to Main Content
IBM Workplace Forms: Guide to Building and Integrating a Sample Workplace Forms Application
book

IBM Workplace Forms: Guide to Building and Integrating a Sample Workplace Forms Application

by Bernd Beilke, Cayce Marston, Kioko Mwosa, George Poirier, Andreas A. Richter, Deanna Drschiwiski, John Bergland, Yves Bollanga
July 2006
Intermediate to advanced content levelIntermediate to advanced
356 pages
10h 31m
English
IBM Redbooks
Content preview from IBM Workplace Forms: Guide to Building and Integrating a Sample Workplace Forms Application
268 IBM Workplace Forms: Guide to Building and Integrating a Sample Workplace Forms Application
BufferedReader in;
String result = "";
try {
// create URL, open URL connection
url = new URL(urlStrg);
urlConn = url.openConnection();
// activate input and output, no cache
urlConn.setDoInput(true);
urlConn.setDoOutput(true);
urlConn.setUseCaches(false);
// set content type
urlConn.setRequestProperty("Content-Type", contentType);
// Now sent POST mesage.
printout = new DataOutputStream(urlConn.getOutputStream());
printout.writeBytes(content);
printout.flush();
printout.close();
// Get response
String str;
in= new BufferedReader(new InputStreamReader(urlConn.getInputStream())); ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Business Solutions Microsoft® Office Access 2007 Forms, Reports, and Queries

Business Solutions Microsoft® Office Access 2007 Forms, Reports, and Queries

Paul McFedries
Human-Centric Business Process Management with WebSphere Process Server V6

Human-Centric Business Process Management with WebSphere Process Server V6

Martin Keen, Omar Bahy, Waveney Croson, Andy Garratt, Ben Karchner, Ines Lehmann, Frank Neumann, Lincoln Roach

Publisher Resources

ISBN: 0738495603Purchase book