Tcl 8.5 network programming :: build network-aware applications using Tcl, a powerful dynamic programming language /
Annotation
Gespeichert in:
1. Verfasser: | |
---|---|
Weitere Verfasser: | |
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham, U.K. :
Packt Pub.,
©2010.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Annotation |
Beschreibung: | 1 online resource (viii, 569 pages) : illustrations |
ISBN: | 9781849510967 1849510962 9781849510974 1849510970 |
Internformat
MARC
LEADER | 00000cam a2200000 a 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-ocn702116055 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr cnu---unuuu | ||
008 | 110216s2010 enka o 001 0 eng d | ||
040 | |a N$T |b eng |e pn |c N$T |d E7B |d UMI |d OCLCQ |d COO |d HEBIS |d C6I |d OCLCQ |d DEBSZ |d OCLCQ |d YDXCP |d OCLCQ |d JBG |d AGLDB |d CNNOR |d OCLCQ |d AL5MG |d U3W |d OCLCF |d VTS |d CEF |d INT |d VT2 |d UKMGB |d OCLCQ |d WYU |d OCLCQ |d STF |d UAB |d M8D |d UKAHL |d HS0 |d OCLCQ |d AJS |d OCLCQ |d OCLCO |d OCLCQ |d OCLCO |d OCLCL | ||
016 | 7 | |a 018011899 |2 Uk | |
019 | |a 741519515 | ||
020 | |a 9781849510967 |q (electronic bk.) | ||
020 | |a 1849510962 |q (electronic bk.) | ||
020 | |a 9781849510974 |q (electronic bk.) | ||
020 | |a 1849510970 |q (electronic bk.) | ||
035 | |a (OCoLC)702116055 |z (OCoLC)741519515 | ||
037 | |a CL0500000096 |b Safari Books Online | ||
050 | 4 | |a QA76.9.A25 |b K63 2010eb | |
072 | 7 | |a COM |x 043000 |2 bisacsh | |
072 | 7 | |a COM |x 020000 |2 bisacsh | |
082 | 7 | |a 004.6 |2 22 | |
049 | |a MAIN | ||
100 | 1 | |a Kocjan, Wojciech. | |
245 | 1 | 0 | |a Tcl 8.5 network programming : |b build network-aware applications using Tcl, a powerful dynamic programming language / |c Wojciech Kocjan, Piotr Beltowski. |
246 | 3 | |a Tool Command Language network programming | |
260 | |a Birmingham, U.K. : |b Packt Pub., |c ©2010. | ||
300 | |a 1 online resource (viii, 569 pages) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
588 | 0 | |a Print version record. | |
520 | 8 | |a Annotation |b Tcl (Tool Command Language) is a very powerful and easy to learn dynamic programming language, suitable for a very wide range of uses. Tcl is regarded as one of the best-kept secrets in the software industry. This book gives you a hands-on experience on Tcl, helping you develop network-aware applications using this mature yet evolving language.<br /><br />This book shows you how to create network-aware applications with Tcl language. Packed with practical examples, the book not only takes you through the implementation of network protocols in Tcl, but also key aspects of Tcl programming.<br /><br />The book starts with the basic element of Tcl programming as we take a look at the syntax and fundamental commands of the language. To get us ready for network programming, we look at important Tcl features such as object-oriented programming, accessing files, packaging in TCL, event driven programming, and multithreaded applications. To create standalone single-file executable applications with Tcl we take a look at the Starpack technology, and ensure that we_ll be able to create robust applications with a thorough coverage of troubleshooting and debugging Tcl applications.<br /><br />The book is really about network programming, and it will not let you down with its deep coverage of these topics. Of course we look at protocols, but there are plenty of practical examples to keep things moving along. We start with the TCP and UDP protocols, and look at some other protocols to see examples of synchronizing time with other servers, querying user information and authenticating users over LDAP and performing DNS queries.<br /><br />The book explains Simple Network Management Protocol (SNMP), which is often used for monitoring and gathering information from various devices, such as routers, gateways, printers and many other types of equipment. We_ll also look at web programming in Tcl; processing the requests coming from the clients via the HTTP protocol and responding to these requests. You_ll be able to create a complete solution for creating a client-server application in Tcl.<br /><br />To round things off, you_ll see how to secure your networked applications, build public key infrastructure into your application and use Tcl_s safe interpreter feature to reduce risk of running code from unknown source.<br /><br />This book will be help you discover a range of network protocols and concepts and show how to implement them in Tcl. | |
505 | 0 | |a Cover; Copyright; Credits; About the Authors; About the Reviewers; Table of Contents; Preface; Chapter 1: Introducing Tcl; What is Tcl/Tk; Extensions; Tk; Installation; Windows; Unix-like systems; Installation of additional Tcl packages; Additional tools; Eclipse; Komodo; tkcon -- an alternate Tcl shell; Tcl syntax; Tcl commands documentation syntax; Running the script; Running commands directly in the tclsh interpreter; Variables; Grouping; Nesting commands; Data types; Lists; Arrays; Dictionaries; Mathematical expressions-expr; Flow control and loop instructions; Defining your own commands | |
505 | 8 | |a Entering the event loopEvents and stack frames; Channel events; Timer and idle events; Robust scheduling with tclcron; Multithreaded applications; Managing threads; Shared variables; Transferring channels; Summary; Chapter 3: Tcl Standalone Binaries; Understanding the executable file structure; Learning the Metakit database; Working with MetaKit from Tcl; Learning more about virtual file systems; Getting into the details of VFS and Metakit; Learning Tclkit; Starkit and SDX; Creating a Starkit file; Internal structure of starkits; Using resource files in starkits | |
505 | 8 | |a Putting additional packages into a starkitFormat of the starkit file; Interactions between different starkit files; Knowing the Starpack technology; Practical example-the Hibernator application; Advanced topics-self updating; Other solutions; Summary; Chapter 4: Troubleshooting Tcl applications; Logging; Log package; Initialization; Available log levels; Enabling or disabling log levels; Replacing the default implementation of the logging command; Recap of the log package; Logger package; Initialization; Available log levels; Enabling or disabling log levels; Tracing | |
505 | 8 | |a Changing the implementation of the logging / tracing commandAppenders; Recap of the logger package; Audit; Recap of the audit package; Debugging; Tcl Dev Kit Inspector; Tcl Dev Kit Debugger; Local Debugging; Remote debugging; Recap of the Tcl Dev Kit Debugger; TclPro Debugger; Summary; Chapter 5: Data Storage; Internationalizations; Encoding issues; Translating your application into different languages; Using SQL and databases in Tcl; Connecting to MySQL; Connecting to PostgreSQL; Using SQLite; Managing databases from SQLiteStudio; Other databases; Handling XML in Tcl; Storing raw Tcl values | |
650 | 0 | |a Computer networks |x Monitoring. |0 http://id.loc.gov/authorities/subjects/sh2006002867 | |
650 | 0 | |a Computer networks |x Management |x Automation. | |
650 | 6 | |a Réseaux d'ordinateurs |x Surveillance. | |
650 | 6 | |a Réseaux d'ordinateurs |x Gestion |x Automatisation. | |
650 | 7 | |a COMPUTERS |x Networking |x General. |2 bisacsh | |
650 | 7 | |a COMPUTERS |x Data Transmission Systems |x General. |2 bisacsh | |
650 | 7 | |a Computer networks |x Monitoring |2 fast | |
700 | 1 | |a Beltowski, Piotr. | |
758 | |i has work: |a Tcl 8.5 Network Programming (Text) |1 https://id.oclc.org/worldcat/entity/E39PCGqMJJGBYtvwBhcwfMWWCP |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |a Kocjan, Wojciech. |t Tcl 8.5 network programming. |d Birmingham, U.K. : Packt Pub., ©2010 |z 9781849510967 |w (OCoLC)695279141 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=350871 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n AH26943590 | ||
938 | |a ebrary |b EBRY |n ebr10441094 | ||
938 | |a EBSCOhost |b EBSC |n 350871 | ||
938 | |a YBP Library Services |b YANK |n 3601861 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-ocn702116055 |
---|---|
_version_ | 1816881751462510593 |
adam_text | |
any_adam_object | |
author | Kocjan, Wojciech |
author2 | Beltowski, Piotr |
author2_role | |
author2_variant | p b pb |
author_facet | Kocjan, Wojciech Beltowski, Piotr |
author_role | |
author_sort | Kocjan, Wojciech |
author_variant | w k wk |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.9.A25 K63 2010eb |
callnumber-search | QA76.9.A25 K63 2010eb |
callnumber-sort | QA 276.9 A25 K63 42010EB |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Cover; Copyright; Credits; About the Authors; About the Reviewers; Table of Contents; Preface; Chapter 1: Introducing Tcl; What is Tcl/Tk; Extensions; Tk; Installation; Windows; Unix-like systems; Installation of additional Tcl packages; Additional tools; Eclipse; Komodo; tkcon -- an alternate Tcl shell; Tcl syntax; Tcl commands documentation syntax; Running the script; Running commands directly in the tclsh interpreter; Variables; Grouping; Nesting commands; Data types; Lists; Arrays; Dictionaries; Mathematical expressions-expr; Flow control and loop instructions; Defining your own commands Entering the event loopEvents and stack frames; Channel events; Timer and idle events; Robust scheduling with tclcron; Multithreaded applications; Managing threads; Shared variables; Transferring channels; Summary; Chapter 3: Tcl Standalone Binaries; Understanding the executable file structure; Learning the Metakit database; Working with MetaKit from Tcl; Learning more about virtual file systems; Getting into the details of VFS and Metakit; Learning Tclkit; Starkit and SDX; Creating a Starkit file; Internal structure of starkits; Using resource files in starkits Putting additional packages into a starkitFormat of the starkit file; Interactions between different starkit files; Knowing the Starpack technology; Practical example-the Hibernator application; Advanced topics-self updating; Other solutions; Summary; Chapter 4: Troubleshooting Tcl applications; Logging; Log package; Initialization; Available log levels; Enabling or disabling log levels; Replacing the default implementation of the logging command; Recap of the log package; Logger package; Initialization; Available log levels; Enabling or disabling log levels; Tracing Changing the implementation of the logging / tracing commandAppenders; Recap of the logger package; Audit; Recap of the audit package; Debugging; Tcl Dev Kit Inspector; Tcl Dev Kit Debugger; Local Debugging; Remote debugging; Recap of the Tcl Dev Kit Debugger; TclPro Debugger; Summary; Chapter 5: Data Storage; Internationalizations; Encoding issues; Translating your application into different languages; Using SQL and databases in Tcl; Connecting to MySQL; Connecting to PostgreSQL; Using SQLite; Managing databases from SQLiteStudio; Other databases; Handling XML in Tcl; Storing raw Tcl values |
ctrlnum | (OCoLC)702116055 |
dewey-full | 004.6 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 004 - Computer science |
dewey-raw | 004.6 |
dewey-search | 004.6 |
dewey-sort | 14.6 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>07572cam a2200625 a 4500</leader><controlfield tag="001">ZDB-4-EBA-ocn702116055</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr cnu---unuuu</controlfield><controlfield tag="008">110216s2010 enka o 001 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">N$T</subfield><subfield code="b">eng</subfield><subfield code="e">pn</subfield><subfield code="c">N$T</subfield><subfield code="d">E7B</subfield><subfield code="d">UMI</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">COO</subfield><subfield code="d">HEBIS</subfield><subfield code="d">C6I</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">DEBSZ</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">YDXCP</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">JBG</subfield><subfield code="d">AGLDB</subfield><subfield code="d">CNNOR</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">AL5MG</subfield><subfield code="d">U3W</subfield><subfield code="d">OCLCF</subfield><subfield code="d">VTS</subfield><subfield code="d">CEF</subfield><subfield code="d">INT</subfield><subfield code="d">VT2</subfield><subfield code="d">UKMGB</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">WYU</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">STF</subfield><subfield code="d">UAB</subfield><subfield code="d">M8D</subfield><subfield code="d">UKAHL</subfield><subfield code="d">HS0</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">AJS</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018011899</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">741519515</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781849510967</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1849510962</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781849510974</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1849510970</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)702116055</subfield><subfield code="z">(OCoLC)741519515</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">CL0500000096</subfield><subfield code="b">Safari Books Online</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.9.A25</subfield><subfield code="b">K63 2010eb</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">COM</subfield><subfield code="x">043000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">COM</subfield><subfield code="x">020000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">004.6</subfield><subfield code="2">22</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Kocjan, Wojciech.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Tcl 8.5 network programming :</subfield><subfield code="b">build network-aware applications using Tcl, a powerful dynamic programming language /</subfield><subfield code="c">Wojciech Kocjan, Piotr Beltowski.</subfield></datafield><datafield tag="246" ind1="3" ind2=" "><subfield code="a">Tool Command Language network programming</subfield></datafield><datafield tag="260" ind1=" " ind2=" "><subfield code="a">Birmingham, U.K. :</subfield><subfield code="b">Packt Pub.,</subfield><subfield code="c">©2010.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (viii, 569 pages) :</subfield><subfield code="b">illustrations</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Print version record.</subfield></datafield><datafield tag="520" ind1="8" ind2=" "><subfield code="a">Annotation</subfield><subfield code="b">Tcl (Tool Command Language) is a very powerful and easy to learn dynamic programming language, suitable for a very wide range of uses. Tcl is regarded as one of the best-kept secrets in the software industry. This book gives you a hands-on experience on Tcl, helping you develop network-aware applications using this mature yet evolving language.<br /><br />This book shows you how to create network-aware applications with Tcl language. Packed with practical examples, the book not only takes you through the implementation of network protocols in Tcl, but also key aspects of Tcl programming.<br /><br />The book starts with the basic element of Tcl programming as we take a look at the syntax and fundamental commands of the language. To get us ready for network programming, we look at important Tcl features such as object-oriented programming, accessing files, packaging in TCL, event driven programming, and multithreaded applications. To create standalone single-file executable applications with Tcl we take a look at the Starpack technology, and ensure that we_ll be able to create robust applications with a thorough coverage of troubleshooting and debugging Tcl applications.<br /><br />The book is really about network programming, and it will not let you down with its deep coverage of these topics. Of course we look at protocols, but there are plenty of practical examples to keep things moving along. We start with the TCP and UDP protocols, and look at some other protocols to see examples of synchronizing time with other servers, querying user information and authenticating users over LDAP and performing DNS queries.<br /><br />The book explains Simple Network Management Protocol (SNMP), which is often used for monitoring and gathering information from various devices, such as routers, gateways, printers and many other types of equipment. We_ll also look at web programming in Tcl; processing the requests coming from the clients via the HTTP protocol and responding to these requests. You_ll be able to create a complete solution for creating a client-server application in Tcl.<br /><br />To round things off, you_ll see how to secure your networked applications, build public key infrastructure into your application and use Tcl_s safe interpreter feature to reduce risk of running code from unknown source.<br /><br />This book will be help you discover a range of network protocols and concepts and show how to implement them in Tcl.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover; Copyright; Credits; About the Authors; About the Reviewers; Table of Contents; Preface; Chapter 1: Introducing Tcl; What is Tcl/Tk; Extensions; Tk; Installation; Windows; Unix-like systems; Installation of additional Tcl packages; Additional tools; Eclipse; Komodo; tkcon -- an alternate Tcl shell; Tcl syntax; Tcl commands documentation syntax; Running the script; Running commands directly in the tclsh interpreter; Variables; Grouping; Nesting commands; Data types; Lists; Arrays; Dictionaries; Mathematical expressions-expr; Flow control and loop instructions; Defining your own commands</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Entering the event loopEvents and stack frames; Channel events; Timer and idle events; Robust scheduling with tclcron; Multithreaded applications; Managing threads; Shared variables; Transferring channels; Summary; Chapter 3: Tcl Standalone Binaries; Understanding the executable file structure; Learning the Metakit database; Working with MetaKit from Tcl; Learning more about virtual file systems; Getting into the details of VFS and Metakit; Learning Tclkit; Starkit and SDX; Creating a Starkit file; Internal structure of starkits; Using resource files in starkits</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Putting additional packages into a starkitFormat of the starkit file; Interactions between different starkit files; Knowing the Starpack technology; Practical example-the Hibernator application; Advanced topics-self updating; Other solutions; Summary; Chapter 4: Troubleshooting Tcl applications; Logging; Log package; Initialization; Available log levels; Enabling or disabling log levels; Replacing the default implementation of the logging command; Recap of the log package; Logger package; Initialization; Available log levels; Enabling or disabling log levels; Tracing</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Changing the implementation of the logging / tracing commandAppenders; Recap of the logger package; Audit; Recap of the audit package; Debugging; Tcl Dev Kit Inspector; Tcl Dev Kit Debugger; Local Debugging; Remote debugging; Recap of the Tcl Dev Kit Debugger; TclPro Debugger; Summary; Chapter 5: Data Storage; Internationalizations; Encoding issues; Translating your application into different languages; Using SQL and databases in Tcl; Connecting to MySQL; Connecting to PostgreSQL; Using SQLite; Managing databases from SQLiteStudio; Other databases; Handling XML in Tcl; Storing raw Tcl values</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Computer networks</subfield><subfield code="x">Monitoring.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh2006002867</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Computer networks</subfield><subfield code="x">Management</subfield><subfield code="x">Automation.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Réseaux d'ordinateurs</subfield><subfield code="x">Surveillance.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Réseaux d'ordinateurs</subfield><subfield code="x">Gestion</subfield><subfield code="x">Automatisation.</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS</subfield><subfield code="x">Networking</subfield><subfield code="x">General.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS</subfield><subfield code="x">Data Transmission Systems</subfield><subfield code="x">General.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Computer networks</subfield><subfield code="x">Monitoring</subfield><subfield code="2">fast</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Beltowski, Piotr.</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">Tcl 8.5 Network Programming (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCGqMJJGBYtvwBhcwfMWWCP</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="a">Kocjan, Wojciech.</subfield><subfield code="t">Tcl 8.5 network programming.</subfield><subfield code="d">Birmingham, U.K. : Packt Pub., ©2010</subfield><subfield code="z">9781849510967</subfield><subfield code="w">(OCoLC)695279141</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=350871</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH26943590</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ebrary</subfield><subfield code="b">EBRY</subfield><subfield code="n">ebr10441094</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">350871</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">3601861</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-ocn702116055 |
illustrated | Illustrated |
indexdate | 2024-11-27T13:17:42Z |
institution | BVB |
isbn | 9781849510967 1849510962 9781849510974 1849510970 |
language | English |
oclc_num | 702116055 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (viii, 569 pages) : illustrations |
psigel | ZDB-4-EBA |
publishDate | 2010 |
publishDateSearch | 2010 |
publishDateSort | 2010 |
publisher | Packt Pub., |
record_format | marc |
spelling | Kocjan, Wojciech. Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / Wojciech Kocjan, Piotr Beltowski. Tool Command Language network programming Birmingham, U.K. : Packt Pub., ©2010. 1 online resource (viii, 569 pages) : illustrations text txt rdacontent computer c rdamedia online resource cr rdacarrier Print version record. Annotation Tcl (Tool Command Language) is a very powerful and easy to learn dynamic programming language, suitable for a very wide range of uses. Tcl is regarded as one of the best-kept secrets in the software industry. This book gives you a hands-on experience on Tcl, helping you develop network-aware applications using this mature yet evolving language.<br /><br />This book shows you how to create network-aware applications with Tcl language. Packed with practical examples, the book not only takes you through the implementation of network protocols in Tcl, but also key aspects of Tcl programming.<br /><br />The book starts with the basic element of Tcl programming as we take a look at the syntax and fundamental commands of the language. To get us ready for network programming, we look at important Tcl features such as object-oriented programming, accessing files, packaging in TCL, event driven programming, and multithreaded applications. To create standalone single-file executable applications with Tcl we take a look at the Starpack technology, and ensure that we_ll be able to create robust applications with a thorough coverage of troubleshooting and debugging Tcl applications.<br /><br />The book is really about network programming, and it will not let you down with its deep coverage of these topics. Of course we look at protocols, but there are plenty of practical examples to keep things moving along. We start with the TCP and UDP protocols, and look at some other protocols to see examples of synchronizing time with other servers, querying user information and authenticating users over LDAP and performing DNS queries.<br /><br />The book explains Simple Network Management Protocol (SNMP), which is often used for monitoring and gathering information from various devices, such as routers, gateways, printers and many other types of equipment. We_ll also look at web programming in Tcl; processing the requests coming from the clients via the HTTP protocol and responding to these requests. You_ll be able to create a complete solution for creating a client-server application in Tcl.<br /><br />To round things off, you_ll see how to secure your networked applications, build public key infrastructure into your application and use Tcl_s safe interpreter feature to reduce risk of running code from unknown source.<br /><br />This book will be help you discover a range of network protocols and concepts and show how to implement them in Tcl. Cover; Copyright; Credits; About the Authors; About the Reviewers; Table of Contents; Preface; Chapter 1: Introducing Tcl; What is Tcl/Tk; Extensions; Tk; Installation; Windows; Unix-like systems; Installation of additional Tcl packages; Additional tools; Eclipse; Komodo; tkcon -- an alternate Tcl shell; Tcl syntax; Tcl commands documentation syntax; Running the script; Running commands directly in the tclsh interpreter; Variables; Grouping; Nesting commands; Data types; Lists; Arrays; Dictionaries; Mathematical expressions-expr; Flow control and loop instructions; Defining your own commands Entering the event loopEvents and stack frames; Channel events; Timer and idle events; Robust scheduling with tclcron; Multithreaded applications; Managing threads; Shared variables; Transferring channels; Summary; Chapter 3: Tcl Standalone Binaries; Understanding the executable file structure; Learning the Metakit database; Working with MetaKit from Tcl; Learning more about virtual file systems; Getting into the details of VFS and Metakit; Learning Tclkit; Starkit and SDX; Creating a Starkit file; Internal structure of starkits; Using resource files in starkits Putting additional packages into a starkitFormat of the starkit file; Interactions between different starkit files; Knowing the Starpack technology; Practical example-the Hibernator application; Advanced topics-self updating; Other solutions; Summary; Chapter 4: Troubleshooting Tcl applications; Logging; Log package; Initialization; Available log levels; Enabling or disabling log levels; Replacing the default implementation of the logging command; Recap of the log package; Logger package; Initialization; Available log levels; Enabling or disabling log levels; Tracing Changing the implementation of the logging / tracing commandAppenders; Recap of the logger package; Audit; Recap of the audit package; Debugging; Tcl Dev Kit Inspector; Tcl Dev Kit Debugger; Local Debugging; Remote debugging; Recap of the Tcl Dev Kit Debugger; TclPro Debugger; Summary; Chapter 5: Data Storage; Internationalizations; Encoding issues; Translating your application into different languages; Using SQL and databases in Tcl; Connecting to MySQL; Connecting to PostgreSQL; Using SQLite; Managing databases from SQLiteStudio; Other databases; Handling XML in Tcl; Storing raw Tcl values Computer networks Monitoring. http://id.loc.gov/authorities/subjects/sh2006002867 Computer networks Management Automation. Réseaux d'ordinateurs Surveillance. Réseaux d'ordinateurs Gestion Automatisation. COMPUTERS Networking General. bisacsh COMPUTERS Data Transmission Systems General. bisacsh Computer networks Monitoring fast Beltowski, Piotr. has work: Tcl 8.5 Network Programming (Text) https://id.oclc.org/worldcat/entity/E39PCGqMJJGBYtvwBhcwfMWWCP https://id.oclc.org/worldcat/ontology/hasWork Print version: Kocjan, Wojciech. Tcl 8.5 network programming. Birmingham, U.K. : Packt Pub., ©2010 9781849510967 (OCoLC)695279141 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=350871 Volltext |
spellingShingle | Kocjan, Wojciech Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / Cover; Copyright; Credits; About the Authors; About the Reviewers; Table of Contents; Preface; Chapter 1: Introducing Tcl; What is Tcl/Tk; Extensions; Tk; Installation; Windows; Unix-like systems; Installation of additional Tcl packages; Additional tools; Eclipse; Komodo; tkcon -- an alternate Tcl shell; Tcl syntax; Tcl commands documentation syntax; Running the script; Running commands directly in the tclsh interpreter; Variables; Grouping; Nesting commands; Data types; Lists; Arrays; Dictionaries; Mathematical expressions-expr; Flow control and loop instructions; Defining your own commands Entering the event loopEvents and stack frames; Channel events; Timer and idle events; Robust scheduling with tclcron; Multithreaded applications; Managing threads; Shared variables; Transferring channels; Summary; Chapter 3: Tcl Standalone Binaries; Understanding the executable file structure; Learning the Metakit database; Working with MetaKit from Tcl; Learning more about virtual file systems; Getting into the details of VFS and Metakit; Learning Tclkit; Starkit and SDX; Creating a Starkit file; Internal structure of starkits; Using resource files in starkits Putting additional packages into a starkitFormat of the starkit file; Interactions between different starkit files; Knowing the Starpack technology; Practical example-the Hibernator application; Advanced topics-self updating; Other solutions; Summary; Chapter 4: Troubleshooting Tcl applications; Logging; Log package; Initialization; Available log levels; Enabling or disabling log levels; Replacing the default implementation of the logging command; Recap of the log package; Logger package; Initialization; Available log levels; Enabling or disabling log levels; Tracing Changing the implementation of the logging / tracing commandAppenders; Recap of the logger package; Audit; Recap of the audit package; Debugging; Tcl Dev Kit Inspector; Tcl Dev Kit Debugger; Local Debugging; Remote debugging; Recap of the Tcl Dev Kit Debugger; TclPro Debugger; Summary; Chapter 5: Data Storage; Internationalizations; Encoding issues; Translating your application into different languages; Using SQL and databases in Tcl; Connecting to MySQL; Connecting to PostgreSQL; Using SQLite; Managing databases from SQLiteStudio; Other databases; Handling XML in Tcl; Storing raw Tcl values Computer networks Monitoring. http://id.loc.gov/authorities/subjects/sh2006002867 Computer networks Management Automation. Réseaux d'ordinateurs Surveillance. Réseaux d'ordinateurs Gestion Automatisation. COMPUTERS Networking General. bisacsh COMPUTERS Data Transmission Systems General. bisacsh Computer networks Monitoring fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh2006002867 |
title | Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / |
title_alt | Tool Command Language network programming |
title_auth | Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / |
title_exact_search | Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / |
title_full | Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / Wojciech Kocjan, Piotr Beltowski. |
title_fullStr | Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / Wojciech Kocjan, Piotr Beltowski. |
title_full_unstemmed | Tcl 8.5 network programming : build network-aware applications using Tcl, a powerful dynamic programming language / Wojciech Kocjan, Piotr Beltowski. |
title_short | Tcl 8.5 network programming : |
title_sort | tcl 8 5 network programming build network aware applications using tcl a powerful dynamic programming language |
title_sub | build network-aware applications using Tcl, a powerful dynamic programming language / |
topic | Computer networks Monitoring. http://id.loc.gov/authorities/subjects/sh2006002867 Computer networks Management Automation. Réseaux d'ordinateurs Surveillance. Réseaux d'ordinateurs Gestion Automatisation. COMPUTERS Networking General. bisacsh COMPUTERS Data Transmission Systems General. bisacsh Computer networks Monitoring fast |
topic_facet | Computer networks Monitoring. Computer networks Management Automation. Réseaux d'ordinateurs Surveillance. Réseaux d'ordinateurs Gestion Automatisation. COMPUTERS Networking General. COMPUTERS Data Transmission Systems General. Computer networks Monitoring |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=350871 |
work_keys_str_mv | AT kocjanwojciech tcl85networkprogrammingbuildnetworkawareapplicationsusingtclapowerfuldynamicprogramminglanguage AT beltowskipiotr tcl85networkprogrammingbuildnetworkawareapplicationsusingtclapowerfuldynamicprogramminglanguage AT kocjanwojciech toolcommandlanguagenetworkprogramming AT beltowskipiotr toolcommandlanguagenetworkprogramming |