Re: [Google Wave APIs] Re: Google Wave is Dead

2010-08-04 Thread Matias Molinas
If Wave was dead simply do not justify a note http://techcrunch.com/ Wave is a good product. If a product is bad no one remembers or mentions it. I think that this is not the case of Wave I'm interested in using Wave and making developments using their API Wave +1 :-) 2010/8/4 Daniel França : >

[Google Wave APIs] Active API and OAUTH works! :-)

2010-06-05 Thread matias molinas
Stocky code with the following modifications work for me! if (domain.equals(SANDBOX_DOMAIN)) { setupOAuth(OAUTH_KEY, OAUTH_SECRET, SANDBOX_RPC_URL); //remove from code: "google.com:" + } if (domain.equals(PREVIEW_DOMAIN)) { setupOAuth( OAUTH_KEY, OAUTH_SECRET, PREVIEW_RPC_

Re: [Google Wave APIs] WaveId question:

2010-06-03 Thread Matias Molinas
You could include the code of the constructor of your robot (for use Active API..)? Is similar to stocky example? The documentation is incomplete and I have errors with OAuth authentication :-) On Thu, Jun 3, 2010 at 11:52 AM, balderman wrote: > > Hi > I am creating waves using the Active API. >

Re: [Google Wave APIs] Re: How to create new wave using active api

2010-06-02 Thread Matias Molinas
What is correct? stocky sample: private static String SANDBOX_DOMAIN = "wavesandbox.com"; private static String PREVIEW_DOMAIN = "googlewave.com"; private static String PREVIEW_RPC_URL = "http://gmodules.com/api/rpc";; private static String SANDBOX_RPC_URL = "http://sandbox.gmodules.com/a

Re: [Google Wave APIs] Re: Integration of authentication from Gadgets, Robots and web application

2010-03-26 Thread Matias Molinas
http://code.google.com/p/step2 works perfectly On Thu, Mar 25, 2010 at 4:46 PM, Joel Dietz wrote: > get anything working? > > > d3developer.wordpress.com | twitter.com/jdietz | twitter.com/fractastical > (tech) > > > On Tue, Dec 22, 2009 at 2:18 AM, matias molinas >

[Google Wave APIs] Re: coding query-urgent

2010-03-24 Thread matias molinas
The code seems correct, maybe you should add log for debug and confirm that the configuration files are correct On 24 mar, 05:28, hetal brahmbhatt wrote: > I am now trying to make a simple google  wave robot saying hi to new > participant in wave and saying goodbye to the participant when he > le

[Google Wave APIs] Re: Resource consumption of a robot in GAE

2010-03-24 Thread matias molinas
I found the error, I was missing the robot servlet mapping to the URL / _wave/robot/profile :-( Fixed :-) On 23 mar, 10:07, Matias Molinas wrote: > Yes, I'm surprised the number of requests: 923. > Is this because the number of users with the robot in your contacts? > > On

Re: [Google Wave APIs] Log not working in robot api v2 Java

2010-03-24 Thread Matias Molinas
Try to include the following line in your logging.properties file: # Set the default logging level for all loggers to INFO .level = INFO On Wed, Mar 24, 2010 at 4:16 AM, Edgar Rodriguez wrote: > Hi, > Since I started to use the v2 of the robot API for Java, I don't get any log > information in

Re: [Google Wave APIs] Resource consumption of a robot in GAE

2010-03-23 Thread Matias Molinas
PU that has been used is distributed among all the incoming requests, it > does not mean > that your process is continually using 97% of the CPU. >   Thanks, >   -joe > On Mon, Mar 22, 2010 at 9:23 PM, matias molinas > wrote: >> >> Hi, >> Analyzing the dashboard of my r

[Google Wave APIs] Resource consumption of a robot in GAE

2010-03-22 Thread matias molinas
Hi, Analyzing the dashboard of my robot in GAE, which is not yet development completed, so I have very little traffic, I can see the following value: URI=/_wave/robot/profile Requests=923 Avg CPU (API) =308 (125)% CPU=97% Which could be why so great a consumption of resources by the rob

Re: [Google Wave APIs] problem in wave preview

2010-03-19 Thread Matias Molinas
i, Mar 19, 2010 at 10:17 AM, matias molinas > wrote: >> >> I can not see my contacts in preview wave, seems not working properly >> and I can not add participants. In wave sandbox everything works >> correctly. Is it a temporary failure? >> >> -- >> You

[Google Wave APIs] problem in wave preview

2010-03-19 Thread matias molinas
I can not see my contacts in preview wave, seems not working properly and I can not add participants. In wave sandbox everything works correctly. Is it a temporary failure? -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group

Re: [Google Wave APIs] New Wave Robots API v2 & New Wave-Based Forum

2010-03-02 Thread Matias Molinas
The improvements seem very useful. Thanks On Tue, Mar 2, 2010 at 11:46 AM, pamela (Google Employee) wrote: > We have now released the Wave Robots API v2, which we have been alluding to > in various forum posts here. This API makes it easy for developers to push > information to waves (like on cro

Re: [Google Wave APIs] Re: Embed Wave

2010-02-26 Thread Matias Molinas
, 2010 at 6:28 PM, Massimiliano wrote: > But I always need to be logged in my google wave sandbox > > 2010/2/26 matias molinas >> >> Can be useful this example >> http://wave-samples-gallery.appspot.com/about_app?app_id=75018 >> >> On 25 feb, 07:

[Google Wave APIs] Re: Embed Wave

2010-02-26 Thread matias molinas
Can be useful this example http://wave-samples-gallery.appspot.com/about_app?app_id=75018 On 25 feb, 07:17, Massimiliano wrote: > Pamela, > it's still saying me: > > You've reached a page that contains content from Google Wave. We're > currently in a preview with a limited number of users. If yo

[Google Wave APIs] OpenId-OAuth in my Wave extension

2010-02-23 Thread matias molinas
After a vacations I am again dedicated to continue developing my extension of Google Wave for project management: www.bubaproject.com Now my project uses OpenID OAuth with Google Accounts for authentication instead to use Google Friend Connect. This simplifies terribly the integration of the user

Re: [Google Wave APIs] Definition of state in Google Wave

2010-02-05 Thread Matias Molinas
; Session bean. Which means for example, if a state object count is 1, it > remains 1. > > On Fri, Feb 5, 2010 at 1:29 PM, Matias Molinas > wrote: >> >> I think not. the state is shared and their changes are visible to all >> other participants, but does not change dep

Re: [Google Wave APIs] Definition of state in Google Wave

2010-02-05 Thread Matias Molinas
ect me if I'm wrong. > > On Fri, Feb 5, 2010 at 12:58 PM, Matias Molinas > wrote: >> >> It is a persistent dictionary for gadgets, is shared by all >> participants of the wave, and has a change notification mechanism >> through callbacks >> >> 2010/2

Re: [Google Wave APIs] Definition of state in Google Wave

2010-02-05 Thread Matias Molinas
It is a persistent dictionary for gadgets, is shared by all participants of the wave, and has a change notification mechanism through callbacks 2010/2/5 kayode odeyemi : > I was thinking state means like in java serialization, but it's just not. > I'm also thinking it has to do with in-memory stor

Re: [Google Wave APIs] Drupal Oceans

2010-01-28 Thread Matias Molinas
this is a good link: http://groups.drupal.org/node/24528 2010/1/28 Dave : > Hi, > I am looking for help to integrate WAVE into a social media site for > Ocean scientists called DigitalOcean. > This is a non-profit activity to connect scientists around the health > of the oceans and am looking >

Re: [Google Wave APIs] Re: Security concerns on using waves in corporate setting?

2010-01-19 Thread Matias Molinas
ose lines, to the best of my > knowledge. (But anything is possible.) > > - pamela > > On Tue, Jan 19, 2010 at 3:56 AM, Matias Molinas > wrote: >> Hi >> >> Are Open ID and OAuth into your plans? or an hybrid protocol: >> >> http://step2.go

Re: [Google Wave APIs] Re: Security concerns on using waves in corporate setting?

2010-01-18 Thread Matias Molinas
Hi Are Open ID and OAuth into your plans? or an hybrid protocol: http://step2.googlecode.com/svn/spec/openid_oauth_extension/latest/openid_oauth_extension.html And integration with GFC? 2010/1/18 pamela (Google Employee) : > Hey Chris- > > It is not enabled by default, but you can request acc

[Google Wave APIs] Re: Synchronization of data between my gadgets and my web app

2010-01-17 Thread matias molinas
d in bubaproject web app: http://picasaweb.google.com/matias.molinas/Bubaproject#5427683280611476386 A lot of bugs to fix :-) On 14 ene, 02:26, Matias Molinas wrote: > Ok .. tomorrow I hope to upload a version with complete > synchronization flow for the todolist gadget > ... meantime

Re: [Google Wave APIs] Synchronization of data between my gadgets and my web app

2010-01-13 Thread Matias Molinas
the thorough description, Matias, it sounds like the first > of a kind. Looking forward to trying out the whole flow. > > > On Sat, Jan 9, 2010 at 2:37 PM, matias molinas > wrote: >> Hi >> This email is about the synchronization of data between my wave >> gadgets (to

[Google Wave APIs] Synchronization of data between my gadgets and my web app

2010-01-08 Thread matias molinas
Hi This email is about the synchronization of data between my wave gadgets (todolist, calendar coming soon..) and my web app, www.bubaproject.com. The idea of my web application is to allow the user view only the information of its "projects" waves in my site. And use that information with other t

Re: [Google Wave APIs] Re: ToDoList Gadget using JQuery UI and JQGrid

2010-01-07 Thread Matias Molinas
Improvements * Now the gadget includes a status column, and the possible values are: - to do - pending (see note) ... The note may refer to another task - done * Fixed the font size in wave * New installer: http://www.bubaproject.com/todolistinstaller.xml (thanks pamela..) thanks for the su

[Google Wave APIs] Re: ToDoList Gadget using JQuery UI and JQGrid

2010-01-06 Thread matias molinas
Two suggestions: 1. Add a "Done" option to the Priority Drop Down list. 2. Auto resize coulmns or have a fixed length column with wrapping text to fit content so it can be read in its entirety. Implemented... On 5 ene, 17:18, matias molinas wrote: > From linkedin Wave Interest Grou

[Google Wave APIs] Re: ToDoList Gadget using JQuery UI and JQGrid

2010-01-05 Thread matias molinas
h column with wrapping text to fit content so it can be read in its entirety. By Tony Imbruglia Director at BrokerSource Pty Ltd Response: Dear Tony Thank you very much for the suggestions. I will implement your suggestions in the coming days Matias - Buba Project On 3 ene, 23:45, Matias Molina

Re: [Google Wave APIs] ToDoList Gadget using JQuery UI and JQGrid

2010-01-03 Thread Matias Molinas
I apologize if occasionally does not work, because I am deploying a new version and running tests. 2010/1/3 Matias Molinas : > 2010/1/3 pamela (Google Employee) : >> Snazzy! >> >> So, if the user has a buba account, it will sync to their account, and >> if not, it w

Re: [Google Wave APIs] ToDoList Gadget using JQuery UI and JQGrid

2010-01-03 Thread Matias Molinas
https://wave.google.com/a/wavesandbox.com/#restored:wave:wavesandbox.com!w%252BydBe9kmbA > > Is there an installer? > ToDoList Gadget Installer: http://www.bubaproject.com/todolistinstaller.xml BubaProject Robot Installer: http://www.bubaproject.com/installer.xml > - pamela > > On

[Google Wave APIs] ToDoList Gadget using JQuery UI and JQGrid

2010-01-03 Thread matias molinas
Hi all Finally the first version of my todolist gadget works! http://www.bubaproject.com/todolist.xml or add my robot in your wave: bubaproj...@appspot.com write: @todolist and press "Done". this gadget uses wave states and integrates JQuery UI and JQGrid. The changes in the state of my Gad

Re: [Google Wave APIs] Re: Auto login to google embed wave

2009-12-28 Thread Matias Molinas
Google Wave should be an Open ID provider to resolve this problem I'm doing something similar, and finally I decided to use Google Friend Connect in my site and requiring the user to be authenticated to access pages with Wave embedded, but I worry about security .. I'm still thinking I've also ad

[Google Wave APIs] Re: Integration of authentication from Gadgets, Robots and web application

2009-12-21 Thread matias molinas
step2 ... On 21 dic, 18:08, matias molinas wrote: > Hi Pamela > > I want to perform secure authentication in Wave Gadget via Wave Robot > (same as TwitterBot sample) and also perform secure authentication > with the same account from my web application (the same web > applica

[Google Wave APIs] Integration of authentication from Gadgets, Robots and web application

2009-12-21 Thread matias molinas
Hi Pamela I want to perform secure authentication in Wave Gadget via Wave Robot (same as TwitterBot sample) and also perform secure authentication with the same account from my web application (the same web application who contains the wave robot and is running in Google App Engine: www.bubproj

[Google Wave APIs] Re: IOC and wave-robot-java-client

2009-12-20 Thread matias molinas
:02, matias molinas wrote: > Hi > I am studying the code of wave-robot-java-client and I see that > already includes a JDO PersistenceManagerFactory singleton for > OAuthService: > > com.google.wave.api.oauth.impl.SingletonPersistenceManagerFactory > > It's just

[Google Wave APIs] IOC and wave-robot-java-client

2009-12-20 Thread matias molinas
Hi I am studying the code of wave-robot-java-client and I see that already includes a JDO PersistenceManagerFactory singleton for OAuthService: com.google.wave.api.oauth.impl.SingletonPersistenceManagerFactory It's just a suggestion, but I think the library should be used a framework of IOC and D

Re: [Google Wave APIs] Dropdowns with robots

2009-12-18 Thread Matias Molinas
too? > > Thanks. > > 2009/12/15 Matias Molinas >> >> Hi >> >> A robot can insert a gadget and a gadget with some considerations can >> include the same html elements that a web page >> eg I use without problems jquery ui widgets >> >> 2

Re: [Google Wave APIs] Re: architectural best practices for writing wave extensions

2009-12-15 Thread Matias Molinas
/12/15 Matias Molinas : > Hi Andres > For the moment do not think release the source code, but I can make a > diagram of the architecture and code  examples of using this > architecture. > Of course you can help me in testing, but is still a prototype. I hope > in 15 days more

Re: [Google Wave APIs] Dropdowns with robots

2009-12-15 Thread Matias Molinas
Hi A robot can insert a gadget and a gadget with some considerations can include the same html elements that a web page eg I use without problems jquery ui widgets 2009/12/15 pamela (Google Employee) : > It's possible that it inserts a gadget which contains a menu. That > is something that you c

Re: [Google Wave APIs] Re: architectural best practices for writing wave extensions

2009-12-15 Thread Matias Molinas
App Engine or as a stand alone web app? How >> are you sharing data between the robot and the Spring app? >> >> On Dec 11, 11:52 am, Matias Molinas wrote: >> > I am developing an application that uses Wave as a way to provide >> > services for Gadgets and Wave

Re: [Google Wave APIs] Re: architectural best practices for writing wave extensions

2009-12-15 Thread Matias Molinas
ine or as a stand alone web app? How > are you sharing data between the robot and the Spring app? > > On Dec 11, 11:52 am, Matias Molinas wrote: >> I am developing an application that uses Wave as a way to provide >> services for Gadgets and Wave users, so I'm using a 3

Re: [Google Wave APIs] Re: getState() is null?

2009-12-13 Thread Matias Molinas
time! 2009/12/13 Matias Molinas : > Hi Pamela, thanks. > > First of all apologies for not detecting more specifically the problem before. > It is easier to complain rather than work :-) > I think now that I know I can help. > In the url: > > http://www.bubaproject.com/te

Re: [Google Wave APIs] Re: getState() is null?

2009-12-13 Thread Matias Molinas
the reason for the failure. Thanks again, Matias 2009/12/13 pamela (Google Employee) : > Hi Matias - Please link to a simplified version of the gadget code so that > we can see what you're doing. >  -pamela > On Fri, Dec 11, 2009 at 6:05 PM, Matias Molinas > wrote: >> &g

Re: [Google Wave APIs] architectural best practices for writing wave extensions

2009-12-11 Thread Matias Molinas
I am developing an application that uses Wave as a way to provide services for Gadgets and Wave users, so I'm using a 3 layer architecture with Spring MVC, where the Wave Robot (Servlet) is one component of my layer IU. I use Gadgets and are components from my UI layer that consumes the services o

Re: [Google Wave APIs] Re: getState() is null?

2009-12-10 Thread Matias Molinas
Works for me, but only in firefox 3 :-( . I suspect that this is a problem initializing the state, but I can not even identify. Thank you very much! 2009/12/10 dirtside : > I actually figured out that using submitValue() instead of submitDelta > () seems to work properly for whatever key. Not sure

Re: [Google Wave APIs] getState() is null?

2009-12-10 Thread Matias Molinas
I have the same problem in Firefox 3.5 and Chrome. In Firefox 3 works correctly . Any official solution? 2009/12/9 dirtside : > I'm developing a Wave gadget. It sets a callback function for > setStateCallback() and setParticipantCallback(), which apparently gets > called immediately, three times

[Google Wave APIs] Re: General problem Google Java APIs

2009-11-28 Thread matias molinas
Sorry .. not compatible with oauth-20090617.jar .. not with json library .. anyway it is not clear dependency management .. at least not as clear as it is a Maven POM :-) On 28 nov, 12:27, matias molinas wrote: > org.opensocial.client.OpenSocialHttpClient from stable version of Open >

[Google Wave APIs] Re: General problem Google Java APIs

2009-11-28 Thread matias molinas
e SVN repository don't compiles!!! :-( ... Should consider Maven, continuum integration and good polices for CM!! :-) On 28 nov, 11:30, matias molinas wrote: > Correction "I'm using GAE Java SDK, Google Friend Connect, Open Social > Java Client and Wave Java API" .. the

[Google Wave APIs] Re: General problem Google Java APIs

2009-11-28 Thread matias molinas
Correction "I'm using GAE Java SDK, Google Friend Connect, Open Social Java Client and Wave Java API" .. the principal problem is different versions of oauth, json. Maybe there are no conflicts .. but it is tedious to check On 28 nov, 11:19, matias molinas wrote: > I'm usi

[Google Wave APIs] General problem Google Java APIs

2009-11-28 Thread matias molinas
I'm using GAE Java SDK, Google Friend Connect, Open Social and Google Client for Java API for Java Wave. It's a nightmare to manage the dependencies of the libraries! Should use at least internally Maven and proper management of versions of the libraries! :-) -- You received this message because

Re: [Google Wave APIs] Re: Gadget and Wave States problem

2009-11-25 Thread Matias Molinas
Thanks for the tip 2009/11/25 qMax : > If you use Require feature="wave-preview" it might not work in chrome. > > On 25 ноя, 09:38, Matias Molinas wrote: >> Well the problem in Chrome 3 is that the state of the wave is not >> initialized, but in firefox 3 the w

Re: [Google Wave APIs] Re: Gadget and Wave States problem

2009-11-24 Thread Matias Molinas
lost :-( 2009/11/24 Matias Molinas : > interesting observations in: > > http://groups.google.com/group/google-wave-api/browse_thread/thread/9374d9fb43193f05 > > but no answers :-( > > 2009/11/23 a webulite : >> Pamela, >> >> so I am clear, making it "

Re: [Google Wave APIs] Re: Gadget and Wave States problem

2009-11-24 Thread Matias Molinas
n Mon, Nov 23, 2009 at 9:34 AM, pamela (Google Employee) > wrote: >> Hi Matias - >> Please make that Wave public if you would like others to be able to see it. >> - pamela >> >> On Mon, Nov 23, 2009 at 8:46 AM, Matias Molinas >> wrote: >>> >>> He, >

Re: [Google Wave APIs] Re: Gadget and Wave States problem

2009-11-23 Thread Matias Molinas
saveState ('eventList',jsonString); wave.log("Send update..."); } }); }); ... gadgets.util.registerOnLoadHandler(init); 2009/11/23 Matias Molinas

Re: [Google Wave APIs] Re: Gadget and Wave States problem

2009-11-23 Thread Matias Molinas
d:nav,minimized:contact,minimized:search,restored:wave:wavesandbox.com!w%252BSqL5UzhAJ 2009/11/23 Matias Molinas : > As you can see using playback in: > > https://wave.google.com/wave/?ll=debug#minimized:nav,minimized:contact,minimized:search,restored:wave:googlewave.com!w%252BBqazgSXrA.3 > > some t

Re: [Google Wave APIs] Re: Gadget and Wave States problem

2009-11-23 Thread Matias Molinas
As you can see using playback in: https://wave.google.com/wave/?ll=debug#minimized:nav,minimized:contact,minimized:search,restored:wave:googlewave.com!w%252BBqazgSXrA.3 some times the wave states is alive and works 2009/11/23 matias molinas : > Hi, sorry, is public now  :-) > &

[Google Wave APIs] Re: Gadget and Wave States problem

2009-11-23 Thread matias molinas
thers to be able to see it. > > - pamela > > On Mon, Nov 23, 2009 at 8:46 AM, Matias Molinas > wrote: > > > He, > > yesterday my gadget for todolist work fine with with wave states, this > > day is not working. > > > Could be due to a server problem?

[Google Wave APIs] Gadget and Wave States problem

2009-11-23 Thread Matias Molinas
He, yesterday my gadget for todolist work fine with with wave states, this day is not working. Could be due to a server problem? The wave where it worked yesterday and today you I can not retrieve the gadget state is: https://wave.google.com/wave/#restored:wave:googlewave.com!w%252B29Kw7WeBA.2

Re: [Google Wave APIs] Spreadsheet gadget

2009-11-19 Thread Matias Molinas
Good job! Your project http://spreadsheet.happinessbeats.com/ is amazing I am developing a project for project management, but is not yet available. I'm working on managing the states of the gadgets, so I used your experience with the spreadsheet. Thank you very much for sharing Matias www.buba

[Google Wave APIs] Re: Google Calendar?

2009-11-09 Thread Matias Molinas
I am developing a robot and a gadget to integrate the calendar, see www.bubaproject.com , but is still in an early stage. In a week will be available a version with minimal functionality. Greetings 2009/11/8 OneRyt : > > http://s77.photobucket.com/albums/j46/OneRyt/? > action=view¤t=Calendar-Su