Juerg Ott | Hello, I search a way how i can get a list of all Translation patterns in the system. With the web-gui its easy: Call Routing -> Translation Pattern -> input pattern filter and go. the result is a nice list with all teh Translation patterns. But how can i get this with AXL? The same problems i has to get details from a single pattern, i was try this ( C# ) to get details of nr 4444: var req = new GetTransPatternReq(); req.ItemsElementName = new ItemsChoiceType44[1]; req.ItemsElementName[0] = ItemsChoiceType44.pattern; req.Items = new object[1]; req.Items[0] = "4444"; var resp = axl.getTransPattern(req); but i get alway back the message " SoapExeption: Item not valid: The specified TransPattern was not found" what i am doing wrong? (as soon this is working, i also must be able to create and delete Transaction Patterns, maybe somebody has a sample for this too))
Thank in advance for helping Jürg |
| Please sign in to flag this as inappropriate. |