Error: An error occurred during Xojo Cloud deployment. - Please wait a few minutes and try again."

Hi,
when i try to deploy a web app, i’m getting always (since a few days) the error:

[quote]“An error occurred during Xojo Cloud deployment. - Please wait a few minutes and try again.”
[/quote]

Do you have an idea what´s the mistake?

cheers,
marc

There’s a few things it could be. Can you tell me when during the deployment you get this error? Beginning, middle or end?

always at the end.
The upload to the server is finished and then when you think that all is OK, the error occurs.

ok, that usually means that the app didn’t launch for some reason. Let me take a quick peek.

What’s the name of the app?

apix

And the server is ICONMEDIA

Looking at the logs, it appears that the deployment actually did work, and it must be that the IDE can’t reach your server to show it to you. Have you tried going to the URL manually to see if you can access it in a browser?

it’ll be http:///apix

depending on the Stage Code of your app, the app name may have a suffix:

  • Development => -Dev
  • Alpha => -Alpha
  • Beta => -Beta

Like this: http:///apix-Dev

Ah! I just found the issue.

You have implemented App.HandleURL and are interrupting all requests, including those where Request.Path = “”. That would cause what you are seeing. The IDE relies on being able to see the initial session page to know that he app launched properly and I can see that all you are returning is a string of text.

uppss …

Hi Gregg thank you for your answer :slight_smile:

I will check it, and will give you a feedback.

marc

Yeah. That solved the problem.

Thanx :slight_smile:
Greetings from germany