Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 11 Next capture
2021 2022 2023
1 capture
11 Jun 22 - 11 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by dansav · Aug 06, 2015 at 02:30 AM · wwwpnguploadwwwform

uploading png with wwwform

I'm trying to upload a png to a service but I'm getting the following www error:

necessary data rewind wasn't possible.

I'm working on a mac standalone with unity 4.6.

I looked up the similar errors people posted about redirects, or problems with php on the their own servers, but this is a known service that accepts thousands of photo uploads a day so it is not those problems. The instructions they gave were the following:

 <form action="http://www.someservice.com/upload"
       method="post"
       enctype="multipart/form-data">
     <input type="text"     name="username" value="">
     <input type="password" name="password" value="">
     <input type="yourfile"     name="file">
 </form>

This is what I'm trying to duplicate in Unity.

The code I'm using to grab and save the picture is below. Grabbing and saving the picture work fine. I can open it in my streaming assets folder after the code runs:

 var tex = new Texture2D (picwidth, picheight, TextureFormat.RGB24, false);
         // Read screen contents into the texture Rect(0,0 is lower left and then goes up the width and height I think.
         tex.ReadPixels (Rect(left, screenheight-top-picheight, picwidth, picheight), 0, 0);
         tex.Apply ();
 
         // Encode texture into PNG
         var bytes = tex.EncodeToPNG();
         File.WriteAllBytes(Application.streamingAssetsPath + "/pic.png", bytes);

 var form = new WWWForm();
 
         form.AddBinaryData("file",bytes,"pic.png","image/png");
         form.AddField("username","myusername");
         form.AddField("password","mypassword");
 
         // Upload to a cgi script
         var w = WWW("http://www.someservice.com/upload", form);
         yield w;
         if (w.error != null) {
             print(w.error);
         } else {
         Debug.Log(w.text);
             print("Finished Uploading Screenshot");
         }

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image zach-r-d · Aug 06, 2015 at 02:42 AM 0
Share

Have you tried using telnet/wget/curl/a similar utility to confirm that the response does not contain a redirect header or anything of the sort?

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

24 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Failed to upload image over custom server 3 Answers

Blank web server response in multiple type data submission 1 Answer

Why isn't this $_POST working properly? 1 Answer

Can I reuse a WWWForm? 1 Answer

upload png receives multiple results from server 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges