From 392ffd1dd64f208040c783ddaf8afdafa77317ef Mon Sep 17 00:00:00 2001 From: wojciech Date: Wed, 24 Jul 2024 17:04:39 +0200 Subject: [PATCH] current version --- .folder | 35 ++ AESchemas/.folder | 6 + AESchemas/ae.aeschema | 88 +++++ AESchemas/ae/.folder | 7 + AESchemas/ae/baseDocument.aeschema | 224 ++++++++++++ AESchemas/corba.aeschema | 67 ++++ AESchemas/java.aeschema | 40 ++ AESchemas/sql.aeschema | 68 ++++ Processes/.folder | 7 + Processes/rest/.folder | 7 + Processes/rest/rest request.process | 135 +++++++ Processes/sql/.folder | 7 + Processes/sql/SQLDELETE.process | 119 ++++++ Processes/sql/SQLGET.process | 197 ++++++++++ Processes/sql/SQLPOST.process | 167 +++++++++ Processes/sql/SQLPUT.process | 184 ++++++++++ Processes/sql/select operation.process | 78 ++++ Processes/sql/sql.process | 83 +++++ Processes/wsdl/.folder | 7 + Processes/wsdl/Process Definition.process | 74 ++++ Processes/xml/.folder | 7 + Processes/xml/XMLDELETE.process | 186 ++++++++++ Processes/xml/XMLGET.process | 226 ++++++++++++ Processes/xml/XMLPOST.process | 344 ++++++++++++++++++ Processes/xml/XMLPUT.process | 197 ++++++++++ Processes/xml/xml.process | 181 +++++++++ Resources/.folder | 7 + Resources/WSDL/.folder | 7 + Resources/WSDL/PortTypeDelete.process | 76 ++++ Resources/WSDL/PortTypeGet.process | 101 +++++ Resources/WSDL/PortTypePost.process | 99 +++++ Resources/WSDL/PortTypePut.process | 99 +++++ Resources/WSDL/WSDL-service8.serviceagent | 126 +++++++ Resources/WSDL/WSDL.wsdl | 117 ++++++ Resources/WSDL/concrete/.folder | 7 + Resources/WSDL/concrete/author methods.wsdl | 171 +++++++++ ...mment_t4j6BrWQGq9zFoRgTesIY5sxMQphuqo5.jpg | Bin 0 -> 5228 bytes Resources/configurations/.folder | 7 + .../configurations/HTTP Connection.sharedhttp | 45 +++ .../configurations/JDBC Connection.sharedjdbc | 13 + .../Notify Configuration.sharednotify | 22 ++ Resources/databases/.folder | 7 + Resources/databases/database.db | Bin 0 -> 20480 bytes Resources/databases/databaseXML.xml | 40 ++ Resources/schemas/.folder | 7 + Resources/schemas/deleteRequest.xsd | 16 + Resources/schemas/deleteResponse.xsd | 16 + Resources/schemas/errorSchema.xsd | 16 + Resources/schemas/getRequest.xsd | 16 + Resources/schemas/getResponse.xsd | 36 ++ Resources/schemas/postRequest.xsd | 36 ++ Resources/schemas/postResponse.xsd | 16 + Resources/schemas/putRequest.xsd | 35 ++ Resources/schemas/putResponse.xsd | 16 + Resources/xslt transformers/.folder | 7 + Resources/xslt transformers/XSLT File.xslt | 31 ++ Resources/xslt transformers/xsltDelete.xslt | 16 + databaseXML.xml | 46 +++ defaultVars/defaultVars.substvar | 141 +++++++ vcrepo.dat | 12 + 60 files changed, 4148 insertions(+) create mode 100644 .folder create mode 100644 AESchemas/.folder create mode 100644 AESchemas/ae.aeschema create mode 100644 AESchemas/ae/.folder create mode 100644 AESchemas/ae/baseDocument.aeschema create mode 100644 AESchemas/corba.aeschema create mode 100644 AESchemas/java.aeschema create mode 100644 AESchemas/sql.aeschema create mode 100644 Processes/.folder create mode 100644 Processes/rest/.folder create mode 100644 Processes/rest/rest request.process create mode 100644 Processes/sql/.folder create mode 100644 Processes/sql/SQLDELETE.process create mode 100644 Processes/sql/SQLGET.process create mode 100644 Processes/sql/SQLPOST.process create mode 100644 Processes/sql/SQLPUT.process create mode 100644 Processes/sql/select operation.process create mode 100644 Processes/sql/sql.process create mode 100644 Processes/wsdl/.folder create mode 100644 Processes/wsdl/Process Definition.process create mode 100644 Processes/xml/.folder create mode 100644 Processes/xml/XMLDELETE.process create mode 100644 Processes/xml/XMLGET.process create mode 100644 Processes/xml/XMLPOST.process create mode 100644 Processes/xml/XMLPUT.process create mode 100644 Processes/xml/xml.process create mode 100644 Resources/.folder create mode 100644 Resources/WSDL/.folder create mode 100644 Resources/WSDL/PortTypeDelete.process create mode 100644 Resources/WSDL/PortTypeGet.process create mode 100644 Resources/WSDL/PortTypePost.process create mode 100644 Resources/WSDL/PortTypePut.process create mode 100644 Resources/WSDL/WSDL-service8.serviceagent create mode 100644 Resources/WSDL/WSDL.wsdl create mode 100644 Resources/WSDL/concrete/.folder create mode 100644 Resources/WSDL/concrete/author methods.wsdl create mode 100644 Resources/WSDL/concrete/comment_t4j6BrWQGq9zFoRgTesIY5sxMQphuqo5.jpg create mode 100644 Resources/configurations/.folder create mode 100644 Resources/configurations/HTTP Connection.sharedhttp create mode 100644 Resources/configurations/JDBC Connection.sharedjdbc create mode 100644 Resources/configurations/Notify Configuration.sharednotify create mode 100644 Resources/databases/.folder create mode 100644 Resources/databases/database.db create mode 100644 Resources/databases/databaseXML.xml create mode 100644 Resources/schemas/.folder create mode 100644 Resources/schemas/deleteRequest.xsd create mode 100644 Resources/schemas/deleteResponse.xsd create mode 100644 Resources/schemas/errorSchema.xsd create mode 100644 Resources/schemas/getRequest.xsd create mode 100644 Resources/schemas/getResponse.xsd create mode 100644 Resources/schemas/postRequest.xsd create mode 100644 Resources/schemas/postResponse.xsd create mode 100644 Resources/schemas/putRequest.xsd create mode 100644 Resources/schemas/putResponse.xsd create mode 100644 Resources/xslt transformers/.folder create mode 100644 Resources/xslt transformers/XSLT File.xslt create mode 100644 Resources/xslt transformers/xsltDelete.xslt create mode 100644 databaseXML.xml create mode 100644 defaultVars/defaultVars.substvar create mode 100644 vcrepo.dat diff --git a/.folder b/.folder new file mode 100644 index 0000000..1919e68 --- /dev/null +++ b/.folder @@ -0,0 +1,35 @@ + + + + AESchemas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/AESchemas/.folder b/AESchemas/.folder new file mode 100644 index 0000000..94d4559 --- /dev/null +++ b/AESchemas/.folder @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AESchemas/ae.aeschema b/AESchemas/ae.aeschema new file mode 100644 index 0000000..6e7cbc6 --- /dev/null +++ b/AESchemas/ae.aeschema @@ -0,0 +1,88 @@ + + + + any + + + assocList + + + binary + java.lang.Byte[] + + + boolean + java.lang.Boolean + + + char + java.lang.Character + + + date + java.util.Date + + + dateTime + java.util.Date + + + i1 + java.lang.Byte + + + i2 + java.lang.Short + + + i4 + java.lang.Integer + + + i8 + java.lang.Long + + + interval + + + r4 + java.lang.Float + + + r8 + java.lang.Double + + + string + java.lang.String + + + time + java.util.Date + + + ui1 + java.lang.Short + + + ui2 + java.lang.Integer + + + ui4 + java.lang.Long + + + ui8 + java.lang.Long + + + void + + + + + + + \ No newline at end of file diff --git a/AESchemas/ae/.folder b/AESchemas/ae/.folder new file mode 100644 index 0000000..8f74773 --- /dev/null +++ b/AESchemas/ae/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/AESchemas/ae/baseDocument.aeschema b/AESchemas/ae/baseDocument.aeschema new file mode 100644 index 0000000..bfeff77 --- /dev/null +++ b/AESchemas/ae/baseDocument.aeschema @@ -0,0 +1,224 @@ + + + + /AESchemas/ae/baseDocument.aeschema#class.baseBusinessDocument + + true + true + DataSection + /AESchemas/ae/baseDocument.aeschema#sequence.sequence[MDataSection] + + + + + true + true + VerbCode + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + Data + /AESchemas/ae.aeschema#scalar.any + + + + /AESchemas/ae/baseDocument.aeschema#class.baseAdvisoryDocument + + true + true + Data + /AESchemas/ae.aeschema#scalar.any + + + + + true + true + ApplicationInstanceId + /AESchemas/ae.aeschema#scalar.string + + + true + true + ReferenceId + /AESchemas/ae.aeschema#scalar.string + + + true + true + Description + /AESchemas/ae.aeschema#scalar.string + + + true + true + Class + /AESchemas/ae.aeschema#scalar.string + + + true + true + Severity + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + DateTimeStamp + /AESchemas/ae.aeschema#scalar.dateTime + + + true + true + Subject + /AESchemas/ae.aeschema#scalar.string + + + true + true + Name + /AESchemas/ae.aeschema#scalar.string + + + true + true + ApplicationContext + /AESchemas/ae.aeschema#scalar.any + + + true + true + Version + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + Analysis + /AESchemas/ae.aeschema#scalar.string + + + true + true + ApplicationId + /AESchemas/ae.aeschema#scalar.string + + + + /AESchemas/ae/baseDocument.aeschema#class.baseAdvisoryDocument + + true + true + Data + /AESchemas/ae.aeschema#scalar.any + + + + + true + true + VerbCode + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + ApplicationInstanceId + /AESchemas/ae.aeschema#scalar.string + + + true + true + ReferenceId + /AESchemas/ae.aeschema#scalar.string + + + true + true + Encrypted + /AESchemas/ae.aeschema#scalar.boolean + + + true + true + DateTimeStamp + /AESchemas/ae.aeschema#scalar.dateTime + + + true + true + ReplyAddress + /AESchemas/ae.aeschema#scalar.string + + + true + true + LotEnd + /AESchemas/ae.aeschema#scalar.boolean + + + true + true + LotId + /AESchemas/ae.aeschema#scalar.string + + + true + true + ConfirmCode + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + ComponentId + /AESchemas/ae.aeschema#scalar.string + + + true + true + Name + /AESchemas/ae.aeschema#scalar.string + + + true + true + ApplicationContext + /AESchemas/ae.aeschema#scalar.any + + + true + true + Version + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + LotItem + /AESchemas/ae.aeschema#scalar.i4 + + + true + true + ErrorAddress + /AESchemas/ae.aeschema#scalar.string + + + true + true + ApplicationId + /AESchemas/ae.aeschema#scalar.string + + + + /AESchemas/ae/baseDocument.aeschema#class.MDataSection + + + + + + + \ No newline at end of file diff --git a/AESchemas/corba.aeschema b/AESchemas/corba.aeschema new file mode 100644 index 0000000..de303a2 --- /dev/null +++ b/AESchemas/corba.aeschema @@ -0,0 +1,67 @@ + + + + any + + + boolean + java.lang.Boolean + + + char + java.lang.Character + + + double + java.lang.Double + + + float + java.lang.Float + + + long + java.lang.Integer + + + longlong + java.lang.Long + + + octet + java.lang.Byte + + + short + java.lang.Short + + + string + java.lang.String + + + ulong + java.lang.Long + + + ulonglong + java.lang.Long + + + ushort + java.lang.Integer + + + wchar + java.lang.Character + + + wstring + java.lang.String + + + + + + + \ No newline at end of file diff --git a/AESchemas/java.aeschema b/AESchemas/java.aeschema new file mode 100644 index 0000000..f312d5b --- /dev/null +++ b/AESchemas/java.aeschema @@ -0,0 +1,40 @@ + + + + boolean + java.lang.Boolean + + + char + java.lang.Character + + + double + java.lang.Double + + + float + java.lang.Float + + + int + java.lang.Integer + + + long + java.lang.Long + + + short + java.lang.Short + + + string + java.lang.String + + + + + + + \ No newline at end of file diff --git a/AESchemas/sql.aeschema b/AESchemas/sql.aeschema new file mode 100644 index 0000000..94c1055 --- /dev/null +++ b/AESchemas/sql.aeschema @@ -0,0 +1,68 @@ + + + + BIGINT + java.lang.Long + + + BIT + java.lang.Boolean + + + DATE + java.sql.Date + + + DOUBLE PRECISION + java.lang.Double + + + FLOAT + java.lang.Float + + + INTEGER + java.lang.Integer + + + LONGVARBINARY + java.lang.Byte[] + + + LONGVARCHAR + java.lang.String + + + REAL + java.lang.Float + + + SMALLINT + java.lang.Short + + + TIME + java.sql.Time + + + TIMESTAMP + java.sql.Timestamp + + + TINYINT + java.lang.Short + + + VARBINARY + java.lang.Byte[] + + + VARCHAR + java.lang.String + + + + + + + \ No newline at end of file diff --git a/Processes/.folder b/Processes/.folder new file mode 100644 index 0000000..90bb37a --- /dev/null +++ b/Processes/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Processes/rest/.folder b/Processes/rest/.folder new file mode 100644 index 0000000..feec22c --- /dev/null +++ b/Processes/rest/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Processes/rest/rest request.process b/Processes/rest/rest request.process new file mode 100644 index 0000000..0f12e20 --- /dev/null +++ b/Processes/rest/rest request.process @@ -0,0 +1,135 @@ + + + Processes/rest/rest request.process + HTTP Receiver + 0 + 0 + + + com.tibco.plugin.http.HTTPEventSource + httppalette.httpEventSource + 168 + 256 + + String + ISO8859_1 + 5.3.0 + true + /Resources/configurations/HTTP Connection.sharedhttp + + + + + + + + + + + + + + + + + + + + End + 780 + 259 + + + http://xmlns.example.com/1719474540368 + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 348 + 263 + + /Processes/sql/sql.process + if ($_globalVariables/pfx:GlobalVariables/processType='sql') then '/Processes/sql.process' else '/Processes/xml.process' + false + + + + + + + + + + + + + + com.tibco.plugin.http.HTTPResponseActivity + httppalette.httpWebResponse + 660 + 260 + + true + HTTP Receiver + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.WaitActivity + ae.activities.waitActivity + 515 + 259 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + HTTP Receiver + select database type + Default + -16777216 + always + + + Send HTTP Response + End + Default + -16777216 + always + + + select database type + Wait + Default + -16777216 + always + + + Wait + Send HTTP Response + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/sql/.folder b/Processes/sql/.folder new file mode 100644 index 0000000..5e8f7f9 --- /dev/null +++ b/Processes/sql/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Processes/sql/SQLDELETE.process b/Processes/sql/SQLDELETE.process new file mode 100644 index 0000000..f20c196 --- /dev/null +++ b/Processes/sql/SQLDELETE.process @@ -0,0 +1,119 @@ + + + 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 new file mode 100644 index 0000000..2114d53 --- /dev/null +++ b/Processes/sql/SQLGET.process @@ -0,0 +1,197 @@ + + + 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 new file mode 100644 index 0000000..ca958fa --- /dev/null +++ b/Processes/sql/SQLPOST.process @@ -0,0 +1,167 @@ + + + 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 new file mode 100644 index 0000000..7295d28 --- /dev/null +++ b/Processes/sql/SQLPUT.process @@ -0,0 +1,184 @@ + + + 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/select operation.process b/Processes/sql/select operation.process new file mode 100644 index 0000000..1f41292 --- /dev/null +++ b/Processes/sql/select operation.process @@ -0,0 +1,78 @@ + + + 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/sql/sql.process b/Processes/sql/sql.process new file mode 100644 index 0000000..5ed3dff --- /dev/null +++ b/Processes/sql/sql.process @@ -0,0 +1,83 @@ + + + Processes/sql/sql.process + Start + + + + + + + + + + + 54 + 121 + + End + 828 + 111 + + + http://xmlns.example.com/1719483377637 + + com.tibco.plugin.jdbc.JDBCGeneralActivity + ae.activities.JDBCGeneralActivity + 275 + 126 + + 10 + false + 100 + /Resources/configurations/JDBC Connection.sharedjdbc + + + + + + + + + + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 468 + 110 + + /Processes/sql/select operation.process + + + + + + + + + + + + + + Start + initialize database + Default + -16777216 + always + + + initialize database + select operation + Default + -16777216 + always + + + select operation + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/wsdl/.folder b/Processes/wsdl/.folder new file mode 100644 index 0000000..6f9e1ff --- /dev/null +++ b/Processes/wsdl/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Processes/wsdl/Process Definition.process b/Processes/wsdl/Process Definition.process new file mode 100644 index 0000000..a983656 --- /dev/null +++ b/Processes/wsdl/Process Definition.process @@ -0,0 +1,74 @@ + + + + Processes/wsdl/Process Definition.process + SOAPEventSource + 0 + 0 + + + com.tibco.plugin.soap.SOAPEventSource + ae.activities.SOAPEventSourceUI + 113 + 84 + + pfx:PortType + http://xmlns.example.com/1721743175984/DeleteImpl + Delete + + document + literal + true + true + /Processes/wsdl/Process%20Definition + /Resources/configurations/HTTP Connection.sharedhttp + SOAP 1.2 + + + + End + 450 + 64 + + + http://xmlns.example.com/1721820974742 + + com.tibco.plugin.soap.SOAPSendFaultActivity + ae.activities.SOAPSendFaultUI + 274 + 99 + + <Default> + SOAPEventSource + + + 2 + + + + + + + + + + + + + + + + SOAPEventSource + SOAPSendFault + Default + -16777216 + always + + + SOAPSendFault + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/xml/.folder b/Processes/xml/.folder new file mode 100644 index 0000000..41ea8a4 --- /dev/null +++ b/Processes/xml/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Processes/xml/XMLDELETE.process b/Processes/xml/XMLDELETE.process new file mode 100644 index 0000000..c6ab9d0 --- /dev/null +++ b/Processes/xml/XMLDELETE.process @@ -0,0 +1,186 @@ + + + Processes/xml/XMLDELETE.process + Start + + + + + + + + + + 149 + 258 + + + + + + + + + + + + + + + + + + + + End + 1414 + 260 + + + http://xmlns.example.com/1719483544323 + + com.tibco.plugin.xml.XMLTransformActivity + ae.activities.XMLTransformActivity + 673 + 260 + + binary + TibcoXML + /Resources/xslt transformers/xsltDelete.xslt + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.file.FileReadActivity + ae.activities.FileReadActivity + 394 + 259 + + binary + + + + + + + + + + + com.tibco.plugin.file.FileWriteActivity + ae.activities.FileWriteActivity + 956 + 258 + + binary + None + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.NotifyActivity + ae.activities.notifyActivity + 1236 + 258 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + + + + + + + com.tibco.pe.core.GenerateErrorActivity + ae.activities.throw + 664 + 114 + + + + + + + + + + + + + Transform XML + Write File + is file shorter + Default + -16777216 + xpath + string-length($Read-File/ns2:ReadActivityOutputBinaryClass/fileContent/binaryContent)>string-length($Transform-XML/xmlBytes/xmlOutput) + + + Read File + Transform XML + Default + -16777216 + always + + + Write File + Notify + Default + -16777216 + always + + + Notify + End + Default + -16777216 + always + + + Start + Read File + Default + -16777216 + always + + + Transform XML + Generate Error + file is not changed + Default + -16777216 + xpath + string-length($Read-File/ns2:ReadActivityOutputBinaryClass/fileContent/binaryContent)<=string-length($Transform-XML/xmlBytes/xmlOutput) + + \ No newline at end of file diff --git a/Processes/xml/XMLGET.process b/Processes/xml/XMLGET.process new file mode 100644 index 0000000..c2b7197 --- /dev/null +++ b/Processes/xml/XMLGET.process @@ -0,0 +1,226 @@ + + + + Processes/xml/XMLGET.process + Start + + + + + + + + + + 125 + 76 + + End + 1051 + 75 + + + http://xmlns.example.com/1719920186128 + + com.tibco.plugin.xml.XMLParseActivity + ae.activities.XMLParseActivity + 507 + 79 + + text + default + true + + + + + + + + + + + + + + + + + + com.tibco.plugin.file.FileReadActivity + ae.activities.FileReadActivity + 330 + 78 + + text + + + + + + + + + + + com.tibco.plugin.mapper.MapperActivity + ae.activities.MapperActivity + 706 + 83 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.NotifyActivity + ae.activities.notifyActivity + 888 + 81 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.pe.core.GenerateErrorActivity + ae.activities.throw + 705 + 277 + + + + + + + + + + + + + Parse XML + Map-Data-2 + Default + -16777216 + always + + + Notify + End + Default + -16777216 + always + + + Map-Data-2 + Notify + author exist + Default + -16777216 + xpath + boolean($Map-Data-2/root/author) + + + Read File + Parse XML + Default + -16777216 + always + + + Start + Read File + Default + -16777216 + always + + + Map-Data-2 + Generate Error + author does not exist + Default + -16777216 + xpath + not(boolean($Map-Data-2/root/author)) + + \ No newline at end of file diff --git a/Processes/xml/XMLPOST.process b/Processes/xml/XMLPOST.process new file mode 100644 index 0000000..2e1207e --- /dev/null +++ b/Processes/xml/XMLPOST.process @@ -0,0 +1,344 @@ + + + + Processes/xml/XMLPOST.process + Start + + + + + + + + + + 51 + 212 + + End + 1496 + 206 + + + http://xmlns.example.com/1719920186128 + + com.tibco.plugin.file.FileWriteActivity + ae.activities.FileWriteActivity + 1060 + 79 + + text + None + true + + + + + + + + + + + + + + com.tibco.plugin.xml.XMLRendererActivity + ae.activities.XMLRendererActivity + 531 + 86 + + text + true + false + UTF-8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.file.FileReadActivity + ae.activities.FileReadActivity + 303 + 211 + + text + + + + + + + + + + + com.tibco.plugin.mapper.MapperActivity + ae.activities.MapperActivity + 522 + 337 + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.xml.XMLRendererActivity + ae.activities.XMLRendererActivity + 687 + 336 + + text + true + false + UTF-8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.mapper.MapperActivity + ae.activities.MapperActivity + 815 + 349 + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.mapper.MapperActivity + ae.activities.MapperActivity + 986 + 334 + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.file.FileWriteActivity + ae.activities.FileWriteActivity + 1117 + 336 + + text + None + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.NotifyActivity + ae.activities.notifyActivity + 1305 + 203 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + + + + + + + Read File + Render-authors + file is empty + Default + -16777216 + xpath + string-length($Read-File/ns:ReadActivityOutputTextClass/fileContent/textContent)=0 + + + Render-authors + Write File + Default + -16777216 + always + + + Read File + remove closing tag + otherwise + Default + -16777216 + xpath + string-length($Read-File/ns:ReadActivityOutputTextClass/fileContent/textContent)>0 + + + remove closing tag + Render-author + Default + -16777216 + always + + + Render-author + remove configuration at the beggining + Default + -16777216 + always + + + remove configuration at the beggining + concat + Default + -16777216 + always + + + concat + Write-File-1 + Default + -16777216 + always + + + Write File + Notify + Default + -16777216 + always + + + Write-File-1 + Notify + Default + -16777216 + always + + + Notify + End + Default + -16777216 + always + + + Start + Read File + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/xml/XMLPUT.process b/Processes/xml/XMLPUT.process new file mode 100644 index 0000000..89fb40a --- /dev/null +++ b/Processes/xml/XMLPUT.process @@ -0,0 +1,197 @@ + + + + Processes/xml/XMLPUT.process + Start + + + + + + + + + + 35 + 148 + + End + 848 + 151 + + + http://xmlns.example.com/1719920186128 + + com.tibco.plugin.xml.XMLTransformActivity + ae.activities.XMLTransformActivity + 422 + 151 + + binary + TibcoXML + /Resources/xslt transformers/XSLT File.xslt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.file.FileReadActivity + ae.activities.FileReadActivity + 239 + 148 + + binary + + + + + + + + + + + com.tibco.plugin.file.FileWriteActivity + ae.activities.FileWriteActivity + 613 + 152 + + binary + None + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.NotifyActivity + ae.activities.notifyActivity + 729 + 151 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + + + + + + + Read-File-1 + Transform-XML-1 + Default + -16777216 + always + + + Transform-XML-1 + Write-File-1 + Default + -16777216 + always + + + Write-File-1 + Notify + Default + -16777216 + always + + + Notify + End + Default + -16777216 + always + + + Start + Read-File-1 + Default + -16777216 + always + + \ No newline at end of file diff --git a/Processes/xml/xml.process b/Processes/xml/xml.process new file mode 100644 index 0000000..8941294 --- /dev/null +++ b/Processes/xml/xml.process @@ -0,0 +1,181 @@ + + + Processes/xml/xml.process + Start + + + + + + + + + + + 67 + 77 + + End + 732 + 85 + + + 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') + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.mapper.MapperActivity + ae.activities.MapperActivity + 267 + 73 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.pe.core.WriteToLogActivity + ae.activities.log + 156 + 73 + + User + + + + + + + + + + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 539 + 148 + + /Processes/xml/XMLGET.process + concat('/Processes/xml/XML',$Start/root/method ,'.process') + + + + + + + + + + + XMLPOST + End + Default + -16777216 + always + + + Map Data + XMLPOST + post or put + Default + -16777216 + xpath + $Start/root/method = 'POST' or $Start/root/method = 'PUT' + + + Start + Log + Default + -16777216 + always + + + Log + Map Data + Default + -16777216 + always + + + Map Data + get or delete + get or delete + Default + -16777216 + xpath + $Start/root/method = 'DELETE' or $Start/root/method = 'GET' + + + get or delete + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Resources/.folder b/Resources/.folder new file mode 100644 index 0000000..b51d3f7 --- /dev/null +++ b/Resources/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/WSDL/.folder b/Resources/WSDL/.folder new file mode 100644 index 0000000..460dd20 --- /dev/null +++ b/Resources/WSDL/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/WSDL/PortTypeDelete.process b/Resources/WSDL/PortTypeDelete.process new file mode 100644 index 0000000..c9c6280 --- /dev/null +++ b/Resources/WSDL/PortTypeDelete.process @@ -0,0 +1,76 @@ + + + + Resources/WSDL/PortTypeDelete.process + Start + + 150 + 65 + + + + + + + + + + End + + 486 + 65 + + + + + http://xmlns.example.com/1721743176236 + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 290 + 66 + + /Processes/xml/XMLDELETE.process + + + + + + + + + + + com.tibco.plugin.waitnotify.WaitActivity + ae.activities.waitActivity + 393 + 66 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + Start + XMLDELETE + Default + -16777216 + always + + + XMLDELETE + Wait + Default + -16777216 + always + + + Wait + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Resources/WSDL/PortTypeGet.process b/Resources/WSDL/PortTypeGet.process new file mode 100644 index 0000000..ba720ec --- /dev/null +++ b/Resources/WSDL/PortTypeGet.process @@ -0,0 +1,101 @@ + + + + + + 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 + + + + + + + XMLGET + Wait + Default + -16777216 + always + + + Wait + End + Default + -16777216 + always + + + Start + XMLGET + Default + -16777216 + always + + \ No newline at end of file diff --git a/Resources/WSDL/PortTypePost.process b/Resources/WSDL/PortTypePost.process new file mode 100644 index 0000000..743d22a --- /dev/null +++ b/Resources/WSDL/PortTypePost.process @@ -0,0 +1,99 @@ + + + + Resources/WSDL/PortTypePost.process + Start + + 146 + 71 + + + + + + + + + + End + + 529 + 73 + + + + + http://xmlns.example.com/1721743175988 + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 276 + 70 + + /Processes/xml/XMLPOST.process + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.WaitActivity + ae.activities.waitActivity + 403 + 70 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + Start + XMLPOST + Default + -16777216 + always + + + XMLPOST + Wait + Default + -16777216 + always + + + Wait + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Resources/WSDL/PortTypePut.process b/Resources/WSDL/PortTypePut.process new file mode 100644 index 0000000..e6eeef2 --- /dev/null +++ b/Resources/WSDL/PortTypePut.process @@ -0,0 +1,99 @@ + + + + Resources/WSDL/PortTypePut.process + Start + + 150 + 65 + + + + + + + + + + End + + 450 + 65 + + + + + http://xmlns.example.com/1721743176182 + + com.tibco.pe.core.CallProcessActivity + ae.process.subprocess + 243 + 60 + + /Processes/xml/XMLPUT.process + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.tibco.plugin.waitnotify.WaitActivity + ae.activities.waitActivity + 347 + 66 + + /Resources/configurations/Notify Configuration.sharednotify + + + + + + + Start + XMLPUT + Default + -16777216 + always + + + XMLPUT + Wait + Default + -16777216 + always + + + Wait + End + Default + -16777216 + always + + \ No newline at end of file diff --git a/Resources/WSDL/WSDL-service8.serviceagent b/Resources/WSDL/WSDL-service8.serviceagent new file mode 100644 index 0000000..6b72183 --- /dev/null +++ b/Resources/WSDL/WSDL-service8.serviceagent @@ -0,0 +1,126 @@ + + + + + + com.tibco.bw.service.serviceAgent.ServiceServiceAgent + WSDL-service8 + service.definition + bw + + + + + + PortType + bw + + + + + service.definition.impl.tab.label + impl + + + + + + + + + + + service.definition.ep.tab.label + ep + + + + + + + soap.service.transport.ui.transport.tab.label + transport + + /Resources/configurations/HTTP Connection.sharedhttp + + + false + /Resources/WSDL/WSDL-service8.serviceagent/PortTypeEndpoint8 + + + + + + soap.service.transport.ui.details.tab.label + details + + document + SOAP 1.1 + + + + + /Resources/WSDL/WSDL-service8.serviceagent/PortTypeEndpoint8/Post + + literal + + + + + + + + + + + /Resources/WSDL/WSDL-service8.serviceagent/PortTypeEndpoint8/Get + + literal + + + + + + + + + + + /Resources/WSDL/WSDL-service8.serviceagent/PortTypeEndpoint8/Put + + literal + + + + + + + + + + + /Resources/WSDL/WSDL-service8.serviceagent/PortTypeEndpoint8/Delete + + literal + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/WSDL/WSDL.wsdl b/Resources/WSDL/WSDL.wsdl new file mode 100644 index 0000000..410f0a6 --- /dev/null +++ b/Resources/WSDL/WSDL.wsdl @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/WSDL/concrete/.folder b/Resources/WSDL/concrete/.folder new file mode 100644 index 0000000..72c60c6 --- /dev/null +++ b/Resources/WSDL/concrete/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/WSDL/concrete/author methods.wsdl b/Resources/WSDL/concrete/author methods.wsdl new file mode 100644 index 0000000..c7447c0 --- /dev/null +++ b/Resources/WSDL/concrete/author methods.wsdl @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/WSDL/concrete/comment_t4j6BrWQGq9zFoRgTesIY5sxMQphuqo5.jpg b/Resources/WSDL/concrete/comment_t4j6BrWQGq9zFoRgTesIY5sxMQphuqo5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02256b58679cb15e10e62957b88204eae533d1ab GIT binary patch literal 5228 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 ew>N7c$u=uq + + + + + + \ No newline at end of file diff --git a/Resources/configurations/HTTP Connection.sharedhttp b/Resources/configurations/HTTP Connection.sharedhttp new file mode 100644 index 0000000..b999c85 --- /dev/null +++ b/Resources/configurations/HTTP Connection.sharedhttp @@ -0,0 +1,45 @@ + + + + localhost + Tomcat + + + maxPostSize (bytes) + + 2097152 + + + maxSavePostSize (bytes) + + 4096 + + + uriEncoding + + + + + acceptCount + + + + + compressableMimeType + + text/html,text/xml,text/plain + + + compression + + off + + + connectionTimeOut (ms) + + 60000 + + + 8888 + + \ No newline at end of file diff --git a/Resources/configurations/JDBC Connection.sharedjdbc b/Resources/configurations/JDBC Connection.sharedjdbc new file mode 100644 index 0000000..0c3af69 --- /dev/null +++ b/Resources/configurations/JDBC Connection.sharedjdbc @@ -0,0 +1,13 @@ + + + JDBC Connection + ae.shared.JDBCSharedResource + + org.sqlite.JDBC + 10 + 0 + JDBC + false + jdbc:sqlite:/tibco/designer/5.12/projects/httpRequest/database.db + + \ No newline at end of file diff --git a/Resources/configurations/Notify Configuration.sharednotify b/Resources/configurations/Notify Configuration.sharednotify new file mode 100644 index 0000000..cfbbb48 --- /dev/null +++ b/Resources/configurations/Notify Configuration.sharednotify @@ -0,0 +1,22 @@ + + + Notify Configuration + ae.shared.notifySharedConfig + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/databases/.folder b/Resources/databases/.folder new file mode 100644 index 0000000..7ec5027 --- /dev/null +++ b/Resources/databases/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/databases/database.db b/Resources/databases/database.db new file mode 100644 index 0000000000000000000000000000000000000000..c967bbf9c28f7918e09e462356e0f22c3fc52b21 GIT binary patch literal 20480 zcmeI&!A`<37{KvPnVtq-l8P6#@t#fB*srAbu>_%s z6W=$Lmx)>M?&V4RQJFlBud{n^Htg(O@{|mQNq=B|i)U$tp|9QGyQ^%PM0^x48O#U) z1Q0*~0R#|0009ILKmY**3MY{7<>!0+6a)}J009ILKmY**5I_I{1P~~oKz^v-9Qvmq zfB*srAb;KAUfhWn-5I_I{1Q0*~0R#|0009IL_?H5cRsUq> EU)Wh)ZU6uP literal 0 HcmV?d00001 diff --git a/Resources/databases/databaseXML.xml b/Resources/databases/databaseXML.xml new file mode 100644 index 0000000..a6e415b --- /dev/null +++ b/Resources/databases/databaseXML.xml @@ -0,0 +1,40 @@ + + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + + 69 + 69 + 69 + 1999-01-01 + 1999-01-01 + + \ No newline at end of file diff --git a/Resources/schemas/.folder b/Resources/schemas/.folder new file mode 100644 index 0000000..8950bc0 --- /dev/null +++ b/Resources/schemas/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/deleteRequest.xsd b/Resources/schemas/deleteRequest.xsd new file mode 100644 index 0000000..7b5e7df --- /dev/null +++ b/Resources/schemas/deleteRequest.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/deleteResponse.xsd b/Resources/schemas/deleteResponse.xsd new file mode 100644 index 0000000..3798609 --- /dev/null +++ b/Resources/schemas/deleteResponse.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/errorSchema.xsd b/Resources/schemas/errorSchema.xsd new file mode 100644 index 0000000..b8505e9 --- /dev/null +++ b/Resources/schemas/errorSchema.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/getRequest.xsd b/Resources/schemas/getRequest.xsd new file mode 100644 index 0000000..c639ba7 --- /dev/null +++ b/Resources/schemas/getRequest.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/getResponse.xsd b/Resources/schemas/getResponse.xsd new file mode 100644 index 0000000..ffec1d5 --- /dev/null +++ b/Resources/schemas/getResponse.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/postRequest.xsd b/Resources/schemas/postRequest.xsd new file mode 100644 index 0000000..cca32f0 --- /dev/null +++ b/Resources/schemas/postRequest.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/postResponse.xsd b/Resources/schemas/postResponse.xsd new file mode 100644 index 0000000..3798609 --- /dev/null +++ b/Resources/schemas/postResponse.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/putRequest.xsd b/Resources/schemas/putRequest.xsd new file mode 100644 index 0000000..33149e5 --- /dev/null +++ b/Resources/schemas/putRequest.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/schemas/putResponse.xsd b/Resources/schemas/putResponse.xsd new file mode 100644 index 0000000..3798609 --- /dev/null +++ b/Resources/schemas/putResponse.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/xslt transformers/.folder b/Resources/xslt transformers/.folder new file mode 100644 index 0000000..f93b205 --- /dev/null +++ b/Resources/xslt transformers/.folder @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/xslt transformers/XSLT File.xslt b/Resources/xslt transformers/XSLT File.xslt new file mode 100644 index 0000000..5ff0c81 --- /dev/null +++ b/Resources/xslt transformers/XSLT File.xslt @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/xslt transformers/xsltDelete.xslt b/Resources/xslt transformers/xsltDelete.xslt new file mode 100644 index 0000000..fa55db5 --- /dev/null +++ b/Resources/xslt transformers/xsltDelete.xslt @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/databaseXML.xml b/databaseXML.xml new file mode 100644 index 0000000..09a2a61 --- /dev/null +++ b/databaseXML.xml @@ -0,0 +1,46 @@ + + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + prubva + sfdgsg + 987 + 2000-02-01 + 2000-02-06 + + + czesc + czesc + 12 + 2000-01-01 + 2000-01-01 + + + 69 + 69 + 69 + 1999-01-01 + 1999-01-01 + +69691999-01-011999-01-0169 \ No newline at end of file diff --git a/defaultVars/defaultVars.substvar b/defaultVars/defaultVars.substvar new file mode 100644 index 0000000..b5c673d --- /dev/null +++ b/defaultVars/defaultVars.substvar @@ -0,0 +1,141 @@ + + + + + Deployment + httpRequest + true + false + String + 1719474686795 + + + DirLedger + . + true + false + String + 1719474686802 + + + DirTrace + . + true + false + String + 1719474686783 + + + Domain + domain + true + false + String + 1719474686815 + + + HawkEnabled + false + true + false + String + 1719474686803 + + + JmsProviderUrl + tcp://localhost:7222 + true + false + String + 1719474686786 + + + JmsSslProviderUrl + ssl://localhost:7243 + true + false + String + 1719474686809 + + + RemoteRvDaemon + + true + false + String + 1719474686805 + + + RvDaemon + tcp:7500 + true + false + String + 1719474686793 + + + RvNetwork + + true + false + String + 1719474686813 + + + RvService + 7500 + true + false + String + 1719474686787 + + + RvaHost + localhost + true + false + String + 1719474686807 + + + RvaPort + 7600 + true + false + String + 1719474686797 + + + TIBHawkDaemon + tcp:7474 + true + false + String + 1719474686811 + + + TIBHawkNetwork + + true + false + String + 1719474686798 + + + TIBHawkService + 7474 + true + false + String + 1719474686789 + + + processType + xml + true + false + String + 1720104175471 + + + \ No newline at end of file diff --git a/vcrepo.dat b/vcrepo.dat new file mode 100644 index 0000000..25a8f8d --- /dev/null +++ b/vcrepo.dat @@ -0,0 +1,12 @@ + + + + + + + + + + + +