I'm using ad network in my (Lwuit) J2ME Application, but I'm having some problems, I tried to put the HTTP call of the ad in an html component but I got No body tag was found
.
So I tried to get the response as string from the HTTP call then put it in the html component but it takes long time to open the screen which contains the ad and I have to handle the on click event.
How can I integrate my ad network in J2ME application, or is there any other component which can hold the ad?
HttpRequestHandler handler=new HttpRequestHandler();
HTMLComponent htmlC = new HTMLComponent(handler);
htmlC.setPage("http://ads.mp.mydas.mobi/getAd?apid=357&auid=testingauid&uip=66.209.31.31&ua=testing&mode=test");