Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Обработка ошибок неверных данных на стороне сервера #10

Closed
gsbelarus opened this issue May 12, 2020 · 0 comments
Assignees
Labels
bug Something isn't working
Milestone

Comments

@gsbelarus
Copy link
Owner

Код, указанный ниже, обработает только ошибки физического крушения сервера или обрыва сети, но не сможет обработать ошибки логические, когда сервер успешно получил данные, но они ему не подходят.

call oXMLHTTP.Send(JSON)
  on error goto 0

  If Err.Number <> 0 Then
    MsgBox "Ошибка передачи файла " & Err.Message
    bot_SendFile = False
  Else
    bot_SendFile = True
  End If

Надо в случае успешной обработки на сервере возвращать код 200, а в случае ошибки в данных код 500. Тогда проверка в макросе будет выглядеть:

call oXMLHTTP.Send(JSON)
  on error goto 0

  If Err.Number <> 0 Then
    MsgBox "Ошибка передачи файла " & Err.Message
    bot_SendFile = False
  ElseIf oXMLHTTP.status <> 200 Then
    MsgBox "Ошибка обработки наддын на сервере"
    bot_SendFile = False
  Else
    bot_SendFile = True
  End If
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants