I'm using google app engine to develop an upload form to upload a csv file. 
The issue I'm currently having is that in a Development environment the 
request action is to being sent correctly.

In the production environment the request action seems to work although the 
action is the same for both forms.

Both development and production have the same post action which is derived 
from:

<form action="<%= blobstoreService.createUploadUrl("/upload/form") %>" 
method="post" enctype="multipart/form-data">

However, when the controller class looks at the request, the development action 
is not as expected (ie not '/form'). 
The action within the development environment appears to be the blobkey which 
changes every time 
eg('ag50cy1zY2gtcmVwb3J0c3IbCxIVX19CbG9iVXBsb2FkU2Vzc2lvbl9fGAEM')

The production environment action = '/form' and processes the csv file as 
expected.

The question I have is, is there any known differences that I should be aware 
of that would stop the request from being processed correctly on the 
development server? 
Or what is wrong with the development environment to cause this issue.

Thanks in advanced

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/Ccw7zi-ZEjwJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to