Re: How to send an Email with GWT to a specific Address?

2011-03-13 Thread wingdings
To send an email message, an app prepares a MimeMessage object, then sends 
it with the static method send() on the Transport class. The message is 
created using a JavaMail Session object. The Session and the Transport work 
with the App Engine Mail service without any additional configuration.

import java.util.Properties;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

// ...
Properties props = new Properties();
Session session = Session.getDefaultInstance(props, null);

String msgBody = "...";

try {
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress("ad...@example.com", "Example.com 
Admin"));
msg.addRecipient(Message.RecipientType.TO,
 new InternetAddress("u...@example.com", "Mr. 
User"));
msg.setSubject("Your Example.com account has been activated");
msg.setText(msgBody);
Transport.send(msg);

} catch (AddressException e) {
// ...
} catch (MessagingException e) {
// ...
}


watch out http://code.google.com/appengine/docs/java/mail/usingjavamail.html

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



add click handler to horizontalPanel in gwt

2011-02-08 Thread wingdings
how do i add click handlers to horizontalPanel ? it worked with the use of 
addDomHandler() but i had to downgrade GWT version for some other reasons , 
and GWT 2.0.4 doesnt support it
i used to do it like this

horizontalPanel.getWidget(1).addDomHandler(someClickHandler,ClickEvent.getType());
//or
horizontalPanel.addDomHandler(someClickHandler, ClickEvent.getType());

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



NoClassDefFoundError

2010-10-05 Thread wingdings
im getting this random error today i dont know why it was working
better yesterday

javax.servlet.ServletContext log: Exception while dispatching incoming
RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service method
'public abstract java.lang.Boolean
com.dushyant.PO.client.PoService.SavePOrder(java.util.ArrayList)'
threw an unexpected exception: java.lang.NoClassDefFoundError: Could
not initialize class com.dushyant.PO.server.PMF
at
com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:
378)
at
com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:
581)
at
com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:
188)
at
com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:
224)
at
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:
62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:
511)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1166)
at
com.google.apphosting.utils.servlet.ParseBlobUploadFilter.doFilter(ParseBlobUploadFilter.java:
97)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionFilter.java:
35)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:
43)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
388)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
216)
.
.

-- 
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-tool...@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.



is there any proper way to create shortcut(s) for the current window object in gwt ?

2010-10-04 Thread wingdings
just for like CTRL+1 or CTRL+2 .. how do i assigns shortcuts ?

something like this i did but it aint executing , also am i doing it
right ?
mayday mayday !

public class quotation implements KeyboardListener
{

public static Widget getSomeWidget()
{

return new Widget;
}
@Override
       public void onKeyDown(Widget sender, char keyCode, int
modifiers) {
               // TODO Auto-generated method stub

       }

      �...@override
       public void onKeyPress(Widget sender, char keyCode, int
modifiers) {
               if(KeyboardListener.KEY_CTRL == keyCode)
               {

               }

       }

      �...@override
       public void onKeyUp(Widget sender, char keyCode, int modifiers)
{
               // TODO Auto-generated method stub

       }
}

-- 
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-tool...@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.