Re: Callin an URL from my application

2009-07-19 Thread Donald W. Long
Hi, I had a similar issue and this is how I was shown to do it. public native void gotoURLscript(String url) /*-{ open(url); }-*/; Usage: public void gotoURL(String url) { gotoURLscript(URL.encode(url)); } This

Re: Callin an URL from my application

2009-07-19 Thread Jeff Chimene
On 07/18/2009 09:54 AM, samuel wrote: > > Hi Group, > > I have a requirement where I am making use of an URL for sending > mails. Some thing like this > > http://www..com/messageapi.asp?username=&password=&destination=,,&message=Hi Hi Abhiram, Would it be possible to redesign the interface

Callin an URL from my application

2009-07-18 Thread samuel
Hi Group, I have a requirement where I am making use of an URL for sending mails. Some thing like this http://www..com/messageapi.asp?username=&password=&destination=,,&message=Hi I am making a list of all the people A1, A2, A3... to whom the "Hi" message needs to be sent. Can someone tell

Callin an URL from my application

2009-07-18 Thread abhiram
Hi Group, I have a requirement where I need to call an URL for sending emails to some recipients. I will use a link something similar to this http://www..com/messageapi.asp?username=&password=&sender=&recipient=&message=Hi. I have populated a list containing the recipients R1, R2, R3 and I ne