Hi Mirko,
Please see replies to your questions inlined below.
QUESTION: Is it possible to define a file for 'unknwon' useragents?
It is possible for the GWT compiler to generate another permutation of your
application for additional user agents, but they would have to be known. You
can do this via a property provider. But first, I'm wondering which browsers
your clients are using such that the user agent couldn't be resolved.
> 2) Sometimes, even if the strongName is found, the loading of the file
> sometimes stopped. We fixed this by changing the generated function
> from
>
> function maybeInjectFrame(){
> if (!scriptInjected && $doc.body) {
> scriptInjected = true;
> var iframe = $doc.createElement('iframe');
> iframe.src = "javascript:''";
> iframe.id = 'com.aod.GUI';
> iframe.style.cssText = 'position:absolute;width:0;height:
> 0;border:none';
> $doc.body.appendChild(iframe);
> iframe.src = base + strongName;
> }
> }
>
> and added an
>
> $doc.location.href += '#';
>
> after the
>
> iframe.src = base + strongName;
>
> line.
>
> QUESTION: Is this a known problem?
This is the first time I've heard of this problem. I think this could be
related to the browser that your clients are using. I'm wondering if it's in
the list of GWT supported browsers.
Cheers,
-Sumit Chandel
>
>
> Any ideas what happens here?
>
> Thanks for all responses
>
> Mirko
>
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---