Is the error still 302? Or did it generate another error? The 302 definitely
indicates that the authentication isn't working, but a different error would
mean something else.
Also, reading over the docstring for bulkload, it seems you can simplify
this code by just having the file be:
inventory = bulkload.Loader('Inventory', [("name", str),("quantity", int)])
if __name__ == "__main__":
bulkload.main(inventory)
-Marzia
On Tue, Nov 18, 2008 at 9:50 AM, Gampesh <[EMAIL PROTECTED]> wrote:
> hi,
> but i have passed --cookie which is generated after visiting "
> famousandspicy.appspot.com/load" but still it is not working.
>
> thanks
>
>
> On Tue, Nov 18, 2008 at 11:01 PM, Marzia Niccolai <[EMAIL PROTECTED]>wrote:
>
>> Hi,
>>
>> The 302 means that login is required, so you need to make sure you are
>> passing in the correct --cookie parameter to the command line.
>>
>> Visit famousandspicy.appspot.com/load in the browser to retrieve the
>> cookie to use for the bulkuploader.
>>
>> -Marzia
>>
>> On Mon, Nov 17, 2008 at 8:44 PM, Gampesh <[EMAIL PROTECTED]> wrote:
>>
>>>
>>> My app.yaml is
>>>
>>> handlers:
>>> - url: /load
>>> script: loader.py
>>> login: admin
>>> - url: /.*
>>> script: main.py
>>>
>>> loader.py is
>>>
>>> from google.appengine.ext import bulkload
>>>
>>> class InventoryLoader(bulkload.Loader):
>>> def __init__(self):
>>> fields = [
>>> ("name", str),
>>> ("quantity", int)
>>> ]
>>>
>>> bulkload.Loader.__init__(self, "Inventory", fields)
>>>
>>> if __name__ == "__main__":
>>> bulkload.main(InventoryLoader())
>>>
>>> my inventory.csv is in the c:/ and i fire a command that is
>>>
>>> C:\Program Files\google_appengine>tools\bulkload_client.py --
>>> filename=c:\inventory.txt --king=Inventory --url=http://
>>> famousandspicy.appspot.com/load
>>>
>>> after getting error i fired another command which i got from the
>>> google search
>>>
>>> C:\Program Files\google_appengine>tools\bulkload_client.py --
>>> filename=c:\inventory.txt --king=Inventory --url=http://
>>> famousandspicy.appspot.com/load --cookie='ACSID=AJKiYc....[...]..w51g'
>>>
>>> but i am not lucky this time also.
>>>
>>>
>>> please help me out
>>>
>>> Thanks
>>> Gampesh
>>>
>>> On Nov 18, 3:31 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>>> > Hi,
>>> >
>>> > What information is in the logs for the posts from the client? What
>>> does
>>> > the App Engine handler look like for the data? What does your app.yaml
>>> look
>>> > like?
>>> >
>>> > -Marzia
>>> >
>>> > On Sun, Nov 16, 2008 at 11:57 PM, Gampesh <[EMAIL PROTECTED]> wrote:
>>> >
>>> > > Hi,
>>> >
>>> > > I tried to upload abc.txt and abc.csv but it not uploaded it gives me
>>> > > following error.
>>> >
>>> > > INFO 2008-11-17 13:16:41,967 bulkload_client.py] Starting import;
>>> > > maximum 10 entities per post
>>> > > INFO 2008-11-17 13:16:41,967 bulkload_client.py] Importing 4
>>> > > entities in 29 bytes
>>> > > ERROR 2008-11-17 13:16:43,437 bulkload_client.py] An error
>>> occurred
>>> > > while importing: Received code 302: Found
>>> >
>>> > > 302 Moved
>>> > > The document has moved
>>> > > here.
>>> > > ERROR 2008-11-17 13:16:43,453 bulkload_client.py] Import failed
>>> >
>>> > > what is wrong in this.
>>>
>>>
>>
>>
>>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---