Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 Merendeiro · Mar 16, 2017 at 08:25 PM · wwwyield

yield WWW doesn't work

Hi to everyone, I have a simple code that creates a new account on a database. The problem is that yield doesn't work and I really can't understand why. I attach my code below:

  /// <summary>
         /// This method prepares the informations to create a new account on database and starts a coroutine that adds the new account
         /// </summary>
         /// <returns></returns>
         public void CreateNewAccountOnDatabase()
         {            
             ....
 
             StartCoroutine(DBManager.Istance.CreateNewAccountOnDatabase(name, surname, identification, email, password));
         } // End CreateNewAccountOnDatabase

 /// <summary>
         /// This method creates a new account on database
         /// </summary>
         /// <returns></returns>
         public IEnumerator CreateNewAccountOnDatabase(string name, string surname, string identification, string email, string password)
         {
             WWWForm form = new WWWForm();
             form.AddField("Name", name);
             form.AddField("Surname", surname);
             form.AddField("Identification", identification);
             form.AddField("Email", email);
             form.AddField("Password", password);
             WWW createAccountWWW = new WWW(this.url, form);
             // Waiting for php to send something back to Unity
             yield return createAccountWWW;
             if (createAccountWWW.error != null)
             {
                 Debug.Log("Cannot Connect to Account Creation: " + createAccountWWW.error); // TODO
             }
             else
             {
                 string createAccountReturn = createAccountWWW.text;
                 if (string.Compare(createAccountReturn, "Success") == 0)
                 {
                     Debug.Log("Success: Account Created"); // TODO
                 }
             }
         } // End CreateNewAccountOnDatabase


Everything works fine...but the only problem is that after

 yield return createAccountWWW;

the program skips all remaining code and ends the method;

Thanks for all your help!!!

Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by rhylvin2016 · Mar 17, 2017 at 02:26 AM

you need to put your WWWFrom form = new WWWForm(); and other form.addfields inside public void CreateNewAccountOnDatabase() and just change the arguments to just the forms like this.

     public void Login(string email, string password, string macAddress)
     {
 
         //encode
         byte[] bytesToEncode = Encoding.UTF8.GetBytes(email + ":" + password);
         string encodedText = Convert.ToBase64String(bytesToEncode);

         //form
         WWWForm form = new WWWForm();
         form.AddField("macAddress", macAddress);

         StartCoroutine(LoginCoroutine(form,encodedText));
     }



 IEnumerator LoginCoroutine(WWWForm form, string encodedText)
 {
     using (UnityWebRequest www = UnityWebRequest.Post(globalURL + UrlforAuthentication, form))
     {
         www.SetRequestHeader("Authorization", "Basic " + encodedText);
         yield return www.Send();

         if (www.isError)
         {
             Debug.Log(www.error);
         }
         else
         {
             userFunction.UserVoid(www.downloadHandler.text);
         }
     }
 }

This script is my log in script that has a server database.

Comment
Add comment · Share
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

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Wait for file download 1 Answer

How to imitate yield functionality like WWW class 0 Answers

UnityWebRequest timing out ? Send() finishes but isDone = false 1 Answer

Yield www within Gui Update() 0 Answers

Load external mp3 File without streaming 1 Answer


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