Because appengine have too many limitions, and have a file size/quantity limit.

You have a app with mosaic on appengine running?

How to configure it, i import all jar that need and put the imports on
xml, but it compile and when i start the app, occur this error:

[ERROR] Errors in
'file:/D:/workspace/teste_mosaic/src/com/prsolucoes/client/Teste_mosaic.java'
[ERROR] Line 37: No source code is available for type
org.gwt.mosaic.ui.client.WindowPanel; did you forget to inherit a
required module?
[ERROR] Line 41: No source code is available for type
org.gwt.mosaic.ui.client.InfoPanel; did you forget to inherit a
required module?



The steps:

1 - create a new web project - google
2 - import external jars:
     - gwt-beans-binding-0.2.4.jar
     - gwt-dnd-2.6.4.jar
     - gwt-incubator-march-02-2009.jar
     - gwtx-1.5.2.jar, gwt-mosaic-0.2.1.jar
3 - add the inherits to the xml:
    INCUBATOR
    - <inherits name='com.google.gwt.widgetideas.WidgetIdeas' />
    - <inherits name='com.google.gwt.libideas.LibIdeas' />

    DnD
    - <inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>

   GTX
   - <inherits name="com.googlecode.gwtx.Java">

   MOSAIC
   - <inherits name='org.gwt.mosaic.Mosaic' />
   - <inherits name='org.gwt.mosaic.theme.standard.Standard' />

Put the sample code in website:

     private void createWindowPanel() {
                final WindowPanel w = new WindowPanel("My Frame");

                w.addWindowCloseListener(new WindowCloseListener() {
                        public void onWindowClosed() {
                                InfoPanel.show(w.getCaption(), 
"onWindowClosed()");
                        }

                        public String onWindowClosing() {
                                return "Are you sure you want to close this 
WindowPanel?";
                        }
                });

                w.setWidget(new Label("bonbon"));

                w.pack();
                w.center();
        }

        /**
         * This is the entry point method.
         */
        public void onModuleLoad() {
                RootPanel.get().add(
                                new Button("Create WindowPanel", new 
ClickHandler() {
                                        public void onClick(ClickEvent event) {
                                                createWindowPanel();
                                        }
                                }));

        }



2009/7/8 Alejandro D. Garin <[email protected]>:
> yes! why not?
>
> On Tue, Jul 7, 2009 at 6:42 PM, Paulo Coutinho <[email protected]> wrote:
>>
>> Hi,
>>
>> Is possible to use gwt-mosaic on appengine?
>>
>> link: http://code.google.com/p/gwt-mosaic/
>>
>> --
>> Atenciosamente,
>> Paulo Coutinho.
>> Blog: www.prsolucoes.com/blog
>> Site: www.prsolucoes.com
>> Msn:  [email protected]
>>
>>
>
>
> >
>



-- 
Atenciosamente,
Paulo Coutinho.
Blog: www.prsolucoes.com/blog
Site: www.prsolucoes.com
Msn:  [email protected]

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to