Using GWT on a server controlled by a content management system

2009-11-12 Thread JavaMan
Hey everyone, I am the webmaster of a website that uses the content management system: Simple Updates. The security rules of the website are rather stringent. I cannot upload folder structures to the site, only files. I figured out how to get my GWT application to run all from a single folder on my

Status code of 0 on Linux and Windows

2009-11-08 Thread JavaMan
Hi everyone, I am testing out the HTTP system in GWT to get some html from a site. Here is my code. I simply cut out some stuff from the code that GWT generated. package com.vance.test.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.*; import com.google.gw

Re: Converting HTML text from server to Element objects

2009-10-09 Thread JavaMan
Oh, I didn't know that the XMLParser would understand HTML. If it does, then I will try that! Thanks On Oct 9, 3:31 pm, Mohamed Mansour wrote: > Couldn't you just XMLParser.parse(htmlText); >  -Mohamed > > On Fri, Oct 9, 2009 at 12:22 PM, JavaMan wrote: > > > Hel

Converting HTML text from server to Element objects

2009-10-09 Thread JavaMan
Hello, My project communicates with a server that returns HTML text through HTTP requests . I know that the GWT can parse XML or JSON code, but is there a built-in way to turn HTML text into an Element? I know how to take the Element add wrap or convert it so I can add it as a Widget, but how do I

HTML table border problem

2009-09-05 Thread JavaMan
Hello all, I am having a problem with borders in html and GWT The code is in my html file: leftContiner and rightContainer are populated by GWT and each contain VerticalPanels The problem is that there is a gap between the top and middle row and middle and bottom row. T