When developing common modules, you should choose one of four code execution contexts:
Common module type | Naming example | Server call | Server | External connection | Client (Ordinary application) | Client (Managed application) |
---|---|---|---|---|---|---|
Server-side | Common (or CommonServer) | + | + | + | ||
Server-side to call from client | CommonServerCall | + | + | |||
Client-side | CommonClient (or CommonGlobal) | + | + | |||
Client-server | CommonClientServer | + | + | + | + |
- Standard: Rules for creating common modules (RU)