From 5f0d1fc37fc52a2d4cbde7799b47d52e08ea0d50 Mon Sep 17 00:00:00 2001 From: wojciech Date: Tue, 30 Jul 2024 13:29:43 +0200 Subject: [PATCH] sql fix --- Processes/rest/rest request.process | 6 +- ...sql.process => InitializeDatabase.process} | 29 ++- Processes/sql/SQLDELETE.process | 119 ----------- Processes/sql/SQLGET.process | 197 ------------------ Processes/sql/SQLPOST.process | 167 --------------- Processes/sql/SQLPUT.process | 184 ---------------- Processes/sql/SelectDatabase.process | 174 ++++++++++++++++ Processes/{wsdl => sql/author}/.folder | 2 +- Processes/sql/author/SqlDELETE.process | 80 +++++++ Processes/sql/author/SqlGET.process | 129 ++++++++++++ Processes/sql/author/SqlPOST.process | 136 ++++++++++++ Processes/sql/author/SqlPUT.process | 139 ++++++++++++ Processes/sql/select operation.process | 78 ------- Processes/xml/author/.folder | 7 + .../XmlDELETE.process} | 2 +- .../{XMLGET.process => author/XmlGET.process} | 2 +- .../XmlPOST.process} | 2 +- .../{XMLPUT.process => author/XmlPUT.process} | 2 +- Processes/xml/xml.process | 26 +-- Resources/WSDL/PortTypeGet.process | 155 -------------- ...elete.process => SoapDeleteAuthor.process} | 51 +++-- Resources/WSDL/SoapGetAuthor.process | 92 ++++++++ ...ypePost.process => SoapPostAuthor.process} | 49 +++-- ...tTypePut.process => SoapPutAuthor.process} | 55 +++-- Resources/WSDL/WSDL-service8.serviceagent | 8 +- defaultVars/defaultVars.substvar | 4 +- 26 files changed, 905 insertions(+), 990 deletions(-) rename Processes/sql/{sql.process => InitializeDatabase.process} (71%) delete mode 100644 Processes/sql/SQLDELETE.process delete mode 100644 Processes/sql/SQLGET.process delete mode 100644 Processes/sql/SQLPOST.process delete mode 100644 Processes/sql/SQLPUT.process create mode 100644 Processes/sql/SelectDatabase.process rename Processes/{wsdl => sql/author}/.folder (55%) create mode 100644 Processes/sql/author/SqlDELETE.process create mode 100644 Processes/sql/author/SqlGET.process create mode 100644 Processes/sql/author/SqlPOST.process create mode 100644 Processes/sql/author/SqlPUT.process delete mode 100644 Processes/sql/select operation.process create mode 100644 Processes/xml/author/.folder rename Processes/xml/{XMLDELETE.process => author/XmlDELETE.process} (99%) rename Processes/xml/{XMLGET.process => author/XmlGET.process} (98%) rename Processes/xml/{XMLPOST.process => author/XmlPOST.process} (99%) rename Processes/xml/{XMLPUT.process => author/XmlPUT.process} (99%) delete mode 100644 Resources/WSDL/PortTypeGet.process rename Resources/WSDL/{PortTypeDelete.process => SoapDeleteAuthor.process} (68%) create mode 100644 Resources/WSDL/SoapGetAuthor.process rename Resources/WSDL/{PortTypePost.process => SoapPostAuthor.process} (76%) rename Resources/WSDL/{PortTypePut.process => SoapPutAuthor.process} (75%) diff --git a/Processes/rest/rest request.process b/Processes/rest/rest request.process index 06c0b48..d1fcd0d 100644 --- a/Processes/rest/rest request.process +++ b/Processes/rest/rest request.process @@ -36,8 +36,8 @@ End - 787 - 259 + 786 + 254 http://xmlns.example.com/1719474540368 @@ -48,7 +48,7 @@ 263 /Processes/xml/xml.process - if ($_globalVariables/pfx:GlobalVariables/processType='sql') then '/Processes/sql/sql.process' else '/Processes/xml/xml.process' + if ($_globalVariables/pfx:GlobalVariables/processType='sql') then '/Processes/sql/InitializeDatabase.process' else '/Processes/xml/xml.process' false diff --git a/Processes/sql/sql.process b/Processes/sql/InitializeDatabase.process similarity index 71% rename from Processes/sql/sql.process rename to Processes/sql/InitializeDatabase.process index 5ed3dff..9d789d3 100644 --- a/Processes/sql/sql.process +++ b/Processes/sql/InitializeDatabase.process @@ -1,6 +1,7 @@ - - Processes/sql/sql.process + + + Processes/sql/InitializeDatabase.process Start @@ -14,10 +15,22 @@ 54 121 - + + + End - 828 - 111 + + + + + + + + + + + 823 + 117 http://xmlns.example.com/1719483377637 @@ -35,7 +48,7 @@ - + @@ -44,9 +57,9 @@ com.tibco.pe.core.CallProcessActivity ae.process.subprocess 468 - 110 + 117 - /Processes/sql/select operation.process + /Processes/sql/SelectDatabase.process diff --git a/Processes/sql/SQLDELETE.process b/Processes/sql/SQLDELETE.process deleted file mode 100644 index f20c196..0000000 --- a/Processes/sql/SQLDELETE.process +++ /dev/null @@ -1,119 +0,0 @@ - - - Processes/sql/SQLDELETE.process - Start - - - - - - - - - - 150 - 64 - - End - 681 - 62 - - - http://xmlns.example.com/1719579163583 - - com.tibco.plugin.mapper.MapperActivity - ae.activities.MapperActivity - 268 - 63 - - - - - - - - - - - - - - - - - - - - - com.tibco.plugin.jdbc.JDBCUpdateActivity - ae.activities.JDBCUpdateActivity - 424 - 61 - - 10 - false - false - /Resources/configurations/JDBC Connection.sharedjdbc - DELETE FROM author WHERE id=?; - - - param_id - VARCHAR - - - - - - - - - - - - - com.tibco.plugin.waitnotify.NotifyActivity - ae.activities.notifyActivity - 555 - 61 - - /Resources/configurations/Notify Configuration.sharednotify - - - - - - - - - - - - - Start - Map Data - Default - -16777216 - always - - - Map Data - JDBC Update - Default - -16777216 - always - - - JDBC Update - Notify - Default - -16777216 - always - - - Notify - End - Default - -16777216 - always - - \ No newline at end of file diff --git a/Processes/sql/SQLGET.process b/Processes/sql/SQLGET.process deleted file mode 100644 index 2114d53..0000000 --- a/Processes/sql/SQLGET.process +++ /dev/null @@ -1,197 +0,0 @@ - - - Processes/sql/SQLGET.process - Start - - - - - - - - - - 152 - 111 - - - - - - - - - - - - - - - - - - - - - - - End - 726 - 108 - - - http://xmlns.example.com/1719579163583 - - com.tibco.plugin.mapper.MapperActivity - ae.activities.MapperActivity - 304 - 110 - - - - - - - - - - - - - - - - - - - - - com.tibco.plugin.jdbc.JDBCQueryActivity - ae.activities.JDBCQueryActivity - 459 - 109 - - 10 - false - 100 - false - /Resources/configurations/JDBC Connection.sharedjdbc - select * from author where id=? - - - id - VARCHAR - - - - - id - 4 - INTEGER - OptionalElement - firstname - 12 - VARCHAR - OptionalElement - lastname - 12 - VARCHAR - OptionalElement - date_of_birth - 12 - TEXT - OptionalElement - date_of_death - 12 - TEXT - OptionalElement - age - 4 - INT - OptionalElement - - - - - - - - - - - com.tibco.plugin.waitnotify.NotifyActivity - ae.activities.notifyActivity - 596 - 105 - - /Resources/configurations/Notify Configuration.sharednotify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Map Data - JDBC Query - Default - -16777216 - always - - - Start - Map Data - Default - -16777216 - always - - - JDBC Query - Notify - Default - -16777216 - always - - - Notify - End - Default - -16777216 - always - - \ No newline at end of file diff --git a/Processes/sql/SQLPOST.process b/Processes/sql/SQLPOST.process deleted file mode 100644 index ca958fa..0000000 --- a/Processes/sql/SQLPOST.process +++ /dev/null @@ -1,167 +0,0 @@ - - - Processes/sql/SQLPOST.process - Start - - - - - - - - - - 152 - 112 - - End - 793 - 85 - - - http://xmlns.example.com/1719579163583 - - com.tibco.plugin.mapper.MapperActivity - ae.activities.MapperActivity - 367 - 66 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - com.tibco.plugin.jdbc.JDBCUpdateActivity - ae.activities.JDBCUpdateActivity - 561 - 66 - - 10 - false - false - /Resources/configurations/JDBC Connection.sharedjdbc - INSERT INTO author ( firstname, lastname, date_of_birth, date_of_death, age) VALUES (?,?,?,?,?); - - - param_firstname - VARCHAR - - - param_lastname - VARCHAR - - - param_date-of_birth - VARCHAR - - - param_date-of_death - VARCHAR - - - param_age - VARCHAR - - - - - - - - - - - - - - - - - - - - - - - - - com.tibco.plugin.waitnotify.NotifyActivity - ae.activities.notifyActivity - 671 - 68 - - /Resources/configurations/Notify Configuration.sharednotify - - - - - - - - - - - - - Map Data - JDBC Update - Default - -16777216 - always - - - Start - Map Data - Default - -16777216 - always - - - JDBC Update - Notify - Default - -16777216 - always - - - Notify - End - Default - -16777216 - always - - \ No newline at end of file diff --git a/Processes/sql/SQLPUT.process b/Processes/sql/SQLPUT.process deleted file mode 100644 index 7295d28..0000000 --- a/Processes/sql/SQLPUT.process +++ /dev/null @@ -1,184 +0,0 @@ - - - Processes/sql/SQLPUT.process - Start - - - - - - - - - - 145 - 64 - - End - 644 - 66 - - - http://xmlns.example.com/1719579163583 - - com.tibco.plugin.mapper.MapperActivity - ae.activities.MapperActivity - 262 - 64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - com.tibco.plugin.jdbc.JDBCUpdateActivity - ae.activities.JDBCUpdateActivity - 391 - 64 - - 10 - false - false - /Resources/configurations/JDBC Connection.sharedjdbc - UPDATE author -SET firstname = ?, lastname = ?, date_of_birth = ?, date_of_death = ?, age = ? -WHERE id = ?; - - - - param_firstname - VARCHAR - - - param_lastname - VARCHAR - - - param_date-of_birth - VARCHAR - - - param_date-of_death - VARCHAR - - - param_age - VARCHAR - - - param_id - VARCHAR - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - com.tibco.plugin.waitnotify.NotifyActivity - ae.activities.notifyActivity - 524 - 65 - - /Resources/configurations/Notify Configuration.sharednotify - - - - - - - - - - - - - Start - Map Data - Default - -16777216 - always - - - Map Data - JDBC Update - Default - -16777216 - always - - - JDBC Update - Notify - Default - -16777216 - always - - - Notify - End - Default - -16777216 - always - - \ No newline at end of file diff --git a/Processes/sql/SelectDatabase.process b/Processes/sql/SelectDatabase.process new file mode 100644 index 0000000..2c9ffd7 --- /dev/null +++ b/Processes/sql/SelectDatabase.process @@ -0,0 +1,174 @@ + + + + Processes/sql/SelectDatabase.process + Start + + + + + + + + + + + 169 + 180 + + + + + + + + + End + + + + + + + + + + + 802 + 184 + + + http://xmlns.example.com/1719567794423 + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 603 + 304 + + /Processes/sql/author/SqlPOST.process + concat('/Processes/sql/author/Sql',$Start/root/method ,'.process') + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.mapper.MapperActivity + ae.activities.MapperActivity + 388 + 183 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 600 + 74 + + /Processes/sql/author/SqlGET.process + concat('/Processes/sql/author/Sql',$Start/root/method ,'.process') + + + + + + + + + + + Start + Map Data + Default + -16777216 + always + + + Map Data + SqlGET_DELETE + Default + -16777216 + xpath + $Start/root/method = 'DELETE' or $Start/root/method = 'GET' + + + Map Data + SqlPOST_PUT + Default + -16777216 + xpath + $Start/root/method = 'PUT' or $Start/root/method = 'POST' + + + SqlPOST_PUT + End + Default + -16777216 + always + + + SqlGET_DELETE + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/wsdl/.folder b/Processes/sql/author/.folder similarity index 55% rename from Processes/wsdl/.folder rename to Processes/sql/author/.folder index 6f9e1ff..b2618a7 100644 --- a/Processes/wsdl/.folder +++ b/Processes/sql/author/.folder @@ -1,6 +1,6 @@ - + diff --git a/Processes/sql/author/SqlDELETE.process b/Processes/sql/author/SqlDELETE.process new file mode 100644 index 0000000..93232ab --- /dev/null +++ b/Processes/sql/author/SqlDELETE.process @@ -0,0 +1,80 @@ + + + + Processes/sql/author/SqlDELETE.process + Start + + + + + + + + + + 157 + 64 + + + + + + + + End + + + + + + + + + + + 681 + 62 + + + http://xmlns.example.com/1719579163583 + + com.tibco.plugin.jdbc.JDBCUpdateActivity + ae.activities.JDBCUpdateActivity + 424 + 61 + + 10 + false + false + /Resources/configurations/JDBC Connection.sharedjdbc + DELETE FROM author WHERE id=?; + + + param_id + VARCHAR + + + + + + + + + + + + + JDBC Update + End + Default + -16777216 + always + + + Start + JDBC Update + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/sql/author/SqlGET.process b/Processes/sql/author/SqlGET.process new file mode 100644 index 0000000..f0b7dab --- /dev/null +++ b/Processes/sql/author/SqlGET.process @@ -0,0 +1,129 @@ + + + + Processes/sql/author/SqlGET.process + Start + + + + + + + + + + 152 + 111 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + End + + + + + + + + + + + 726 + 108 + + + http://xmlns.example.com/1719579163583 + + com.tibco.plugin.jdbc.JDBCQueryActivity + ae.activities.JDBCQueryActivity + 459 + 109 + + 10 + false + 100 + false + /Resources/configurations/JDBC Connection.sharedjdbc + select * from author where id=? + + + id + VARCHAR + + + + + id + 4 + INTEGER + OptionalElement + firstname + 12 + VARCHAR + OptionalElement + lastname + 12 + VARCHAR + OptionalElement + date_of_birth + 12 + TEXT + OptionalElement + date_of_death + 12 + TEXT + OptionalElement + age + 4 + INT + OptionalElement + + + + + + + + + + + JDBC Query + End + Default + -16777216 + always + + + Start + JDBC Query + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/sql/author/SqlPOST.process b/Processes/sql/author/SqlPOST.process new file mode 100644 index 0000000..572d354 --- /dev/null +++ b/Processes/sql/author/SqlPOST.process @@ -0,0 +1,136 @@ + + + + Processes/sql/author/SqlPOST.process + Start + + + + + + + + + + 152 + 112 + + + + + + + + End + + + + + + + + + + + 778 + 112 + + + http://xmlns.example.com/1719579163583 + + com.tibco.plugin.jdbc.JDBCUpdateActivity + ae.activities.JDBCUpdateActivity + 384 + 112 + + 10 + false + false + /Resources/configurations/JDBC Connection.sharedjdbc + INSERT INTO author ( id,firstname, lastname, date_of_birth, date_of_death, age) VALUES (?,?,?,?,?,?); + + + param_id + INTEGER + + + param_firstname + VARCHAR + + + param_lastname + VARCHAR + + + param_date-of_birth + DATE + + + param_date-of_death + DATE + + + param_age + INTEGER + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + true + + + + + + + + JDBC Update + End + Default + -16777216 + always + + + Start + JDBC Update + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/sql/author/SqlPUT.process b/Processes/sql/author/SqlPUT.process new file mode 100644 index 0000000..d28a2eb --- /dev/null +++ b/Processes/sql/author/SqlPUT.process @@ -0,0 +1,139 @@ + + + + Processes/sql/author/SqlPUT.process + Start + + + + + + + + + + 145 + 64 + + + + + + + + End + + + + + + + + + + + 644 + 66 + + + http://xmlns.example.com/1719579163583 + + com.tibco.plugin.jdbc.JDBCUpdateActivity + ae.activities.JDBCUpdateActivity + 387 + 65 + + 10 + false + false + /Resources/configurations/JDBC Connection.sharedjdbc + UPDATE author +SET firstname = ?, lastname = ?, date_of_birth = ?, date_of_death = ?, age = ? +WHERE id = ?; + + + + param_firstname + VARCHAR + + + param_lastname + VARCHAR + + + param_date-of_birth + DATE + + + param_date-of_death + DATE + + + param_age + INTEGER + + + param_id + INTEGER + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + true + + + + + + + + + + true + + + + + + + + JDBC Update + End + Default + -16777216 + always + + + Start + JDBC Update + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/sql/select operation.process b/Processes/sql/select operation.process deleted file mode 100644 index 1f41292..0000000 --- a/Processes/sql/select operation.process +++ /dev/null @@ -1,78 +0,0 @@ - - - Processes/sql/select operation.process - Start - - - - - - - - - - - 95 - 76 - - End - 718 - 81 - - - http://xmlns.example.com/1719567794423 - - com.tibco.pe.core.WriteToLogActivity - ae.activities.log - 400 - 78 - - User - - - - - - - - - - - com.tibco.pe.core.CallProcessActivity - ae.process.subprocess - 245 - 77 - - /Processes/sql/SQLPOST.process - concat( '/Processes/SQL', $Start/root/method ,'.process' ) - - - - - - - - - - - Log - End - Default - -16777216 - always - - - Start - selected process - Default - -16777216 - always - - - selected process - Log - Default - -16777216 - always - - \ No newline at end of file diff --git a/Processes/xml/author/.folder b/Processes/xml/author/.folder new file mode 100644 index 0000000..b2618a7 --- /dev/null +++ b/Processes/xml/author/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Processes/xml/XMLDELETE.process b/Processes/xml/author/XmlDELETE.process similarity index 99% rename from Processes/xml/XMLDELETE.process rename to Processes/xml/author/XmlDELETE.process index 1d368cb..4caa87f 100644 --- a/Processes/xml/XMLDELETE.process +++ b/Processes/xml/author/XmlDELETE.process @@ -1,7 +1,7 @@ - Processes/xml/XMLDELETE.process + Processes/xml/author/XmlDELETE.process Start diff --git a/Processes/xml/XMLGET.process b/Processes/xml/author/XmlGET.process similarity index 98% rename from Processes/xml/XMLGET.process rename to Processes/xml/author/XmlGET.process index 4ba2f8a..b4378d3 100644 --- a/Processes/xml/XMLGET.process +++ b/Processes/xml/author/XmlGET.process @@ -1,7 +1,7 @@ - Processes/xml/XMLGET.process + Processes/xml/author/XmlGET.process Start diff --git a/Processes/xml/XMLPOST.process b/Processes/xml/author/XmlPOST.process similarity index 99% rename from Processes/xml/XMLPOST.process rename to Processes/xml/author/XmlPOST.process index f519afd..093c445 100644 --- a/Processes/xml/XMLPOST.process +++ b/Processes/xml/author/XmlPOST.process @@ -1,7 +1,7 @@ - Processes/xml/XMLPOST.process + Processes/xml/author/XmlPOST.process Start diff --git a/Processes/xml/XMLPUT.process b/Processes/xml/author/XmlPUT.process similarity index 99% rename from Processes/xml/XMLPUT.process rename to Processes/xml/author/XmlPUT.process index 274a2c2..1df1419 100644 --- a/Processes/xml/XMLPUT.process +++ b/Processes/xml/author/XmlPUT.process @@ -1,7 +1,7 @@ - Processes/xml/XMLPUT.process + Processes/xml/author/XmlPUT.process Start diff --git a/Processes/xml/xml.process b/Processes/xml/xml.process index e1fadfe..91b824d 100644 --- a/Processes/xml/xml.process +++ b/Processes/xml/xml.process @@ -17,9 +17,9 @@ 77 - + - + @@ -39,14 +39,14 @@ http://xmlns.example.com/1719484154608 - + com.tibco.pe.core.CallProcessActivity ae.process.subprocess 545 41 - /Processes/xml/XMLPOST.process - concat('/Processes/xml/XML',$Start/root/method ,'.process') + /Processes/xml/author/XmlPOST.process + concat('/Processes/xml/author/Xml',$Start/root/method ,'.process') @@ -133,14 +133,14 @@ - + com.tibco.pe.core.CallProcessActivity ae.process.subprocess 539 - 148 + 147 - /Processes/xml/XMLGET.process - concat('/Processes/xml/XML',$Start/root/method ,'.process') + /Processes/xml/author/XmlGET.process + concat('/Processes/xml/author/Xml',$Start/root/method ,'.process') @@ -151,7 +151,7 @@ - XMLPOST + XmlPOST_PUT End Default -16777216 @@ -159,7 +159,7 @@ Map Data - XMLPOST + XmlPOST_PUT post or put Default -16777216 @@ -182,7 +182,7 @@ Map Data - get or delete + XmlGET_DELETE get or delete Default -16777216 @@ -190,7 +190,7 @@ $Start/root/method = 'DELETE' or $Start/root/method = 'GET' - get or delete + XmlGET_DELETE End Default -16777216 diff --git a/Resources/WSDL/PortTypeGet.process b/Resources/WSDL/PortTypeGet.process deleted file mode 100644 index b956dac..0000000 --- a/Resources/WSDL/PortTypeGet.process +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - Resources/WSDL/PortTypeGet.process - Start - - 111 - 64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - End - - 542 - 67 - - - - - http://xmlns.example.com/1721743176122 - - com.tibco.pe.core.CallProcessActivity - ae.process.subprocess - 281 - 65 - - /Processes/xml/XMLGET.process - - - - - - - - - - - com.tibco.plugin.waitnotify.WaitActivity - ae.activities.waitActivity - 411 - 69 - - /Resources/configurations/Notify Configuration.sharednotify - - - - - - - com.tibco.plugin.soap.SOAPSendReceiveActivity - ae.activities.SOAPSendReceiveUI - 220 - 156 - - 0 - SwA - Seconds - wsdlPfx:WSDL-service2 - PortTypeEndpoint2 - Get - NONE - - - - - com.tibco.plugin.timer.NullActivity - ae.activities.null - 243 - 377 - - - - - com.tibco.plugin.timer.NullActivity - ae.activities.null - 646 - 243 - - - - - XMLGET - Wait - Default - -16777216 - always - - - Wait - End - Default - -16777216 - always - - - Start - XMLGET - Default - -16777216 - always - - - Start - SOAPRequestReply - Default - -16777216 - always - - - SOAPRequestReply - Null - Default - -16777216 - always - - - SOAPRequestReply - Null-1 - Default - -16777216 - always - - \ No newline at end of file diff --git a/Resources/WSDL/PortTypeDelete.process b/Resources/WSDL/SoapDeleteAuthor.process similarity index 68% rename from Resources/WSDL/PortTypeDelete.process rename to Resources/WSDL/SoapDeleteAuthor.process index c9c6280..91125de 100644 --- a/Resources/WSDL/PortTypeDelete.process +++ b/Resources/WSDL/SoapDeleteAuthor.process @@ -1,7 +1,7 @@ - + - Resources/WSDL/PortTypeDelete.process + Resources/WSDL/SoapDeleteAuthor.process Start 150 @@ -10,7 +10,7 @@ - + @@ -30,7 +30,7 @@ 290 66 - /Processes/xml/XMLDELETE.process + /Processes/xml/author/XmlDELETE.process @@ -40,16 +40,31 @@ - - com.tibco.plugin.waitnotify.WaitActivity - ae.activities.waitActivity - 393 - 66 + + com.tibco.pe.core.CatchActivity + ae.activities.catch + 229 + 177 + true - /Resources/configurations/Notify Configuration.sharednotify + true + + + + + com.tibco.pe.core.GenerateErrorActivity + ae.activities.throw + 420 + 175 + + - + + + + + @@ -61,16 +76,16 @@ XMLDELETE - Wait - Default - -16777216 - always - - - Wait End Default -16777216 always + + Catch + Generate Error + Default + -16777216 + always + \ No newline at end of file diff --git a/Resources/WSDL/SoapGetAuthor.process b/Resources/WSDL/SoapGetAuthor.process new file mode 100644 index 0000000..88d1420 --- /dev/null +++ b/Resources/WSDL/SoapGetAuthor.process @@ -0,0 +1,92 @@ + + + + + + + Resources/WSDL/SoapGetAuthor.process + Start + + 111 + 64 + + + + + + + + End + + 539 + 66 + + + + + http://xmlns.example.com/1721743176122 + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 281 + 65 + + /Processes/xml/author/XmlGET.process + + + + + + + + + + + com.tibco.pe.core.CatchActivity + ae.activities.catch + 225 + 232 + true + + true + + + + + com.tibco.pe.core.GenerateErrorActivity + ae.activities.throw + 401 + 231 + + + + + + + + + + + + + Start + XMLGET + Default + -16777216 + always + + + XMLGET + End + Default + -16777216 + always + + + Catch + Generate Error + Default + -16777216 + always + + \ No newline at end of file diff --git a/Resources/WSDL/PortTypePost.process b/Resources/WSDL/SoapPostAuthor.process similarity index 76% rename from Resources/WSDL/PortTypePost.process rename to Resources/WSDL/SoapPostAuthor.process index 743d22a..3bf7729 100644 --- a/Resources/WSDL/PortTypePost.process +++ b/Resources/WSDL/SoapPostAuthor.process @@ -1,7 +1,7 @@ - Resources/WSDL/PortTypePost.process + Resources/WSDL/SoapPostAuthor.process Start 146 @@ -10,7 +10,7 @@ - + @@ -30,7 +30,7 @@ 276 70 - /Processes/xml/XMLPOST.process + /Processes/xml/author/XmlPOST.process @@ -63,16 +63,31 @@ - - com.tibco.plugin.waitnotify.WaitActivity - ae.activities.waitActivity - 403 - 70 + + com.tibco.pe.core.CatchActivity + ae.activities.catch + 295 + 256 + true - /Resources/configurations/Notify Configuration.sharednotify + true + + + + + com.tibco.pe.core.GenerateErrorActivity + ae.activities.throw + 445 + 258 + + - + + + + + @@ -84,16 +99,16 @@ XMLPOST - Wait - Default - -16777216 - always - - - Wait End Default -16777216 always + + Catch + Generate Error + Default + -16777216 + always + \ No newline at end of file diff --git a/Resources/WSDL/PortTypePut.process b/Resources/WSDL/SoapPutAuthor.process similarity index 75% rename from Resources/WSDL/PortTypePut.process rename to Resources/WSDL/SoapPutAuthor.process index e6eeef2..56b4fd4 100644 --- a/Resources/WSDL/PortTypePut.process +++ b/Resources/WSDL/SoapPutAuthor.process @@ -1,7 +1,7 @@ - + - Resources/WSDL/PortTypePut.process + Resources/WSDL/SoapPutAuthor.process Start 150 @@ -10,7 +10,7 @@ - + @@ -27,10 +27,10 @@ com.tibco.pe.core.CallProcessActivity ae.process.subprocess - 243 - 60 + 252 + 65 - /Processes/xml/XMLPUT.process + /Processes/xml/author/XmlPUT.process @@ -63,16 +63,31 @@ - - com.tibco.plugin.waitnotify.WaitActivity - ae.activities.waitActivity - 347 - 66 + + com.tibco.pe.core.CatchActivity + ae.activities.catch + 194 + 201 + true - /Resources/configurations/Notify Configuration.sharednotify + true + + + + + com.tibco.pe.core.GenerateErrorActivity + ae.activities.throw + 337 + 204 + + - + + + + + @@ -84,16 +99,16 @@ XMLPUT - Wait - Default - -16777216 - always - - - Wait End Default -16777216 always + + Catch + Generate Error + Default + -16777216 + always + \ No newline at end of file diff --git a/Resources/WSDL/WSDL-service8.serviceagent b/Resources/WSDL/WSDL-service8.serviceagent index 3aab45a..adc8aa4 100644 --- a/Resources/WSDL/WSDL-service8.serviceagent +++ b/Resources/WSDL/WSDL-service8.serviceagent @@ -23,10 +23,10 @@ impl - - - - + + + + diff --git a/defaultVars/defaultVars.substvar b/defaultVars/defaultVars.substvar index b5c673d..88a9b03 100644 --- a/defaultVars/defaultVars.substvar +++ b/defaultVars/defaultVars.substvar @@ -131,11 +131,11 @@ processType - xml + sql true false String - 1720104175471 + 1722336781786 \ No newline at end of file