Re: Opening a File Chooser (using FileUpload Widget) from a DialogBox

2016-04-12 Thread iza
setModal(false) on the dialog box. The modal DialogBox is poorly implemented and interferes with other events on the page. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an

Opening a File Chooser (using FileUpload Widget) from a DialogBox

2016-04-12 Thread Julio Heitor Nobrega
Dear friends, i am having some problemas using the *FileUpload *widget and the *DialogBox*. If i try to open the file chooser to choose a image from the file system from FileUpload like this: new *ClickHandler*() { @Override

Re: error in opening zip file

2013-10-09 Thread shyamasree saha
] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher$WebAppContextWithReload@11afa07{/,/home/andrenishimura/Documents/workspace-sts-2.6.0.RELEASE/infoseal_trunk2/target/infoseal-0.1.0} java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open

error in opening zip file

2011-06-22 Thread André Nishimura
/infoseal_trunk2/target/infoseal-0.1.0} java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.init(ZipFile.java:127) at java.util.jar.JarFile.init(JarFile.java:135) at java.util.jar.JarFile.init(JarFile.java:99

Re: Opening a file

2010-07-21 Thread aditya sanas
I think this must be a server side issue should not be posted here. -- Aditya On Wed, Jul 21, 2010 at 11:08 AM, rajan kochhar rajan_kochhar2...@yahoo.com wrote: I am trying to read an excel file as follows: public class LMSServiceImpl extends RemoteServiceServlet implements LMSService{

Re: Opening a file

2010-07-21 Thread Eric
The server application has no way of magically accessing client files. Depending on how the web server is configured, it might not be allowed to access files on the server itself. After all, the operators of a web server might be hosting web applications from many different sources. Those

Re: Opening a file

2010-07-21 Thread cokol
hi actually, this is a question to googles appengine forum, appengine implies many restriction, such as those, you cannot access the filesystem, put the excel file into classpath and access the stream via getResourceAsStream(foo.xls) from your classloader br, On 21 Jul., 16:26, Eric

Opening a file

2010-07-20 Thread rajan kochhar
I am trying to read an excel file as follows: public class LMSServiceImpl extends RemoteServiceServlet implements LMSService{ public String getExcel(String path) { String r=null; try { File file = new File(D:/q.xls);