GWT RPC

2011-11-14 Thread learning coding
Hi i am very new to programming, So Plz Help with the code. I have a code which is running fine when i am creating with java project in eclipse.But the same code is not running with gwt web application. void init() { SessionFactory sessionFactory =SessionFactoryImpl.newInstance(); Map parameter =

Re: GWT RPC

2011-11-15 Thread learning coding
. to write the proper code On Nov 14, 8:43 pm, learning coding wrote: > Hi i am very new to programming, So Plz Help with the code. > I have a code which is running fine when i am creating with java > project in eclipse.But the same code is not running with gwt web > application.

No source code is available

2011-11-15 Thread learning coding
Hi all I am getting many error like this when i tried to run my RPC project "No source is available for type org.gwtcmis.model.restatom.AtomEntry; did you forget to inherit a required module?" How to solve it?? Thanks in Advance -- You received this message because you are subscribed to the G

URL Not FOUND

2011-11-16 Thread learning coding
Hi i am trying to learn gwt. i have created a rpc program with the help of the tutorial. But When I run the web application i cant found the URL to run see the output. Plz Help Thanks In Advance. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Re: URL Not FOUND

2011-11-16 Thread learning coding
ust write downhttp://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997 > > change index with your html file > > On Wed, Nov 16, 2011 at 4:30 PM, learning coding < > > > > > > learning.codin...@gmail.com> wrote: > > Hi > > i am trying to learn gwt. i hav

Error :No source available ..

2011-11-16 Thread learning coding
Hi i have added some external jar file in web application When i compile it its show me eror related to all the jar file which i am using in application error Line 12: No source code is available for type ...; did you forget to inherit a required module? how to rectify it.? t

No source code is available

2011-11-17 Thread learning coding
Hi.. I am usning some external jar files on the server side of web application. when i run the application it gives an error for all the external jar files which i used on the server side. [ERROR]No source code is available for type ... did you forget to inherit a required module? how to solve

Re: No source code is available

2011-11-17 Thread learning coding
Gardella wrote: > Seehttp://groups.google.com/group/google-web-toolkit/browse_thread/threa... > > 2011/11/17 learning coding > > > > > Hi.. > > > I am usning some external jar files on the server side of web > > application. > > when i run the applicati

Unhandled Loop Exception

2011-12-14 Thread learning coding
Im getting an exception ,I am trying to create web application project using the GWT plugin. I have created a composite (name: Browser).After that i am trying to add browser composit in class (name : Home_Page) using "Choose Component" option. When I add, it gives me an error on design view "Excep

Expand and reduce the TreeItem , on the selection of Other TreeItem in GWT

2012-01-16 Thread learning coding
hi i am learning GWT I have tree Widget.TreeItems are added at runtime. example: 1.A 2.B when i click on A It looks like 1.A 1.ab 2.cd 2.B When I click on B It looks like 1.A 1.ab 2.ad 2.B. 1.bz 2.by I want is like, when

Basic File upload in GWT.

2012-02-14 Thread learning coding
Hi all, I am new to GWT , I am writing RPC code to transfer file from client to server. I have a client side like this. But i dont understand what i have to call from service class. i dont know what should i write in interface class and asyncronous class. Plz some one Help. . public class Fil

Re: Basic File upload in GWT.

2012-02-14 Thread learning coding
utton("OK"); > okBtn.addClickHandler(new ClickHandler() { >public void onClick(ClickEvent event) { >form.submit(); >} > }); > > On Feb 14, 5:23 am, learning coding > wrote: > > Hi all, > > > > I am new to GWT , > > I am writin

Uploading a file >1MB

2012-03-07 Thread learning coding
Hi all , I have to make webapplication using java, I have to upload a file which is bigger then 1MB . Actually i need the contentStream of the file and the value of the textBox which is on the FormPanel ,on the myProject.server side . The file can be of .txt and .doc type. Somebody suggested me

Re: Uploading a file >1MB

2012-03-08 Thread learning coding
Mar 7, 2012 at 4:01 PM, learning coding < > learning.codin...@gmail.com> wrote: > >> Hi all , >> >> I have to make webapplication using java, >> I have to upload a file which is bigger then 1MB . >> Actually i need the contentStream of the file and the val

URL fetch request size in googleaapengine

2012-03-12 Thread learning coding
I am doing a web application project using GWT in Eclipse. I have a file on the client side which is to send on the project.server and from server to external Repository. File --> Client-->Server-->Repository Iam Using default SDk - (appengine-java-sdk-1.6.3.1- 1.6.3) GWT-2.4.0 according

Re: URL fetch request size in googleaapengine

2012-03-14 Thread learning coding
Hi Joe, There is nothing related to ASP in my code. I doing in Java. And 3.8Mb is Max limit to To POST from server to repositary If your file size 3.81Mb is gives you the same error. *Cannot access **http://URL* *: The request to API call urlfetch.Fetch() was too large. Can som

finish the RPC call befor the execution of other methods or code?

2012-03-19 Thread learning coding
HI all I am doing web application Project in GWT. I am using RPC, which is working fine. I have 4 packeages 1. .client 2. .client.GUI 3. .client.control 4. .shared 5. .server >From .gui.loginpage On onClickmethod of a button I make a object of Login Class which is in client.cont

Re: finish the RPC call befor the execution of other methods or code?

2012-03-19 Thread learning coding
e two events (one event results in execution of > the async method and the second one will be fired when the async request > has been finished). > > > -- J. > > > > Am Montag, 19. März 2012 16:30:58 UTC+1 schrieb learning coding: > >> HI all >> >> I

Re: GWT FileUpload - Servlet options and handling response

2012-03-21 Thread learning coding
Hi Ashish. Even i wan t to upload file on server and send back to client. I found the follwing link which is working fine. http://stackoverflow.com/a/606/780393 Regards On Tue, Mar 20, 2012 at 4:39 PM, kim young ill wrote: > > > On Fri, Mar 16, 2012 at 10:27 PM, Ashish wrote: > >> I am ne

How to send hashmap with a file using Servlet in GWT

2012-06-06 Thread learning coding
I want to know or some code sample which will help me to send the file and the hashmap to the server. To upload a file to GWt server i use formpanel and a HttpServlet. this is working fine. i have a hashmap private static Map> docClass = new HashMap>(); which holds the property of documen

Re: How to send hashmap with a file using Servlet in GWT

2012-06-07 Thread learning coding
Hi, thanks for you reply. Do you think its agood practice to mix JSON with AJAX. I made my AJAX front End in the JAVA programming Language. and also my back end is also Java. On Jun 6, 9:23 pm, Thad wrote: > On Wednesday, June 6, 2012 9:47:32 AM UTC-4, learning coding wrote: > > &g

Re: How to send hashmap with a file using Servlet in GWT

2012-06-07 Thread learning coding
I know how to use RPC in GWT, but i have file and the hashmap has a property of that file. this file with the property is send to server with and after that to external repository. for sending the file i created servlet. but dont know how to pass the hashmap at the same time to the server. On

getting the value of Listbox on serverSide using Servlet.

2012-06-11 Thread learning coding
I am using GWT 3 Listbox are Add in container (verticalPanel) . container is added to formPanel. These List box has more then one value. On the server side i Have this code. ServletFileUpload upload = new ServletFileUpload(); FileItemIterator iterator = upload.getItemIterator(request)

formpanel.submit does not submit the file on GWT server

2012-08-22 Thread learning coding
i want to send a file from client to server. My code: Client side: private FormPanel getFormPanel() { if (formPanel == null) { formPanel = new FormPanel(); formPanel.setMethod(FormPanel.METHOD_POST); formPanel.setEncoding(FormPanel.ENCODING_MULTIPART); formPanel.se

Re: formpanel.submit does not submit the file on GWT server

2012-08-23 Thread learning coding
ponent to the form. > > 2012/8/22 learning coding > >> i want to send a file from client to server. >> >> My code: Client side: >> >> private FormPanel getFormPanel() { >> if (formPanel == null) { >> formPanel = new F