Re: Convenience callback method

2009-12-31 Thread Matt Moriarity
You need your action class to implement IsSerializable. Also make sure
you give it a no-args constructor.

On Dec 30, 8:15 pm, bhomass  wrote:
> I am trying out the rpc structure given in the seminar. I get an error
>
> 20:42:08.171 [ERROR] [rts]
> com.jcalc.webclient.client.spreadsheet.rpc.action.GetRecords is not
> assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
> 'java.io.Serializable' nor does it have a custom field serializer
> (reached via com.jcalc.webclient.client.rpc.Action)
>
> 20:42:08.187 [ERROR] [rts] Deferred binding failed for
> 'com.jcalc.webclient.client.spreadsheet.rpc.RecordService'; expect
> subsequent failures
>
> any one else seen this type of error?

--

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.




Re: Convenience callback method

2009-12-30 Thread bhomass
I am trying out the rpc structure given in the seminar. I get an error

20:42:08.171 [ERROR] [rts]
com.jcalc.webclient.client.spreadsheet.rpc.action.GetRecords is not
assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via com.jcalc.webclient.client.rpc.Action)

20:42:08.187 [ERROR] [rts] Deferred binding failed for
'com.jcalc.webclient.client.spreadsheet.rpc.RecordService'; expect
subsequent failures

any one else seen this type of error?

--

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.




Re: Convenience callback method

2009-12-26 Thread junior web junior web
ok tanks !

2009/12/26 Sripathi Krishnan 

> I don't think they have uploaded the entire source code; only the fragments
> are available. Perhaps they will add it as part of the samples later on, not
> sure.
>
> --Sri
>
>
> 2009/12/26 bhomass 
>
>> Sri
>>
>> thanks for the pointer. the article lays out the project structure
>> with all the classes, but I don't see where you can download the code.
>> Is that intended? or do we only have the fragments on the page? in
>> which case, why the project structure?
>>
>> Bruce
>>
>> --
>>
>> 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.
>>
>>
>>
>  --
> 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.
>

--

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.




Re: Convenience callback method

2009-12-26 Thread junior web junior web
I would like to learn gwt could send me an example crud, type a personal
agenda or anything else that makes a connection with database .. etc. .. hug

--

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.




Re: Convenience callback method

2009-12-26 Thread bhomass
I think I found what I was looking for

abstract class GotDetails implements
AsyncCallback {
public void onFailure(Throwable oops) {
/* default appwide failure handling */
}
public void onSuccess(GetDetailsResponse result) {
got(result.getDetails());
}
public abstract void got(ArrayList details);
}

got() was called inside onSuccess()


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




Re: Convenience callback method

2009-12-26 Thread Sripathi Krishnan
I don't think they have uploaded the entire source code; only the fragments
are available. Perhaps they will add it as part of the samples later on, not
sure.

--Sri


2009/12/26 bhomass 

> Sri
>
> thanks for the pointer. the article lays out the project structure
> with all the classes, but I don't see where you can download the code.
> Is that intended? or do we only have the fragments on the page? in
> which case, why the project structure?
>
> Bruce
>
> --
>
> 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.
>
>
>

--

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.




Re: Convenience callback method

2009-12-25 Thread bhomass
Sri

thanks for the pointer. the article lays out the project structure
with all the classes, but I don't see where you can download the code.
Is that intended? or do we only have the fragments on the page? in
which case, why the project structure?

Bruce

--

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.




Re: Convenience callback method

2009-12-24 Thread Sripathi Krishnan
See the recently added tutorial on MVP
http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html

Specifically, see the code for the class AppController.


--Sri


2009/12/24 bhomass 

> could some one point out an avenue for finding answers to this
> question. I am sure if google is provide these design guides, they
> should have communication channels for Q/A.
>
> --
>
> 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.
>
>
>

--

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.




Re: Convenience callback method

2009-12-23 Thread bhomass
could some one point out an avenue for finding answers to this
question. I am sure if google is provide these design guides, they
should have communication channels for Q/A.

--

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.




Re: Convenience callback method

2009-12-23 Thread bhomass
could some one point out an avenue for finding answers to this
question. I am sure if google is provide these design guides, they
should have communication channels for Q/A.

--

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.