• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

html code to webpage

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have two laptops that are communicating over a wireless ad-hoc connection (I'm not using a webserver). After my server computer transfers an html file to the client computer, the client computer just prints out the code that was transferred. How do I get the client to display the html file as an actual webpage instead of a lot of messy html code?
 
Sheriff
Posts: 7023
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is the client a J2ME-based client?
 
Ashley Swinson
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, the server and client are J2ME based.
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As far as I know, there is no built-in library in the J2ME APIs for rendering HTML. For example, ReqWireless WebViewer uses a servlet which first fetches web pages, translates them into a "simplified" HTML document, and then delivers the simplified HTML to the device where the WebViewer client code renders the HTML "manually". I'm afraid you'll have to do something similar (write code for rendering HTML yourself).

(Obviously I'll be glad to hear about any existing libraries for doing this!)
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic