The user interface for each server behavior resides in the Configuration/ServerBehaviors/ServerModelName folder, where ServerModelName is one of the following server types: ASP.NET_Csharp, ASP.NET_VB (Visual Basic), ASP_Js (JavaScript), ASP_Vbs (VBScript), ColdFusion ( MX compatible), JSP, PHP_MySQL, Shared (UltraDev 4 ColdFusion and MX ColdFusion) or UD4-ColdFusion (Ultradev 4-compatible ColdFusion).
Note: A distinction between MX and Ultradev 4 ColdFusion compatibility is required because the document type/server model for ColdFusion has changed since the release of Ultradev 4. For example, a server behavior in MX inserts CFML code that is different from the CFMLthat is inserted by the same server behavior from Ultradev 4.
generates two EDML files when you use the Server Behavior Builder: a group EDML file and a participant EDML file that correspond to the names that you provide in the Server Behavior Builder. The group file defines the relevant participants, which represent code blocks, and the groups define which participants are combined to make an individual server behavior.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117