Re: GWT + Palm WebOS

2009-11-11 Thread kilkenny

Hi Olivier

The link points to the show notes. You have to donwload the mp3 file.
It's kind a hidden behind the 'POD' icon on the top left. Here is the
direct link:
http://media.libsyn.com/media/dickwall/JavaPosse282.mp3

Hope that helps!
Adrian

On 11 Nov., 12:20, Olivier Gérardin ogerar...@yahoo.com wrote:
 Are you sure about your link? I can't find the interview..

 On Nov 11, 8:44 am, kilkenny a.bue...@gmail.com wrote:

  In an interview about his new job and what he's working on Dion Almaer
  (Palm Developer Relations) did talk about the developer program for
  webOS. He also mentioned the possibility to use GWT. So Palm seems to
  think about this already...

  You can find the interview right 
  here:http://javaposse.com/index.php?post_id=536012

  Regards, Adrian
  --http://traceurl.com

  On 4 Nov., 18:43, cal calsc...@gmail.com wrote:

   Any suggestions on achieving this.
   I would love to be able to develop WebOS apps in Java using GWT and I
   think tons of other people would too.

   I suppose some particular points of interest would be:
   -How to integrate with the WebOS eclipse plugin? I was thinking you
   would need a WebOS project and a GWT project.
   -How do you get Java wrappers for Palm's Mojo framework.
   -What kind of GWT compiler settings you would want to work best with
   WebOS.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: GWT + Palm WebOS

2009-11-10 Thread kilkenny

In an interview about his new job and what he's working on Dion Almaer
(Palm Developer Relations) did talk about the developer program for
webOS. He also mentioned the possibility to use GWT. So Palm seems to
think about this already...

You can find the interview right here:
http://javaposse.com/index.php?post_id=536012

Regards, Adrian
--
http://traceurl.com

On 4 Nov., 18:43, cal calsc...@gmail.com wrote:
 Any suggestions on achieving this.
 I would love to be able to develop WebOS apps in Java using GWT and I
 think tons of other people would too.

 I suppose some particular points of interest would be:
 -How to integrate with the WebOS eclipse plugin? I was thinking you
 would need a WebOS project and a GWT project.
 -How do you get Java wrappers for Palm's Mojo framework.
 -What kind of GWT compiler settings you would want to work best with
 WebOS.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: applet class not found

2009-04-07 Thread kilkenny

Hi Stephan

The codebase parameter you construct in the getAppletHTML() method
does not look right. You create this  codebase='../applet/
MosaicUploader.jar'  instead of  codebase='../applet/'
archive='MosaicUploader.jar' .

For an even easier applet integration check out the GwtAI project:
http://code.google.com/p/gwtai/

Regards, Adrian

On 6 Apr., 16:39, simon.void simon.v...@googlemail.com wrote:
 hi,

 when i use a html-page with this applet-tag:

 APPLET CODE = applet.MosaicUploader ARCHIVE = ../applet/
 MosaicUploader.jar WIDTH = 50 HEIGHT = 50
   Here is the MosaicUploader Applet
 /APPLET

 the applet is displayed. But if i use the same html in a widget

 public class MosaicUploaderAppletWidget
 extends Composite
 {
   public MosaicUploaderAppletWidget()
   {
     if( GWT.isScript() ) {
       initWidget( getAppletHTML() );
     }else{
       initWidget( new Label( MosaicUploaderMock for embeded
 mode ) );
     }
   }

   private HTML getAppletHTML()
   {
     StringBuilder sb = new StringBuilder();
     sb.append( applet code=\applet.MosaicUploader\ codebase=\../
 applet/MosaicUploader.jar\ width=50 height=50 );
     sb.append( Here is the MosaicUploader Applet );
     sb.append( /applet );

     return new HTML( sb.toString() );
   }

 }

 the java-console of firefox shows this class not found exception:

 Load: class applet.MosaicUploader not found
 java.lang.ClassNotFoundException: applet.MosaicUploader
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run
 (Unknown Source)
         at java.lang.Thread.run(Unknown Source)
 Caused by: java.io.IOException: open HTTP connection failed:http://
 localhost:8080/MosaicUpload/applet/MosaicUploader.jar/applet/
 MosaicUploader.class
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 7 more
 Ausnahme: java.lang.ClassNotFoundException: applet.MosaicUploader

 Using the urlhttp://localhost:8080/MosaicUpload/applet/MosaicUploader.jar
 ,i can download MosaicUploader.jar which contains a
 applet.MosaicUploader.class (in subfolder applet).

 The MosaicUploaderAppletWidget is heavily embeded in Panel-layes. Is
 that the problem?

 Regards,
 Stephan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Gwtai: Problem to include the Gwtai jars in my Project

2009-01-05 Thread kilkenny

Hi Leif

Sorry for the late response...

Do you still have problems? If so, please post to the newly-made GwtAI-
Google-Group = http://groups.google.com/group/gwtai

Regards, Adrian

On 7 Nov. 2008, 17:13, teremin l.westerm...@pearlpool.de wrote:
 Hello everyone, hope someone can help me here.

 i try to include theGWTAI-Project in my GWT Project (http://
 code.google.com/p/gwtai/).
 But at deploying the application  i get the errormessage:

 Loading inherited module
 'com.google.gwt.gwtai.applet.AppletIntegration'
 Unable to find 'com/google/gwt/gwtai/applet/AppletIntegration.gwt.xml'
 on your classpath; could be a typo, or maybe you forgot to include a
 classpath entry for source?

 thegwtai-client.jar andgwtai-core.jar are added to the Classpath and
 i can see the AppletIntegration.gwt.xml-file in my Eclipse-Project
 Tree

 I also applied
 inherits name='com.google.gwt.gwtai.applet.AppletIntegration' / to
 my application.xml

 has anyone an idea what could be wrong?

 thanks in advance and kind regards,
 Leif
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: GWT and applets

2009-01-05 Thread kilkenny

Hi Dave

The previous poster is right, you have to move the applet class
outside of the client package.

Concerning the hosted mode problem: the GWT Shell can not handle
embedded things like Flash or Applets. To test your application you
have to compile the code and run it in a browser.

To easy integration of your applet you could have a look at the GwtAI
project = http://code.google.com/p/gwtai/

Regards, Adrian
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: How to handel canel button in signed applet certificate

2008-12-31 Thread kilkenny

Hi

If the user presses the 'Cancel' button, she/he declines your
certificate. That means the user explicitly prohibits your applet to
run. As far as I know there is nothing you can do about it, that is
the way Applet security works.

Regards, Adrian

--
http://code.google.com/p/gwtai/

On 30 Dez., 08:49, ship shilpi10ve...@gmail.com wrote:
 hi to all,

 In my gwt application, i hav made a signed applet, when i run this
 applet a digital signature for this applet pop ups on which two
 buttons display one is run and second is canel. When i click on
 run applet is started but when i click on cancel button nothing is
 happened and i could not run this applet again until i close browser
 forcefully.

 Pl tell me how could i handel cancel button of warning security
 (digital signature) pop up i. e. when i click on cancel then again i
 run this applet by starting it again without closing browser.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Tree Graph using GWT

2008-12-17 Thread kilkenny

Hi Paddy

The gwt-google-apis project (http://code.google.com/p/gwt-google-
apis/) recently released a GWT-wrapper for the Google Visualization
API (http://code.google.com/intl/de-CH/apis/visualization/). They may
have something useful, for example the organizational chart..?

Regards, Adrian
--
http://traceurl.com

On 16 Dez., 18:11, Paddy patrickfmonag...@gmail.com wrote:
 Hi Folks,

 I'm trying to create a treeGraph in GWT to represent a hierarchical
 tree structure,
 I see alot of graphs and charts out there such a gChart but I see no
 tree type graphs there.

 Anyone any ideas?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: SlideShow with GWT

2008-12-16 Thread kilkenny

Hi Gabriel

A simple slide show like widget could be built using the DeckPanel
widget. Set 'AnimationEnabled' to true and there you go. Although to
be honest, this is probably not sophisticated enough for your needs...

Regards, Adrian

--
http://code.google.com/p/gwtai/

On 16 Dez., 06:08, Gabriel Gutierrez gutierrez...@gmail.com wrote:
 hi guys, i need to do an slide show inside my app. is there any pre-
 existing gadget or component that i can use instead of building from
 scratch??

 thanks,
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: How to run a signed java applet in hosted mode of gwt??

2008-12-02 Thread kilkenny

The previous poster is right, the shell can not handle embedded things
like Flash or Applets. There are some restrictions in the SWT
component used to run the browser inside of the shell. A bug report
has been associated with this issue, you may want to keep an eye on it
for future updates:

http://code.google.com/p/google-web-toolkit/issues/detail?id=283

Regards, Adrian
--
http://code.google.com/p/gwtai/

On 2 Dez., 11:22, ship [EMAIL PROTECTED] wrote:
 hi,

 In my application, i want to run a signed java applet in hosted mode,
 this signed java applet is running succesfully in browser mode but
 when i run it on hosted mode it gives errors.
 Currently i am using gwt-1.4.62.

 Pl try to resolve this problem
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: Integrating draw2d with Gwt

2008-12-02 Thread kilkenny

There are many JavaScript libraries out there that have been wrapped
into third party GWT libraries. Alas the draw2d is not one of them, as
far as I know... Although you can do this yourself using GWT's
JavaScript Native Interface functionality. Have a look at the
documentation for more information:

http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideInterop

Regards, Adrian
--
http://traceurl.com

On 2 Dez., 08:25, Sridhar Gande [EMAIL PROTECTED] wrote:
 Hello

 Iam new to Gwt and draw2d Apis.
 I want to integrate draw2d api which gives us 2d graphic  widgets and
 enables us to  build our own applications. It was developed on
 javascript.  My Question  is how can I integrate Gwt with draw2d so
 that I can use all the features of draw2d in my Gwt application.

 Please reply me as soon as possible, as I struck at this point.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: how to implement signed applet upload images to server side

2008-11-24 Thread kilkenny

Hi Avd

Just use Ant (or your favorite build tool) to sign the jars, that is
probably the easiest way = http://ant.apache.org/manual/CoreTasks/signjar.html

To easy integration of your applet you could have a look at the GwtAI
project = http://code.google.com/p/gwtai/

From where do you want to upload the image, from the applet of from
the web-application? From the applet just transfer the file like you
would in a standalone application. From the web-application you can
use GWT's FileUpload widget, see =
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/FileUpload.html

Hope that helps.
Adrian

On 22 Nov., 09:02, avd [EMAIL PROTECTED] wrote:
 hello sir,
 i made a signed applet for access the client side directories.but my
 problem is that how can i implement signed applet in gwt and another
 problem is how can i upload images from client side to server.

 please help me.

 with regards
 avd
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: Theming a custom widget

2008-11-13 Thread kilkenny

Hi Mansoor

I don't quite understand what you are up to. What components does your
custom-widget consist of? If you use things like buttons or
checkboxes, they pick up the style from the standard theme. If you
have panels and tables in your custom-widget you have to define the
CSS rules yourself. You can link your own CSS file with a stylesheet
tag in the module xml file.

For more information, see:
http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideStyleSheets

Regards, Adrian
--
http://traceurl.com

On 13 Nov., 05:01, Riyaz Mansoor [EMAIL PROTECTED] wrote:
 I have got 3 stylesheets for my widget, standard, dark  chrome.

 When the Standard theme is loaded I want my standard theme applied to
 my custom widget.  My widget applies the custom-widget style - but
 how do I pick which style sheet to link ?

 What am I missing here?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: GWT Theme Generator - An online tool to generate themes for any color

2008-10-09 Thread kilkenny

Hey that is a pretty cool idea! Now I don't have to do all the corner
images and stuff by hand anymore.

Thanx a lot for sharing.

Regards, Adrian
--
http://traceurl.com

On 9 Okt., 08:05, krishna [EMAIL PROTECTED] wrote:
 Hi Everyone,

 We have developed an online tool to generate a gwt theme for a user-
 specified color. The generated theme is similar to the gwt standard
 theme.

 'GWT Theme Generator' is accessible athttp://works.sen-sei.in/gtg/

 Please try it out and let us know your feedback.

 Best Regards,
 Krishnakumar Pooloth
 Sen-Sei Technologies
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: Browser plugins in the hosted browser?

2008-09-05 Thread kilkenny

Hi Mark

As far as I know, the GWT Shell can not handle embedded stuff like
Flash or Applets. There is some restriction in the SWT component GWT
uses to embed the browser inside of the Shell application. To run your
application you have to compile the code and run it in a browser...

Regards, Adrian
--
http://traceurl.com

On 5 Sep., 00:02, Mark  Renouf [EMAIL PROTECTED] wrote:
 Hi. We've got a GWT component that wraps some Flash with a GWT widget
 and provides scripting hooks to it in our API.

 Interestingly, the flash detection is finding the Flash Player plugin,
 but when I try to actually use it I get some errors:

 com.google.gwt.core.client.JavaScriptException: (String): Error
 calling method on NPObject! [plugin exception: Error in Actionscript.
 Use a try/catch block to find error.].
         at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
 443)
         at
 com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:
 235)
         at
 com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:
 107)

 Should this work? If not, why is flash being detected at all?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: Server / Client Communication Flipped

2008-09-04 Thread kilkenny

Hi Eggsy

Check out these links:
http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ
http://docs.codehaus.org/display/JETTY/GWT

Hope that helps.
Adrian
--
http://traceurl.com

On 3 Sep., 22:05, eggsy84 [EMAIL PROTECTED] wrote:
 Hi all

 I'm just writing to see (may have already been discussed) if anyone
 has used GWT Client/Server communication in a way that the server
 notifies the client?

 At times when developing applications I have found myself thinking it
 would be much easier if the server could simply notify the client(s)
 of a state change?

 Typically GWT works by Async calling the server which is completely
 fine but I was wondering if this can be flipped such as new services
 like MobileMe profess to do - pushing contact to a client!

 Just wondering if anyone has done this?! How did they apporach it?

 Eggsy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---