164k views
2 votes
The following BML code in Config encountered an HTTP 404 error from .urldatabypost ( , "a1=v1&a2=v2", "call failed")

Which two statements are true?

A. The call will return "HTTP 404 Not Found".
B. The call will return "call failed".
C. An HTTP error will be displayed in red text with the message "HTTP 404 Not Found" at the top of the configuration screen.
D. The HTTP error will be captured in the BigMachines Error Logs: .
E. An unhandled exception will be displayed in red text at the top of the configuration screen.

User Pbanfi
by
8.0k points

1 Answer

3 votes

Final answer:

When a 404 error occurs in BML, the 'call failed' message is returned, and the error is typically logged in the BigMachines Error Logs.

Step-by-step explanation:

When an HTTP 404 error is encountered in BML (BigMachines Language) code as a result of the .urldatabypost function, the behavior of the system can depend on how the code is written. If the BML code has proper error handling, the specific messages or behaviors will be executed as defined in the code. Based on the provided information, if the HTTP call fails and returns a 404 error, two true statements are:

  • The call will return "call failed" as this is the custom error message defined in the code snippet.
  • The HTTP error 404 will likely be captured in the BigMachines Error Logs for further analysis by the system administrators or developers.

Keep in mind that the actual display of error messages, like showing the error in red text, typically depends on additional code and settings within the BML configuration screens.

User Postylem
by
7.4k points