Azure / Azure/LogicAppsUX

SplitOn renders HTTP Request Trigger UI inaccessible

Open
#4,881 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
111
Forks
109
Avg merge
1d 23h
Merged PRs (30d)
20

Description

### Describe the Bug with repro steps

1. Create a Stateful, Standard edition Logic App.
2. Set SplitOn on the HTTP Request trigger using code view

"splitOn": "@xpath(xml(triggerbody()),'/*[local-name()=\"BatchMessage\" and namespace-uri()=\"\"]/*[local-name()=\"Queue\" and namespace-uri()=\"\"]')"
3. Switch to designer and see the following error:

Unable to initialize operation details for operation
4. This issue is the same in the Portal and inside VS Code.
5. The SplitOn works when testing the Logic App, calling it via HTTP through PostMan splits the inbound message corretly.

### What type of Logic App Is this happening in?

Standard (Portal)

### Are you using new designer or old designer

New Designer

### Did you refer to the TSG before filing this issue? [https://aka.ms/lauxtsg]()

Yes

### Workflow JSON

```json
{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Call_a_local_function_in_this_logic_app_-_Code_Decode": {
"inputs": {
"functionName": "Resolver",
"parameters": {
"documentTitle": "@{xpath(xml(triggerBody()),'/*[local-name()=\"Queue\" and namespace-uri()=\"\"]/*[local-name()=\"DocumentTitle\" and namespace-uri()=\"\"]')}",
"inputString": "@{xpath(xml(triggerBody()),'/*[local-name()=\"Queue\" and namespace-uri()=\"\"]/*[local-name()=\"Message\" and namespace-uri()=\"\"]') }"
}
},
"runAfter": {},
"type": "InvokeFunction"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"triggers": {
"When_a_HTTP_request_is_received_-_Send_To_Karpel": {
"kind": "Http",
"splitOn": "@xpath(xml(triggerbody()),'/*[local-name()=\"BatchMessage\" and namespace-uri()=\"\"]/*[local-name()=\"Queue\" and namespace-uri()=\"\"]')",
"type": "Request"
}
}
},
"kind": "Stateful"
}
```

### Screenshots or Videos

![HTTP SplotOn]()

### Browser

Chrome and latest VS Code

### Additional context

*No response*

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.