Stai visualizzando la documentazione di Apigee Edge.
Vai alla documentazione di Apigee X. info
ExecutionFailed
Codice di errore
steps.jsonthreatprotection.ExecutionFailed
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: JSONThreatProtection[policy_name]: error_description at line line_num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Tipi di errori e possibili cause
Il criterio JSONThreatProtection può generare molti tipi diversi di errori ExecutionFailed. La tabella seguente elenca i diversi tipi di errori e le relative cause possibili:
Tipo di errore | Causa |
Lunghezza del nome della voce dell'oggetto superata | È stata superata la lunghezza massima della stringa consentita nel nome della voce di un oggetto. |
Conteggio delle voci dell'oggetto superato | È stato superato il numero massimo di voci consentite in un oggetto. |
Numero di elementi dell'array superato | È stato superato il numero massimo di elementi consentiti in un array. |
Profondità container superata | La profondità nidificata massima consentita è stata superata. |
È stata superata la lunghezza del valore della stringa | La lunghezza massima consentita per un valore di stringa è stata superata. |
Oggetto JSON non valido | Il payload JSON di input non è valido. |
Lunghezza del nome della voce dell'oggetto superata
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: JSONThreatProtection[policy_name]: Exceeded object entry name length at line line_num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]:
Exceeded object entry name length at line 2",
"detail": {
"errorcode": "steps.jsonthreatprotection.ExecutionFailed"
}
}
}
Causa
Questo errore si verifica se il payload del messaggio di input specificato dall'elemento <Source>
contiene un oggetto JSON con un nome di proprietà superiore alla lunghezza massima specificata nell'elemento <ObjectEntryNameLength>
.
Ad esempio, se l'elemento <ObjectEntryNameLength>
è specificato come 5 nel criterio, ma il payload del messaggio di input ha una proprietà JSON il cui nome supera i 5 caratteri, viene generato questo errore.
Diagnosi
Esamina il messaggio di errore per identificare il nome del criterio JSONThreatProtection e il numero di riga in cui si verifica il nome della voce lungo. Ad esempio, nel seguente messaggio di errore, il nome del criterio JSONThreatProtection è
JSON-Threat-Protection-1
e il numero di riga nel payload è 2.JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded object entry name length at line 2
Esamina il criterio identificato nel passaggio 1 e prendi nota del valore specificato nell'elemento
<ObjectEntryNameLength>
.Ad esempio, nel seguente criterio JSONThreatProtection,
<ObjectEntryNameLength>
è impostato su5
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>12</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>5</ObjectEntryNameLength> <Source>request</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
Esamina il numero di riga specifico (identificato nel passaggio 1) del payload di input e controlla se la lunghezza del nome dell'oggetto è maggiore del valore specificato nell'elemento
<ObjectEntryNameLength>
(identificato nel passaggio 2). Se la lunghezza del nome dell'oggetto supera questo numero, la causa dell'errore è questa.Ecco un esempio di payload di input:
{ "number" : 500, "string" : "text" }
Il payload JSON mostrato sopra ha una proprietà denominata
number
nella riga 2 che ha 6 caratteri (la lunghezza del nome è 6). Poiché la lunghezza del nome dell'oggetto è maggiore di 5 (il valore specificato per l'elemento<ObjectEntryNameLength>
), viene visualizzato il seguente errore:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded object entry name length at line 2
Risoluzione
Se il criterio JSONThreatProtection è stato progettato per proteggere dai payload con nomi di voci dell'oggetto che superano il valore definito, il messaggio di errore è previsto. In questo caso, non è richiesta alcuna azione aggiuntiva.
Tuttavia, se stabilisci che nel payload possono essere specificati nomi di voci di oggetti più lunghi senza alcuna conseguenza, modifica <ObjectEntryNameLength>
in un valore appropriato in base ai tuoi requisiti.
Ad esempio, se ritieni di poter consentire nomi di oggetti con una lunghezza massima di 10 caratteri, modifica il criterio JSONThreatProtection come segue:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>3</ArrayElementCount>
<ContainerDepth>12</ContainerDepth>
<ObjectEntryCount>5</ObjectEntryCount>
<ObjectEntryNameLength>10</ObjectEntryNameLength>
<Source>request</Source>
<StringValueLength>50</StringValueLength>
</JSONThreatProtection>
Conteggio delle voci dell'oggetto superato
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: JSONThreatProtection[policy_name]: Exceeded object entry count at line line_num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]:
Exceeded object entry count at line 7",
"detail": {
"errorcode": "steps.jsonthreatprotection.ExecutionFailed"
}
}
}
Causa
Questo errore si verifica se il payload del messaggio di input specificato dall'elemento <Source>
contiene un oggetto JSON con più voci (proprietà) rispetto al valore specificato nell'elemento <ObjectEntryCount>
del criterio.
Ad esempio, se l'elemento <ObjectEntryCount>
è 5, ma il payload JSON di input ha più di 5 voci, viene generato questo errore.
Diagnosi
Esamina il messaggio di errore per identificare il nome del criterio JSONThreatProtection e il numero di riga in cui viene superato il conteggio delle voci. Ad esempio, nel seguente messaggio di errore, il nome del criterio è
JSON-Threat-Protection-1
e il numero di riga nel payload è7
:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded object entry count at line 7
Annota il valore specificato nell'elemento
<ObjectEntryCount>
del criterio (identificato nel passaggio 1).Nel seguente esempio di criterio,
<ObjectEntryCount>
è impostato su5
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>12</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>6</ObjectEntryNameLength> <Source>request</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
Esamina il numero di riga specifico (identificato nel passaggio 1) del payload di input e controlla se il numero di entità nel payload è maggiore del valore specificato per l'elemento
<ObjectEntryCount>
(identificato nel passaggio 2). Se il numero di oggetti supera il conteggio delle voci di oggetto, questa è la causa dell'errore.Ecco un esempio di payload di input:
{ "name" : "John", "id" : 234687, "age" : 31, "city" : "New York", "country" : "USA", "company" : "Google" }
Nel payload JSON mostrato sopra, la sesta voce si trova nella riga 7 (company). Poiché il conteggio delle voci dell'oggetto nel payload JSON di input è maggiore di 5 (il valore specificato per l'elemento
<ObjectEntryCount>
), viene visualizzato il seguente errore:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded object entry count at line 7
Risoluzione
Se il criterio JSONThreatProtection ha lo scopo di proteggere dai payload con una serie di voci di oggetto superiori a una soglia specifica, è previsto il messaggio di errore. In questo caso, non è richiesta alcuna azione da parte tua.
Tuttavia, se stabilisci che è possibile includere più voci di oggetti nel payload senza conseguenze, modifica <ObjectEntryCount>
in un valore appropriato in base ai tuoi requisiti.
Ad esempio, se ritieni di poter consentire fino a 10 voci di oggetti, modifica il criterio JSONThreatProtection come segue:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>3</ArrayElementCount>
<ContainerDepth>12</ContainerDepth>
<ObjectEntryCount>10</ObjectEntryCount>
<ObjectEntryNameLength>6</ObjectEntryNameLength>
<Source>request</Source>
<StringValueLength>50</StringValueLength>
</JSONThreatProtection>
Numero di elementi dell'array superato
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: JSONThreatProtection[policy_name]: Exceeded array element count at line line-num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]:
Exceeded array element count at line 3",
"detail": {
"errorcode": "steps.jsonthreatprotection.ExecutionFailed"
}
}
}
Causa
Questo errore si verifica se il payload del messaggio di input specificato dall'elemento <Source>
contiene un array JSON con un numero di elementi superiore a quello specificato nell'elemento <ArrayElementCount>
del criterio.
Ad esempio, se l'elemento <ArrayElementCount>
è specificato come 3
, ma il payload di input ha un array JSON con più di 3 elementi, viene generato questo errore.
Diagnosi
Esamina il messaggio di errore per identificare il nome del criterio e il numero di riga in cui viene superata la lunghezza dell'array. Ad esempio, nel seguente messaggio di errore, il nome del criterio è
JSON-Threat-Protection-1
e il numero di riga nel payload è3
:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded array element count at line 3
Prendi nota del valore specificato per l'elemento
<ArrayElementCount>
del criterio (identificato nel passaggio 1).Nel seguente esempio di criterio JSONThreatProtection,
<ArrayElementCount>
è impostato su3
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>12</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>6</ObjectEntryNameLength> <Source>request</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
Esamina il numero di riga specifico (identificato nel passaggio 1) del payload di input e controlla se l'array specificato ha un conteggio superiore al numero specificato nell'elemento
<ArrayElementCount>
(identificato nel passaggio 2). Se il numero di elementi dell'array supera il conteggio, è questa la causa dell'errore.Ecco un esempio di payload di input:
{ "name":"Ford", "models":[ "Mustang", "Endeavour", "Fiesta", "EcoSport", "Focus" ] }
Il payload JSON mostrato sopra ha 5 elementi nell'array denominato
models
nella riga 3. Poiché il numero di elementi dell'array è maggiore di 3 (il valore specificato per l'elemento<ArrayElementCount>
), viene visualizzato il seguente errore:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded array element count at line 3
Risoluzione
Se il criterio JSONThreatProtection doveva proteggere dai payload con una soglia di conteggio degli array specifica, il messaggio di errore è previsto. In questo caso, non sono richieste ulteriori azioni.
Tuttavia, se stabilisci che è possibile consentire un numero maggiore di elementi in un array, modifica <ArrayElementCount>
in base a un valore appropriato in base alle tue esigenze.
Ad esempio, se ritieni di poter consentire fino a 5 elementi dell'array, modifica il criterio come segue:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>5</ArrayElementCount>
<ContainerDepth>12</ContainerDepth>
<ObjectEntryCount>5</ObjectEntryCount>
<ObjectEntryNameLength>6</ObjectEntryNameLength>
<Source>request</Source>
<StringValueLength>50</StringValueLength>
</JSONThreatProtection>
Profondità del contenitore superata
Corpo della risposta di errore
Il traffico di runtime restituisce un codice di risposta 500 con il seguente errore:
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: JSONThreatProtection[policy_name]: Exceeded container depth at line line-num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]:
Exceeded container depth at line 5",
"detail": {
"errorcode": "steps.jsonthreatprotection.ExecutionFailed"
}
}
}
Causa
Questo errore si verifica se il payload del messaggio di input specificato dall'elemento <Source>
contiene un oggetto JSON con elementi JSON con una profondità del container superiore alla profondità massima del container specificata nell'elemento <ContainerDepth>
del criterio. La profondità del contenitore è la profondità massima consentita per gli elementi JSON nidificati. Ad esempio, un array contenente un oggetto che contiene un oggetto avrà una profondità di contenimento pari a 3.
Ad esempio, se l'elemento <ContainerDepth>
è 3
, ma il payload di input ha una profondità del contenitore che supera questo limite, viene generato questo errore.
Diagnosi
Esamina il messaggio di errore per identificare il nome del criterio JSONThreatProtection e il numero di riga in cui viene superata la profondità del contenitore. Ad esempio, nel seguente messaggio di errore, il nome del criterio è
JSON-Threat-Protection-1
e il numero di riga nel payload è5
.JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded container depth at line 5
Annota il valore specificato per l'elemento
<ContainerDepth>
(identificato nel passaggio 1).Nel seguente esempio di criterio JSONThreatProtection,
<ContainerDepth>
è impostato su5
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>5</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>20</ObjectEntryNameLength> <Source>request</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
Esamina il numero di riga specifico (identificato nel passaggio 1) del payload di input e controlla se la profondità del contenitore nel payload è superiore al valore specificato nell'elemento
<ContainerDepth>
(identificato nel passaggio 2). Se la profondità del contenitore supera il conteggio, questa è la causa dell'errore.Ecco un esempio di payload di input:
{ "ContainerDepth2":[ { "ContainerDepth4":[ { "ContainerDepth6":[ "1", "2" ] } ] } ] }
Il payload JSON mostrato sopra ha una profondità del contenitore pari a 6 nella riga 5. Poiché la profondità è maggiore di 5, al valore specificato per l'elemento
<ContainerDepth>
del criterio JSONThreatProtection viene visualizzato il seguente errore:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded container depth at line 5
Risoluzione
Se il criterio JSONThreatProtection è stato progettato per proteggere dai payload con profondità del contenitore che superano il valore specificato, il messaggio di errore è previsto. In questo caso, non è richiesta alcuna azione aggiuntiva.
Tuttavia, se ritieni accettabili profondità del contenitore superiori, modifica <ContainerDepth>
in base a un valore appropriato in base ai tuoi requisiti.
Ad esempio, se ritieni di poter consentire profondità del contenitore fino a 10, modifica il criterio come segue:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>3</ArrayElementCount>
<ContainerDepth>10</ContainerDepth>
<ObjectEntryCount>5</ObjectEntryCount>
<ObjectEntryNameLength>20</ObjectEntryNameLength>
<Source>request</Source>
<StringValueLength>50</StringValueLength>
</JSONThreatProtection>
Lunghezza del valore della stringa superata
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: JSONThreatProtection[policy_name]: Exceeded string value length at line line-num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]:
Exceeded string value length at line 3",
"detail": {
"errorcode": "steps.jsonthreatprotection.ExecutionFailed"
}
}
}
Causa
Questo errore si verifica se il payload del messaggio di input specificato dall'elemento <Source>
contiene elementi JSON con valori con più caratteri di quelli consentiti dall'elemento <StringValueLength>
.
Ad esempio, se l'elemento <StringValueLength>
è impostato su 50
nel criterio, ma il payload di input ha uno o più elementi i cui valori contengono più di 50 caratteri, viene generato questo errore.
Diagnosi
Esamina il messaggio di errore per identificare il nome del criterio e il numero di riga in cui viene superata la lunghezza della stringa. Nell'esempio seguente, il nome del criterio è
JSON-Threat-Protection-1 and
line in the payload3
.JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded string value length at line 3
Prendi nota del valore specificato per l'elemento
<StringValueLength>
in (identificato nel passaggio 1).Nel seguente esempio di criterio JSONThreatProtection,
<StringValueLength>
è impostato su50
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>5</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>20</ObjectEntryNameLength> <Source>request</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
Esamina il numero di riga specifico (identificato nel passaggio 1) del payload di input e controlla se la lunghezza del valore è superiore al numero di caratteri specificato per l'elemento
<StringValueLength>
(identificato nel passaggio 2). Se la lunghezza del valore supera il limite, la causa dell'errore è questa.Ecco un esempio di payload di input:
{ "Country": "New Zealand", "Place Name": "Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu" }
Il payload JSON mostrato sopra ha un oggetto denominato
Place Name
il cui valoreTaumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu
ha 85 caratteri nella riga 3. Poiché la lunghezza del valore è superiore a 50 (valore specificato nell'elemento<StringValueLength>
), viene visualizzato il seguente errore:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: JSONThreatProtection[JSON-Threat-Protection-1]: Exceeded string value length at line 3
Risoluzione
Se il criterio JSONThreatProtection è stato progettato per proteggere dai payload con valori che superano una lunghezza specifica della stringa, il messaggio di errore è previsto. In questo caso, non è richiesta alcuna azione aggiuntiva.
Tuttavia, se stabilisci che nel payload può essere specificata una lunghezza del valore più lunga, modifica <StringValueLength>
in un valore appropriato in base ai tuoi requisiti.
Ad esempio, se ritieni di poter consentire un valore fino a una lunghezza di 90, modifica il criterio come segue:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>3</ArrayElementCount>
<ContainerDepth>5</ContainerDepth>
<ObjectEntryCount>5</ObjectEntryCount>
<ObjectEntryNameLength>20</ObjectEntryNameLength>
<Source>request</Source>
<StringValueLength>90</StringValueLength>
</JSONThreatProtection>
Oggetto JSON non valido
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Execution failed. reason: string: at line line-num", "detail": { "errorcode": "steps.jsonthreatprotection.ExecutionFailed" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Execution failed. reason: Expecting : at line 3",
"detail": {
"errorcode": "steps.jsonthreatprotection.ExecutionFailed"
}
}
}
Causa
Questo errore si verifica se il payload del messaggio di input specificato dall'elemento <Source>
nel criterio JSONThreatProtection non è un oggetto JSON valido.
Diagnosi
Esamina il messaggio di errore per identificare il nome del criterio e il numero di riga in cui si è verificato l'errore. Nell'esempio seguente il nome del criterio è
JSON-Threat-Protection-1 and
riga nel payload2
.JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: Expecting : at line 3
Esamina il numero di riga specifico (identificato nel passaggio 1) del payload di input e controlla se l'oggetto JSON che è stato passato nel payload è effettivamente un oggetto JSON valido.
Ecco un esempio di payload di input:
{ "Longitude": 6.11499, "Latitude" 50.76891 }
Nel payload JSON mostrato sopra, la riga 3 non contiene
":"
(due punti). Poiché non è un oggetto JSON valido, viene visualizzato l'errore:JSONThreatProtection[JSON-Threat-Protection-1]: Execution failed. reason: Expecting : at line 3
Risoluzione
Assicurati che un payload JSON di input valido venga passato a qualsiasi proxy API che includa il criterio JSONThreatProtection.
Per l'esempio descritto sopra, modifica il payload JSON come segue:
{
"Longitude": 6.11499,
"Latitude" : 50.76891
}
SourceUnavailable
Codice di errore
steps.jsonthreatprotection.SourceUnavailable
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]:: Source[var_name] is not available" "detail": { "errorcode": "steps.jsonthreatprotection.SourceUnavailable" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]::
Source requests is not available",
"detail": {
"errorcode": "steps.jsonthreatprotection.SourceUnavailable"
}
}
}
Causa
Questo errore si verifica se la variabile message specificata nell'elemento <Source>
del criterio JSONThreatProtection è:
- Al di fuori dell'ambito (non disponibile nel flusso specifico in cui viene eseguito il criterio)
- Non è uno dei valori validi
request
,response
omessage
Ad esempio, questo errore si verifica se l'elemento <Source>
nel criterio è impostato su una variabile che non esiste nel flusso in cui viene eseguito il criterio.
Diagnosi
Identifica il nome del criterio e il nome della variabile Origine dal messaggio di errore. Ad esempio, nel seguente messaggio di errore, il nome del criterio è
JSON-Threat-Protection-1
e la variabile Source èrequests
:JSONThreatProtection[JSON-Threat-Protection-1]:: Source requests is not available
Esamina il valore specificato per l'elemento
<Source>
identificato nel passaggio 1.Nel seguente esempio di criterio JSONThreatProtection, l'elemento
<Source>
è impostato surequests
.<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>5</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>20</ObjectEntryNameLength> <Source>requests</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
I valori validi per l'elemento
<Source>
sonorequest
,response
omessage
. Poiché requests non è un valore valido e non esiste nel flusso in cui viene eseguito il criterio, viene visualizzato l'errore:JSONThreatProtection[JSON-Threat-Protection-1]:: Source requests is not available
Risoluzione
Assicurati che la variabile impostata nell'elemento <Source>
del criterio JSONThreatProtection non riuscito sia impostata su request
, response
o message
ed esista nel flusso in cui viene eseguito il criterio.
Per correggere il criterio JSONThreatProtection di esempio mostrato sopra, puoi modificare l'elemento <Source>
in modo da utilizzare la variabile request
, perché esiste nel flusso di richiesta:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>3</ArrayElementCount>
<ContainerDepth>5</ContainerDepth>
<ObjectEntryCount>5</ObjectEntryCount>
<ObjectEntryNameLength>20</ObjectEntryNameLength>
<Source>request</Source>
<StringValueLength>50</StringValueLength>
</JSONThreatProtection>
NonMessageVariable
Codice di errore
steps.jsonthreatprotection.NonMessageVariable
Corpo della risposta di errore
{ "fault": { "faultstring": "JSONThreatProtection[policy_name]: Variable var_name does not resolve to a Message" "detail": { "errorcode": "steps.jsonthreatprotection.NonMessageVariable" } } }
Corpo della risposta di errore di esempio
{
"fault": {
"faultstring": "JSONThreatProtection[JSON-Threat-Protection-1]:
Variable message.content does not resolve to a Message",
"detail": {
"errorcode": "steps.jsonthreatprotection.NonMessageVariable"
}
}
}
Causa
Questo errore si verifica se l'elemento <Source>
nel criterio JSONThreatProtection è impostato su una variabile che non è di tipo message.
Le variabili di tipo di messaggio rappresentano intere richieste e risposte HTTP. La richiesta, la risposta e il messaggio delle variabili di flusso Apigee Edge integrate sono di tipo "messaggio". Per approfondire le variabili dei messaggi, consulta la sezione Riferimento alle variabili.
Diagnosi
Identifica il nome del criterio JSONThreatProtection e il nome della variabile di origine dal messaggio di errore. Ad esempio, nel seguente messaggio di errore, il nome del criterio è
JSON-Threat-Protection-1
e la variabile di origine èmessage.content
:JSONThreatProtection[JSON-Threat-Protection-1]: Variable message.content does not resolve to a Message
Esamina l'elemento
<Source>
del criterio JSONThreatProtection (identificato nel passaggio 1).Nel seguente esempio di criterio JSONThreatProtection,
<Source>
è impostato sumessage.content
anziché sumessage
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1"> <DisplayName>JSON Threat Protection-1</DisplayName> <Properties/> <ArrayElementCount>3</ArrayElementCount> <ContainerDepth>5</ContainerDepth> <ObjectEntryCount>5</ObjectEntryCount> <ObjectEntryNameLength>20</ObjectEntryNameLength> <Source>message.content</Source> <StringValueLength>50</StringValueLength> </JSONThreatProtection>
Poiché
message.content
non è di tipo messaggio, viene visualizzato l'errore:JSONThreatProtection[JSON-Threat-Protection-1]: Variable message.content does not resolve to a Message
Risoluzione
Assicurati che l'elemento <Source>
nel criterio JSONThreatProtection non riuscito sia impostato su una variabile di flusso di tipo message esistente nel flusso in cui viene eseguito il criterio.
Per correggere il criterio, puoi modificare l'elemento <Source>
per specificare una variabile
di tipo messaggio. Ad esempio, in JSONThreatProtection non riuscito puoi
specificare l'elemento <Source>
come message
:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JSONThreatProtection async="false" continueOnError="false" enabled="true" name="JSON-Threat-Protection-1">
<DisplayName>JSON Threat Protection-1</DisplayName>
<Properties/>
<ArrayElementCount>3</ArrayElementCount>
<ContainerDepth>5</ContainerDepth>
<ObjectEntryCount>5</ObjectEntryCount>
<ObjectEntryNameLength>20</ObjectEntryNameLength>
<Source>message</Source>
<StringValueLength>50</StringValueLength>
</JSONThreatProtection>