Closed GoogleCodeExporter closed 9 years ago
i actually think this is a higher priority issue. None of our insert
spreadsheet code
in our app now works. calling at Service.getFeed() will throw this error as
well and
I even tried going to the latest 1.43 gdata client that was published yesterday.
Original comment by nghia...@gmail.com
on 17 Mar 2010 at 3:37
I tested some more and it seems that the DocsService.insert() method is creating
invalid spreadsheet. What I mean by this is that when I create a new
spreadsheet as
in the sample/docs/DocList.java createNew() method, and I try to access this
spreadsheet via the Google Docs Web-GUI, I can open the spreadsheet but are not
able
to edit it.
Original comment by stefan.u...@gmail.com
on 17 Mar 2010 at 5:38
I see, this is our sample code. You're saying the insertSpreadSheet() makes an
invalid one which causes the rest to break. It's rather sucky, I wonder if
there's a
way to flag this so they'll take a look at it quicker?
<code>
SpreadsheetEntry spreadSheetEntry = m_docService.insertSpreadSheet(
"newtestnonbatch" );
m_spreadSheetService = new SpreadsheetService( "CreateDocumentSpreadsheet" );
m_spreadSheetService.setUserCredentials( m_username, m_password );
WorksheetFeed worksheetFeed = m_spreadSheetService.getFeed(
spreadSheetEntry.getWorksheetFeedUrl(), WorksheetFeed.class );
WorksheetEntry workSheetEntry = worksheetFeed.getEntries().get( 0 );
</code>
Original comment by nghia...@gmail.com
on 17 Mar 2010 at 5:44
The client expects the worksheets have "rowCount" element in the response. We
are
looking into this issue, and will get back to you as soon as possible.
Original comment by vbarat...@gmail.com
on 18 Mar 2010 at 2:35
This seems to have been fixed, probably as part of
http://code.google.com/p/gdata-
issues/issues/detail?id=1953
Original comment by stefan.u...@gmail.com
on 22 Mar 2010 at 5:41
So is this issue fixed in production? Because we're still getting the error.
Original comment by nghia...@gmail.com
on 22 Mar 2010 at 5:46
@nghie.le, like I said, it works for me (I am not working for Google so I have
access
to the same environment as you). Note that any of my existing
spreadsheets/worksheets
that exhibited this problem (i.e. that made my tests fail) still do not work.
But
manually deleting them (via the GUI) and re-creating them via the API now works.
Hopefully someone from Google can confirm this.
Original comment by stefan.u...@gmail.com
on 22 Mar 2010 at 6:15
Ok as of today, It is now working in our code, so we're happy as clams again.
Original comment by nghia...@gmail.com
on 23 Mar 2010 at 8:38
Original comment by vbarat...@gmail.com
on 24 Mar 2010 at 11:35
Original issue reported on code.google.com by
stefan.u...@gmail.com
on 16 Mar 2010 at 4:33