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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2018 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<chapter label="quicktours.xml" id="quicktours">
<title>Quick Start & Tours</title>
<abstract>
<para>This chapter is aimed at getting Virtuoso up and running quickly with a few basic
examples to demonstrate key concepts.
</para>
<para>The Virtuoso quick start tour is designed to familiarize you with some of
the components in Virtuoso. After completing the tour, you should be able to link new tables into Virtuoso,
and query the tables.
</para>
</abstract>
<!-- ======================================== -->
<sect1 id="newadminui"><title>Where to Start</title>
<sect2 id="defpasschange"><title>Default Passwords</title>
<para>When you start up Virtuoso for the first time, there are 3 user accounts defined:</para>
<table colsep="1" frame="all" rowsep="0" shortentry="0" tocentry="1" tabstyle="decimalstyle" orient="land" pgwide="0">
<title>Default users of Virtuoso</title>
<tgroup align="char" charoff="50" char="." cols="3">
<colspec align="left" colnum="1" colsep="0" colwidth="20pc"/>
<thead>
<row>
<entry>User Name</entry>
<entry>Default Password</entry>
<entry>Usage</entry>
</row>
</thead>
<tbody>
<row>
<entry>dba</entry>
<entry>dba</entry>
<entry>Default Database Administrator account.</entry>
</row>
<row>
<entry>dav</entry>
<entry>dav</entry>
<entry>WebDAV Administrator account.</entry>
</row>
<row>
<entry>vad</entry>
<entry>vad</entry>
<entry>WebDAV account for internal usage in VAD (disabled by default).</entry>
</row>
<row>
<entry>demo</entry>
<entry>demo</entry>
<entry>Default demo user for the demo database. This user is the owner of the Demo catalogue of the demo database.</entry>
</row>
<row>
<entry>soap</entry>
<entry>soap</entry>
<entry>SQL User for demonstrating SOAP services.</entry>
</row>
<row>
<entry>fori</entry>
<entry>fori</entry>
<entry>SQL user account for 'Forums' tutorial application demonstration in the Demo database.</entry>
</row>
</tbody>
</tgroup>
</table>
<para>One database user and 2 WebDAV users. These users have their passwords set to default values.
It is therefore important to change them immediately after the installation.
</para>
<para>The one database user is the database administrator with username "dba" and
password "dba". This can be changed using the <link linkend="isql">Interactive SQL</link>
utility. When started without parameters, the ISQL tries to log on as dba with the default
password. The SQL statement to change a user's password is:
</para>
<programlisting>set password <old password> <new password></programlisting>
<para>The password is an identifier, so take care to use proper quotation.</para>
<para>You can also use the graphical <link linkend="dbusersandgroups">Virtuoso Administration Interface</link>
to administer Virtuoso database users.
</para>
<para>The 2 WebDAV user accounts, dav and davuser also have their password set to their username. There
are 2 easy ways to change them. Either use the GUI in <link linkend="davuseradm">Administration Interface</link>
under WebDAV Administration / WebDAV services / Users Administrator or use the SQL statement:
</para>
<programlisting>
update WS.WS.SYS_DAV_USER set U_PASSWORD='<new password>'
where U_NAME='<username>'
</programlisting>
<para>Note quotation around varchar values. Please remember to perform these operations for
all Virtuoso server instances installed. By default these are the Virtuoso with an empty
database and Virtuoso [demo] with the demo database.
</para>
</sect2>
<sect2 id="postinstsanity">
<title>Post-Installation Sanity Check</title>
<sect3 id="posttestisql">
<title>Verify by ISQL</title>
<para>Verify usability of your Virtuoso server by executing the following command from
your command line prompt:
</para>
<programlisting>isql</programlisting>
<para>From the ISQL prompt enter the following SQL command:
</para>
<programlisting>select * from DB.DBA.SYS_USERS;</programlisting>
<para> This should produce a resultset containing one record if everything has been implemented
correctly to this point.
</para>
<figure id="inst022" float="1">
<title>ISQL in Telnet</title>
<graphic fileref="ln-inst3.gif" width="525px" depth="342px"/>
</figure>
</sect3>
<sect3 id="posttesthttp">
<title>Verify by HTTP</title>
<para>A quick way to check that the database is running, is to point a browser to the http port.
The following example URLs will show the System Manager for the default, and the demo Virtuoso databases:
</para>
<programlisting>
http://example.com:8889/
http://example.com:8890/
http://a_virtuoso_server.org:8890/
</programlisting>
<para>On a Windows Client there is a shortcut to the <emphasis>OpenLink Virtuoso Conductor</emphasis>
in the OpenLink Virtuoso program group.
</para>
<para>You will be presented with the OpenLink Virtuoso Conductor screen:</para>
<figure id="inst018" float="1">
<title>Virtuoso Conductor</title>
<graphic fileref="ln-inst4.png" />
</figure>
</sect3>
<sect3 id="posttestqry">
<title>Verify by web based SQL query</title>
<para>Click on the <emphasis>Conductor</emphasis> link to enter the Virtuoso Server Administration
Conductor Interface. You will be presented with a login form, type in the correct details for the
database DBA user, by default this is username=dba; password=dba.
</para>
<figure id="inst019" float="1">
<title>Virtuoso Conductor - Login Form</title>
<graphic fileref="ln-inst-login.png"/>
</figure>
<para>Got to tab "Database" and then go to tab "Interactive SQL".</para>
<figure id="inst020" float="1">
<title>Virtuoso Conductor - Interactive SQL</title>
<graphic fileref="ln-inst-isql.png"/>
</figure>
<para>Enter the SQL Statement command "SELECT * FROM SYS_USERS" in the SQL Statement text area. Note that
only valid SQL can be supplied, so you cannot type a database command such as "tables;". Also, note that
the ";" is not valid in this context. Press <emphasis>Execute</emphasis>.
</para>
<para>You should see the SQL results, as shown below.</para>
<figure id="inst021" float="1">
<title>Virtuoso Conductor - SQL Results</title>
<graphic fileref="ln-inst-isql2.png"/>
</figure>
</sect3>
</sect2>
<sect2 id="administeringtheserver"><title>Administering Your Virtuoso Installation</title>
<para>Virtuoso has been designed for Web based Administration. With your Virtuoso server running you
will be able to point a Web browser at the servers listening address and port. The installation will
include the default server and optionally the demo database server. The default server listens on port 8890
whilst the demo server listens on port 8889. If you are using the machine where Virtuoso was installed then
the server address can be localhost or the hostname otherwise you will need to know the hostname or
IP address of the machine where Virtuoso was installed. The URL that you will want to point your browser
may be:
</para>
<programlisting>
http://example.com:8890/
</programlisting>
<para>Note that that trailing / is important and may be required for older browsers</para>
<figure id="qsinst021" float="1">
<title>Visual Server Administration Interface</title>
<graphic fileref="ln-inst4.png"/>
</figure>
<para>The "Conductor" link will take you to the Visual Server Administration Interface.
Information about <link linkend="adminui">Visual Server Administration Interface can be found
in the Server Administration chapter</link>, which describes all the Interfaces available for
configuring your server.
</para>
</sect2>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qsclientcon"><title>Client Connections</title>
<para>Virtuoso supports a number of data access API's such as ODBC and JDBC. They both provide
high performance native connectivity to the Virtuoso database system.
</para>
<sect2 id="qsodbc"><title>ODBC</title>
<para>The Virtuoso driver for ODBC is available for Windows and most Unix operating systems.
For Windows the you can configure a data source that utilizes the driver in the familiar way
via the ODBC Administrator. This is very easy windows and wizards based process. On Unix the
process has historically not been so simple. We have been trying to a achieve the same level
of usability under Unix through our support of the <ulink url="http://www.iodbc.org/">iODBC project</ulink>.
For more information and details about how to configure the Virtuoso driver for ODBC please
go to the <link linkend="virtdsnsetup">Virtuoso Driver for ODBC</link> section.
</para>
</sect2>
<sect2 id="qajdbc"><title>JDBC</title>
<para>The Virtuoso driver for JDBC is a type 4 native driver which is available for all Java
platforms. This means that you have a single jar file, for which to include into your classpath,
and then the driver is ready for use by your applications. The connection URL typically consists of:
</para>
<programlisting>jdbc:virtuoso://hostname:port/UID=uid/PWD=pwd</programlisting>
<para>More information about the JDBC driver can be found in the
<link linkend="VirtuosoDriverJDBC">Virtuoso Driver for JDBC</link> section. The JDBC driver also
supports SSL encrypted connections. This JDBC driver is an excellent companion to any web enabled
applications especially when combined with Virtuoso's other features such as WSDL and SOAP.
</para>
</sect2>
<sect2 id="qsoledb"><title>OLEDB</title>
<para>Virtuoso gives application developers an opportunity to utilize OLE DB interfaces for their
database programming needs. OLE DB is a Microsoft developed and promoted technology for uniform
data access across diverse data sources. Many applications make indirect use of OLE DB through a
higher level ADO interface.
</para>
<para>VIRTOLEDB is the native <link linkend="virtoledb">OLE DB provider for Virtuoso</link>.
This enables applications to access a Virtuoso server using OLE DB interfaces. VIRTOLEDB provides
implementation for all required and many optional OLE DB interfaces.
</para>
</sect2>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qsvdbsrv"><title>Virtual Database Server</title>
<para>Virtuoso's Virtual Database Engine enables you to produce Dynamic Web Content from any
major database management system. This enables dynamic, real-time HTML and XML generation from
any number of different database engines concurrently. The
<link linkend="adminui">Visual Server Administration Interface</link> of Virtuoso allows you to
effortlessly remotely choose and configure remote data sources to be linked into Virtuoso.
Once a table is linked into Virtuoso then it is usable like any native table leaving you free to
perform join queries without ever worrying about the underlying data source.
</para>
<para>The <link linkend="vdbconcepts">Virtual Database (VDB) Engine</link> section of the
<link linkend="concepts">Conceptual Overview</link> chapter explains the concepts in more details.
</para>
<para>Visit the <link linkend="remotetables">Visual Server Administration Interface</link> section
to see how to link tables into Virtuoso, or follow the small example below to get you started:
</para>
<sect2 id="confodbcdsn">
<title>Configuring Your ODBC Data Sources</title>
<para>Before you can link a table into Virtuoso, you need to configure an ODBC datasource. It is
quite likely that you already have ODBC data sources defined. If so, you can skip this part of the tour.
</para>
<para>If you do not have any data sources defined, you should configure your datasource using
an appropriate ODBC driver. The ODBC driver may come from the database vendor or a third-party
middleware vendor, such as OpenLink Software. You will need to configure your ODBC datasource in
accordance with the directions from your driver vendor.
</para>
<para>In this part of the tour, we show sample DSN configuration information for some database
vendor drivers. These examples of working data sources are not meant to replace the instructions
from the driver vendor. In your specific installation other parameters may be necessary.
</para>
<para>To define ODBC data sources on Windows XP/95/98/NT, in the Control Panel go to Administrative
Tools and then click the Data Sources (ODBC) icon.
</para>
<para>This first datasource uses OpenLink Generic ODBC Driver V6.0 to create DSN to a MySQL 5.x database.
</para>
<figure id="image01" float="1">
<title>OpenLink Mutli Tier DSN Configuration with database MySQL 5.x</title>
<graphic fileref="virttour1.png"/>
</figure>
<para>The next example is an Informix 7 datasource using the driver from Informix Software, Inc.
</para>
<figure id="image02" float="1">
<title>Informix Driver DSN Configuration</title>
<graphic fileref="virttour2.gif" width="345px" depth="489px"/>
</figure>
<para>The next few images show a Microsoft SQL Server 6.5 datasource using the Microsoft Corporation
SQL Server driver.
</para>
<figure id="image03" float="1">
<title>MS SQL Server DSN Configuration</title>
<graphic fileref="virttour3.gif" width="511px" depth="322px"/>
</figure>
<figure id="image04" float="1">
<title>MS SQL Server DSN Configuration</title>
<graphic fileref="virttour4.gif" width="511px" depth="322px"/>
</figure>
<figure id="image05" float="1">
<title>MS SQL Server DSN Configuration</title>
<graphic fileref="virttour5.gif"/>
</figure>
<figure id="image06" float="1">
<title>MS SQL Server DSN Configuration</title>
<graphic fileref="virttour6.gif" width="511px" depth="322px"/>
</figure>
<figure id="image07" float="1">
<title>MS SQL Server DSN Configuration</title>
<graphic fileref="virttour7.gif" width="511px" depth="322px"/>
</figure>
<para>Finally, review the configuration information for your default local Virtuoso datasource,
named "<emphasis>Local Virtuoso</emphasis>".
</para>
<figure id="image08" float="1">
<title>OpenLink Virtuoso DSN Configuration</title>
<graphic fileref="virttour8.png"/>
</figure>
<para>DSNs can be created and configured within the Virtuoso Conductor.
Go to "Database", then to "External Data Sources" and then go to "Configure Data Sources" tab. Click the "Add System DSN", or "Add User DSN", or "Add File DSN" button.
</para>
<figure id="newdsn" float="1">
<title>Creating a new DSN</title>
<graphic fileref="newdsn.png"/>
</figure>
</sect2>
<sect2 id="dsnchk">
<title>Datasource Check</title>
<para>Before trying to link a table into Virtuoso, you should verify that the datasource is
working correctly. Use a tool such as Microsoft Access, or ODBCtest to test your datasource.
Your sanity check will verify that the datasource is correctly configured, that all necessary
software is installed, that the database is running, and that there are no permission related
problems. In addition, it will verify that the driver that you are using works correctly with
the underlying datasource.
</para>
<para> If there is a problem using a specific tool such as Microsoft Access with a specific driver,
then that same problem will be manifested when the datasource is exposed via Virtuoso.
</para>
</sect2>
<sect2 id="demoquery">
<title>Demo Datasource Query</title>
<para>To query the sample data in the Demo Database make sure the web browser is pointing to the
Demo database HTTP port which is typically 8890. From Conductor go to tab "Database" and then select
the tab "Interactive SQL". Enter a SQL statement and click the button "Execute". For example:
</para>
<programlisting>SELECT * FROM DEMO..products WHERE UnitPrice < 7</programlisting>
<figure id="qsdemoquery" float="1">
<title>Demo Database Query</title>
<graphic fileref="demoquery.png"/>
</figure>
</sect2>
<sect2 id="lnktabvirt">
<title>Linking Remote Tables Into Virtuoso</title>
<para>A table on a remote datasource may be linked into the Virtuoso database so that it appears
as a local table. Start a browser and point to Conductor, for ex. http://example.com:8890/conductor/.
Go to tab "Database", then select "External Data Sources" and then "Sata Sources". Specify the remote datasource
that you wish to link to Virtuoso. For example, click the link "connect" for DSN "VirtuosoDemoTest".
</para>
<figure id="conndsn1a" float="1">
<title>Enter login name and password.</title>
<graphic fileref="conndsn1a.png"/>
</figure>
<para>As result should be shown for DSN "VirtuosoDemoTest" the links "Link objects", "Change Credentials", "Disconnect". Click the "Link objects" link.
</para>
<figure id="conndsn1b" float="1">
<title>Connected to datasource.</title>
<graphic fileref="conndsn1b.png"/>
</figure>
<para>Pick the tables to be linked, and define the names to use.
</para>
<figure id="rmtadd" float="1">
<title>Define tables to link</title>
<graphic fileref="rmtadd.png"/>
</figure>
</sect2>
<sect2 id="listunlnktabs">
<title>Listing or Unlinking Tables</title>
<para>To list the tables that have been linked into Virtuoso, from Conductor go to
<emphasis>Databases/ External Data Sources/ External Linked Objects</emphasis>.
A table may be unlinked by pressing its "Unlink" icon.
</para>
<figure id="conndsn2" float="1">
<title>List of Connected Data Sources</title>
<graphic fileref="conndsn2.png"/>
</figure>
</sect2>
<sect2 id="querybisql">
<title>Querying Linked Tables</title>
<para>Once the tables have been linked into Virtuoso, they can be queried using the Interactive
SQL query. From the Conductor UI go to <emphasis>Database/Interactive SQL</emphasis>. Type a SQL that accesses a remote
table such as: SELECT * FROM Demo.VirtuosoDemoTest.CustomersLinked. Click the "Execute" button.
</para>
<para>Press the Execute button and review the results.</para>
<figure id="rmtdsnqry" float="1">
<title>Remote Table Query</title>
<graphic fileref="rmtdsnqry.png"/>
</figure>
</sect2>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qswebserver"><title>Web Server</title>
<sect2 id="qsvirtdir"><title>Virtual Directories</title>
<para>The term virtual directory applies to the mechanism to hide the physical location of a Web
resource under different path which user agents use to retrieve it. This mechanism in virtuoso is a
part of host definition.</para>
<para>This method is useful when one server has to keep many Web sites. Using a redirect mechanism is not a universal way to do this.
It is better to define virtual hosts and paths to the directory entries which contain Web pages.</para>
<sect3 id="qsvirtdirpl"><title>Creating Virtual Directories Programmatically</title>
<para>For an overview of virtual directories, and how to configure them in PL, refer to the <link linkend="virtdir">Virtual Directories Section</link>.</para>
</sect3>
<sect3 id="qsvirtdirui"><title>Setup in Administration Interface</title>
<para>This step by step example will define a virtual directory /help that will point to the directory /departments/support/</para>
<orderedlist>
<listitem>
<para>From the Conductor UI go to Web Application Server/ Virtual Domains & Directories.</para>
<figure id="virtdir1" float="1">
<title>Http Hosts and Directories</title>
<graphic fileref="ui/virtdir1.png" />
</figure>
</listitem>
<listitem>
<para>Open the "folder" icon for your {Default Web Site}.</para>
<figure id="virtdir2" float="1">
<title>Edit URL mappings</title>
<graphic fileref="ui/virtdir2.png" />
</figure>
</listitem>
<listitem>
<para>Click the link "New Directory" to add a new virtual directory.</para>
<figure id="virtdir3" float="1">
<title>Add virtual directory</title>
<graphic fileref="ui/virtdir3.png" />
</figure>
</listitem>
<listitem>
<para>Select for "Type" File system, as this mapping example will be
from one directory to another, and click "Next".</para>
<figure id="virtdir4" float="1">
<title>Use File system template</title>
<graphic fileref="ui/virtdir4.png" />
</figure>
</listitem>
<listitem>
<para>Enter details in the form to define the mapping. Most of the fields are optional.
In this example, only the logical and physical paths and the default page name are required.
Click finally the button "Save Changes".
</para>
<figure id="virtdir5" float="1">
<title>Mapping details</title>
<graphic fileref="ui/virtdir5.png" />
</figure>
</listitem>
<listitem>
<para>The following URLs will then be equivalent:</para>
<simplelist>
<member>http://example.com:8890/help</member>
<member>http://example.com:8890/departments/support/index.html</member>
</simplelist>
</listitem>
</orderedlist>
</sect3>
</sect2>
<sect2 id="qsmultihome"><title>Multi Homing</title>
<para>The term Multi Homing refers to the practice of maintaining more than one server on one machine,
differentiated by their apparent host name. It is often desirable for companies sharing a web server to have
their own domains, with web servers accessible as www.company1.com and www.company2.com, without requiring
the user to know any extra path information.</para>
<sect3 id="qsvirthostpl"><title>Creating Multiple Homes Programmatically</title>
<para>For an overview of Multi Homing, and how to configure it with PL, refer to the
<link linkend="virtandmultihosting"> Virtual Hosting and Multi Hosting</link> section.</para>
</sect3>
<sect3 id="qsvirthostui"><title>Setup in Administration Interface</title>
<para>This step by step example will define a virtual home for the URL http://www.ahelp.com/
to the server www.a.com and directory /departments/support/</para>
<orderedlist>
<listitem>
<para>Have a domain name allocated in the DNS for the ahelp.com that points to the
same IP address of the a.com that is hosting a Virtuoso server.
</para>
</listitem>
<listitem>
<para>From the Conductor UI go to Web Application Server/ Virtual Domains & Directories.</para>
<figure id="qsvirtdir1" float="1">
<title>Http Hosts and Directories.</title>
<graphic fileref="ui/virtdir1.png" />
</figure>
</listitem>
<listitem>
<para>To add a new host definition, enter for "Port" 80, enter for "HTTP Host" www.ahelp.com and select the "Add" button.</para>
<figure id="virthost2" float="1">
<title>Add new site</title>
<graphic fileref="ui/virthost2.png" />
</figure>
</listitem>
<listitem>
<para>Click for the new defined site the "Edit" link in order to define the mapping between the virtual host and the actual listening host domain names.</para>
<figure id="virthost3" float="1">
<title>New site mapping</title>
<graphic fileref="ui/virthost3.png" />
</figure>
</listitem>
<listitem>
<para>Click the "folder" icon for the new defined site and then click the "Edit" link for the Logical Path "/".</para>
<figure id="virthost3a" float="1">
<title>Set Logical Path</title>
<graphic fileref="ui/virthost3a.png" />
</figure>
</listitem>
<listitem>
<para>Enter details in the form to define the mapping. Most of the fields are optional. In this example, only the logical and physical paths and the default page name are required.</para>
<figure id="virthost4" float="1">
<title>Mapping details</title>
<graphic fileref="ui/virthost4.png" />
</figure>
</listitem>
<listitem>
<para>The following URLs will then be equivalent:</para>
<simplelist>
<member>http://www.ahelp.com/</member>
<member>http://www.a.com/departments/support/index.html</member>
</simplelist>
</listitem>
</orderedlist>
</sect3>
</sect2>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qswebdav"><title>WebDAV</title>
<para>WebDAV support enables Virtuoso to act as the Web Content Store for all of your eBusiness
data, this includes Text, Graphics and Multimedia files. WebDAV support also enables Virtuoso to
play the familiar roles of a FILE & WEB SERVER, hosting entire Web sites within a single
database file, or across multiple database files. Virtuoso's WebDAV provides file system like
access to its non SQL data repository.
</para>
<para>Files contained in the DAV repository are stored in a database table. Free text
indexing and replication mechanisms may be applied to the DAV repository as well as the
regular database. Standards based WebDAV methods are used to access resources stored in
the repository based on Virtuoso's full-featured SQL-92 database engine with performance
that matches or exceeds that of current major players in the DB market. Typical WebDAV
clients that can access the repository for content management include Network Places on
Windows through Explorer, Nautilus on Gnome (Linux and Solaris), and the Mac OS X desktop.
Many web development tools also support WebDAV directly.
</para>
<para>See the <link linkend="webdavadmin">WebDAV Administration</link> section, to setup
the WebDAV in the Visual Server Administration Interface.
</para>
<sect2 id="qswebfolders"><title>Web Folders</title>
<para>Microsoft Windows has a notion of a Web Folder. This is how Windows connects to a
WebDAV store which can then be traversed like any other file system. Files can be copied
and moved to and from the DAV using normal drag-and-drop methods.
</para>
<orderedlist>
<listitem>
<para>To create a Web Folder open the <emphasis>Windows Explorer</emphasis>
and navigate to <emphasis>My Network Places</emphasis>.
</para>
<figure id="qs-dav001" float="1"><title>My Network Places</title>
<graphic fileref="ui/qs-dav001.png"/>
</figure>
</listitem>
<listitem>
<para>You will find an icon or option to <emphasis>Add Network Place</emphasis> which
when double-clicked will lead you to the wizard.
</para>
<figure id="qs-dav002" float="1"><title>Web Folder Wizard</title>
<graphic fileref="ui/qs-dav002.png"/>
</figure>
</listitem>
<listitem>
<para>The first screen encourages you to type the location of the network place, for
connecting to a Virtuoso DAV you will need to know the server location and port number.
If you installed Virtuoso on to your local machine taking default options then you
would probably be typing:
</para>
<programlisting>http://example.com:8889/DAV/</programlisting>
<figure id="qs-dav003" float="1"><title>WebDAV location</title>
<graphic fileref="ui/qs-dav003.png"/>
</figure>
</listitem>
<listitem>
<para>You will then be asked for authentication information which will require a username
and a password. If defaults are taken then this would simply be dav and dav for both.
</para>
<figure id="qs-dav004" float="1">
<title>WebDAV authentication</title>
<graphic fileref="ui/qs-dav004.png"/>
</figure>
</listitem>
<listitem>
<para>To complete the creation of a Web Folder you be asked to supply a name for
the network place.
</para>
<figure id="qs-dav005" float="1">
<title>Name of your WebDAV Web Folder</title>
<graphic fileref="ui/qs-dav005.png"/>
</figure>
</listitem>
<listitem>
<para>Once provided Explorer will automatically open a new Window over looking
the new location.
</para>
<figure id="qs-dav006" float="1">
<title>Files contained in your DAV</title>
<graphic fileref="ui/qs-dav006.png"/>
</figure>
</listitem>
<listitem>
<para>You can find your new Web Folder again from My Network Places where
the link will be saved.
</para>
</listitem>
</orderedlist>
</sect2>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qswebservices"><title>Web Services</title>
<para>SOAP is a lightweight, extensible, XML-based protocol for information exchange in a decentralized,
distributed environment. Primarily, SOAP defines a framework for message structure and a message
processing model. SOAP also defines a set of encoding rules for serializing data and a convention
for making remote procedure calls. The SOAP extensibility model provides the foundation for a wide
range of composable modules and protocols running over a variety of underlying protocols such as HTTP.
</para>
<para>By Supporting the <link linkend="soap">Simple Object Access Protocol (SOAP)</link>, Virtuoso
enables you to integrate business processes within and across organization boundaries. Virtuoso's SOAP
Support implementation enables you to execute Virtuoso Stored Procedures over HTTP. This is a
significant component in any B2B development and implementation effort. Development is very
rapid and is directly incorporated within the database environment required for keeping B2B
processes running accurately.
</para>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<!-- copy from exposingws.xml with different ids -->
<sect1 id="qstexpwsmodules"><title>Exposing Persistent Stored Modules as Web Services</title>
<para>Virtuoso SQL stored procedures and functions can be exposed as SOAP services very
simply from Virtuoso, whether they are native Virtuoso or on remote data sources. This
powerful ability means that any database servers already existing within an organization
can easily become a component in an eBusiness solution using Virtuoso. All you need is
a few simple steps that typically take mere minutes to complete:
</para>
<itemizedlist>
<listitem>
<formalpara>
<title>Choose your stored procedure(s)</title>
<para>The procedures that you want to expose can either be native Virtuoso stored procedures,
or remote stored procedures that can be linked in using the Remote Procedures user interface.
</para>
</formalpara>
</listitem>
<listitem>
<formalpara>
<title>Choose a virtual directory</title>
<para>Because SOAP services need to be exposed and accessed via HTTP a Virtuoso virtual
directory must be used. Either use the existing SOAP virtual directory or create a new one.
</para>
</formalpara>
</listitem>
<listitem>
<formalpara>
<title>Publish procedures to virtual directory</title>
<para>The user specified as SOAP account on the virtual directory must have execute
privileges on the procedures. Use the Publish options on the virtual directory user interface.
</para>
</formalpara>
</listitem>
<listitem>
<formalpara>
<title>Test the VSMX output</title>
<para>Once procedures have been published as SOAP services they are automatically
described by WSDL and testable using Virtuoso's VSMX feature.
</para>
</formalpara>
</listitem>
</itemizedlist>
<para>XML Query Templates provide a direct way to store SQL in an XML file on the Virtuoso
server that when executed, i.e. fetched from a web browser, actually returns the results
of the query.
</para>
<para>The C Interface chapter describes how users can define custom built-in functions,
from C or other programming languages, that can be used from within Virtuoso PL. This also
means that VSE's can also be published as a Web Service!
</para>
<sect2 id="qstexpwspls"><title>Publishing Stored Procedures as Web Services</title>
<sect3 id="qstexpwssps"><title>Choosing Stored Procedures to Expose</title>
<para>You can either expose native Virtuoso stored procedures (previously defined or
newly created) using the CREATE PROCEDURE statement, or stored procedures from other
database types can be linked into Virtuoso using an ODBC datasource.
</para>
<para>Virtuoso lists available stored procedures for each catalog in Conductor under:
<emphasis>/Database/External Data Sources/External Linked Objects / with checked "Stored Procedures"</emphasis>.
</para>
<para>To link a stored procedure from another database system we must first create a
valid data source that leads to a connection to that database. Once verified proceed to
the Remote Procedures page. Select the "Link objects" link for a data source.
</para>
<figure float="1">
<title>Linking Procedures from Remote Data Sources</title>
<graphic fileref="ui/admrmtprocs001.png"/>
</figure>
<para>Select the check-box "Store Procedures". Click the "Apply" button. As result will
be shown the list of available procedures.
</para>
<figure float="1">
<title>Linking Procedures from Remote Datasources</title>
<graphic fileref="ui/admrmtprocs002.png"/>
</figure>
<para>Select the check-boxes for the procedures you want to link and click the "Link" button.
</para>
<figure float="1">
<title>Linking Procedures from Remote Datasources</title>
<graphic fileref="ui/admrmtprocs003.png"/>
</figure>
<para>You will be presented with a new page listing the chosen procedures and their data
type information. This gives you an opportunity to alter the data type mappings that Virtuoso
will use both internally and for any future interactions with the SOAP server. If you do not
want to specify any special type information the details can be left as default.
</para>
<figure float="1">
<title>Linking Procedures from Remote Datasources</title>
<graphic fileref="ui/admrmtprocs004.png"/>
</figure>
<para>For each remote procedure you may change how they will be referenced within Virtuoso
by making changes to the fields for <emphasis>Catalog</emphasis>, <emphasis>Owner</emphasis>,
<emphasis>Link as</emphasis>, and <emphasis>Description</emphasis> fields. These fields define how
you will find the linked procedure locally to Virtuoso only and do not affect the remote data source.
</para>
<para>For each procedure there is an option to <emphasis>PL Wrapper Requirement</emphasis>.
This option is required if your remote procedure is capable of returning a resultset that you
want to process via Virtuoso. Can be <emphasis>SOAP Execution</emphasis>, <emphasis>SQL Execution</emphasis>
or <emphasis>None</emphasis>. Also you can specify <emphasis>Return Type</emphasis>,
<emphasis>Data Type</emphasis>, <emphasis>SOAP Type</emphasis>.
</para>
<para>Once the details are correct press the "Link" button.
</para>
<tip><title>See Also:</title>
<para><link linkend="remoteprocedures">Linking Remote Procedures</link></para></tip>
</sect3>
<sect3 id="qstexpwsvirtdir"><title>Defining Virtual Directories</title>
<para>Before any procedures native or linked can be exposed as SOAP Services a location in
HTTP space must be defined. From Conductor <emphasis>Web Application Server/Virtual Domains & Directories</emphasis>
you make a new URL Mappings. Click on the <emphasis>New Directory</emphasis> link for the
{Default Web Site} line to begin defining a new SOAP mapping.
</para>
<figure float="1"><title>Virtual Directories</title>
<graphic fileref="ui/admvirtdir001.png"/></figure>
<para>Select for "Type" from the list the value "SOAP access point" and click the "Next" button.
</para>
<figure float="1"><title>Virtual Directories Mappings</title>
<graphic fileref="ui/admvirtdir003.png"/></figure>
<para>You will then be presented with the following tabs: "Virtual Directory Information",
"Authentication", "Web Service Option", "WS Security" and "Publish Objects".
Particular options to note are "Virtual Directory Information" and "Publish Objects".
</para>
<figure float="1"><title>Virtual Directories</title>
<graphic fileref="ui/admvirtdir004.png"/></figure>
<para>In <emphasis>Publish Objects</emphasis> you can select Virtuoso stored procedures,
or remotely linked procedures to be published as SOAP web services. Also you can publish
Pl Modules, User Defined Types, or Saved Queries.
</para>
<figure float="1"><title>Publish Objects</title>
<graphic fileref="ui/admvirtdir005.png"/></figure>
<tip><title>See Also:</title>
<para><link linkend="httpvirtualdirs">Virtual Directories</link></para></tip>
</sect3>
<sect3 id="qstexpspublishbtn"><title>Publishing Procedures to a Virtual Directory</title>
<para>If you already have a virtual directory defined and know what procedures you want to expose
as web services you will have to repeat some of the steps in the section above. From Conductor go to
<emphasis>Web Application Server/Virtual Domains & Directories</emphasis>. Click on the "folder" icon for your
{Default Web Site}. You will find the list of previously existing mappings, from which you can select
the mapping that you want to edit by pressing on its <emphasis>Edit</emphasis> link. Note, the virtual
directory should have type "SOAP".
</para>
<figure float="1"><title>Virtual Directories</title>
<graphic fileref="ui/admvirtdir006.png"/></figure>
<para>Go to tab "publish Objects" to expose/hide your procedures, Pl Modules, User Defined Types
and Saved Queries.
</para>
<figure float="1"><title>Publish Objects</title>
<graphic fileref="ui/admvirtdir008.png"/></figure>
<para>The "Procedures" tab presents the list of available procedures. You can select a catalogue
in order to list the procedures you want to publish. When the procedures to be published are selected,
you can either click the "Publish Selected" button, or before this to click the "Edit Description" button.
</para>
<figure float="1"><title>Choosing Procedure aPublish</title>
<graphic fileref="ui/admvirtdir007.png"/></figure>
</sect3>
<sect3 id="qstexpsvsmxtest"><title>Testing SOAP Services Using VSMX</title>
<para>Virtual directory definitions have a <emphasis>Logical Path</emphasis> field, which is
reference in URL to find the correct SOAP services. If you connect to Virtuoso on
<emphasis>http://example.com:8890/</emphasis>, and defined your virtual directory with
the logical path of <emphasis>/mysoap</emphasis> then you will be able to test the following URLs:
</para>
<simplelist>
<member>http://example.com:8890/mysoap/services.wsdl</member>
<member>http://example.com:8890/mysoap/services.vsmx</member>
</simplelist>
<figure float="1"><title>Services.wsdl</title>
<graphic fileref="ui/admvirtdir009.png"/></figure>
<figure float="1"><title>Services.vsmx</title>
<graphic fileref="ui/admvirtdir010.png"/></figure>
<para>The WSDL description is a standards-based description of the Web Services available from
/mysoap. The VSMX page is a Virtuoso generated test page allowing you to test SOAP services. This
feature should improve your development time.
</para>
<tip><title>See Also:</title>
<para>
<link linkend="vsmx">VSMX</link>;
<link linkend="soap">SOAP</link>;
<link linkend="wsdl">WSDL</link>.
</para>
</tip>
</sect3>
</sect2>
<sect2 id="qstxmlqtemplates"><title>XML Query Templates</title>
<para>Virtuoso XML templates allow execution of SQL/XML queries over HTTP to obtain an XML document
in response and/or perform some operation in the database using
<link linkend="updategrams">updategrams</link>. XML templates can be executed from within Virtuoso
procedure language using the <link linkend="fn_xml_template"><function>xml_template()</function></link>
function. XML templates support two types of action: SQL based or updategram based. SQL query based
templates must contain the FOR XML clause used in a SELECT statement and hence cannot update the database.
Updates to the database can only occur from an updategram. The XML document returned from calling an
XML template can be served either raw, or transformed using XSLT.
</para>
<para>XML templates provide quick easy access to results from a SQL query as usual, but now this can
be saved to a file. The results are not saved, just the query definition. You can use this feature to
rapidly produce dynamic reports that can potentially be rendered in different ways by providing an
alternate stylesheet. The report can be refined on the fly by providing parameters for the query.
The output is reachable via HTTP directly by providing the URL to the template.
</para>
<tip><title>See Also:</title>
<para>The <link linkend="xmltemplates">XML Templates</link> Section</para></tip>
<para>XML Templates can also be published just like normal store procedures. This is achieved
by using a PL wrapper around the XML template. Then the store procedure is published in the normal way.
</para>
<para>Stylesheets transformations with be inactive for published XML templates invoked from SOAP.
</para>
<tip><title>See Also:</title>
<para>The <link linkend="expspublishbtn">Publishing Stored Procedures</link> Section above
for a further description of publishing XML Templates.
</para>
</tip>
</sect2>
<sect2 id="qstpublishbifs"><title>Publishing VSE's as Web Services</title>
<para>The Virtuoso distribution includes the sample VSE, bif_sample.c. It is thus possible
to create a function such as:
</para>
<programlisting><![CDATA[
.....
static caddr_t
bif_hello_world (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
return box_dv_short_string ("Hello world.");
}
....
]]></programlisting>
<para>Then declare it in the init_func() by adding the following code:</para>
<programlisting><![CDATA[
...
bif_define_typed ("hello_world", bif_hello_world, &bt_any);
...
]]></programlisting>
<para>The next step is creating a stored procedure that calls this function and you are back
to publishing a Virtuoso stored procedure again, as in the above section.
</para>
<programlisting>
create procedure BIF_HELLO_WORLD () { return hello_world (); };
</programlisting>
<tip><title>See Also:</title>
<para>The <link linkend="cinterface">C Interface</link> Chapter
</para>
</tip>
</sect2>
</sect1>
<!-- end of copy -->
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qsvsmx"><title>VSMX - Virtuoso Service Module for XML</title>
<para>Every WSDL file generated by Virtuoso is automatically accompanied by a SOAP Operations
Test page known as a VSMX file, which has the extension .vsmx. You find this file in the
same place as the WSDL file. For a SOAP enabled virtual directory you have the facility to
find the WSDL file:
</para>
<programlisting>http://[host:port]/[SOAP Virtual Directory]/services.wsdl</programlisting>
<para>likewise you also get a VSMX file:</para>
<programlisting>http://[host:port]/[SOAP Virtual Directory]/services.vsmx</programlisting>
<para>You simply point your web browser to this file for the test page. The demo database
contains samples that can be found as:
</para>
<programlisting>http://[host:port]/SOAP/services.vsmx</programlisting>
<figure float="0"><title>VSMX Test Page</title>
<graphic fileref="ui/vsmx001.png"/></figure>
<tip><title>See Also:</title>
<para>The <link linkend="vsmx">VSMX section</link> for more details
</para>
</tip>
</sect1>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<sect1 id="qssqltoxml"><title>SQL to XML</title>
<para>Virtuoso enables you to develop eBusiness solutions that use XML as both a Data Source
and Data Interchange format. Your XML Data documents can take the form of Pure XML Documents,
or documents that are transformed from SQL-XML on the fly. By supporting the XPATH query
language for XML Data, you are able to use an industry standard query language to query entire XML
Documents or portions of XML Documents stored within Virtuoso. Virtuoso's inclusion of an
XSLT transformation engine then allow you to transform XML data for other needs.
These XML documents are openly accessible to user agents such as Web Browsers via HTTP
and/or WebDAV. These XML documents are described as being dynamic because they have varying
degrees of sensitivity to changes that occur in the underlying database tables from which the
XML data originates. Virtuoso allows you to create two types of XML documents from homogeneous
or heterogeneous SQL Data on the fly:
</para>
<simplelist>
<member><emphasis>Transient</emphasis> The materialization of the XML Document occurs at
the time of file opening, this implies that data from the original SQL database(s) is
retrieved and then transformed into XML in one operation. This format of SQL-XML document is
highly sensitive to source database(s) changes.
</member>
<member><emphasis>Persistent (Time Synchronized)</emphasis> - The materialization of the
XML Document re-occurs at a user configurable interval after initial creation. This is a
caching scheme which is less sensitive to changes in the source databases(s) in favor of performance.
</member>
</simplelist>
<para>SQL-XML documents may be Valid or Well Formed XML documents, this includes support for both
DTDs and XML Schemas which my be external entity references or inlined within the XML Documents prologue
in the case of DTDs.
</para>
<para>Virtuoso supports an extended SQL syntax that is identical to that implemented by Microsoft
SQL Server for the purpose of creating SQL-XML documents. These SQL extensions take the form of a
new "FOR XML" clause that includes three main options which control the structure of the resulting
XML document tree. These options are <emphasis>RAW</emphasis>, <emphasis>AUTO</emphasis> and
<emphasis>EXPLICIT</emphasis>.
</para>
<para>Virtuoso's HTML based graphical interface includes a user friendly mechanism for
creating dynamic XML documents from SQL data using the "FOR XML" extended SQL syntax.
The dynamic XML documents created by this process are typically stored in Virtuoso's
WebDAV repository. Documents stored in this repository are accessible by any XML
consuming client application via HTTP, Windows Web Folders, or any other WebDAV or
HTTP compliant environment. A description of the interface in general can be found in
the <link linkend="sqlxmlstmts">SQL-XML Statements</link> in the
<link linkend="adminui">Visual Server Administration Interface</link> section.
</para>
<para>From Conductor <emphasis>XML/SQL_XML</emphasis> you can execute SQL query with options
on how to produce XML structures from the results.
</para>
<figure id="qssql2xml001" float="1"><title>SQL to XML</title>
<graphic fileref="ui/qssql2xml001.png"/></figure>
<para>The illustration above depicts the fact that only minor changes to standard SQL are
required in order to create powerful dynamic XML documents from SQL. It also illustrates
how the entire process of controlling the type and format of the XML documents and their
actually WebDAV storage is all achieved without any programming. The XML document extract
below is a depiction of the XML document tree produced using the "FOR XML" AUTO option.
</para>
<figure id="qssql2xml002" float="1"><title>SQL to XML results</title>
<graphic fileref="ui/qssql2xml002.png"/></figure>
<para>The Virtuoso Demo database provides a set of sample tables in the Demo catalogue,
and some sample XML views that use them. The "StoredQueries" tab lists saved XML Views as shown below. </para>
<figure id="qssql2xml003" float="1"><title>SQL to XML save views</title>
<graphic fileref="ui/qssql2xml003.png"/></figure>
<para>You can press <emphasis>Edit</emphasis> to edit them, or <emphasis>Delete</emphasis>
to remove them or click on the XML FILE itself to see the results
in your default browser, a sample of the output is shown above.</para>
<sect2 id="qsforxmlmodes"><title>FOR XML Execution Modes</title>
<para>Now we will consider the programmatical approach along side the visual interface
approach. We will have one example of each of the modes of FOR XML combined with
the <link linkend="fn_xml_auto"><function>xml_auto()</function></link> function to
help us display the results simply.</para>
<para>For the programmatical examples to run smoothly using ISQL a number of steps are
required to obtain textual output from the xml_auto() function which usually is expected
to output directly to an HTTP target. To make the demonstration simpler a utility procedure
will be created that will simply enable us to supply SQL and return XML using
the <link linkend="fn_xml_auto"><function>xml_auto()</function></link> function.</para>
<programlisting>
create procedure xmla (in q varchar)
{
declare st any;
st := string_output ();
xml_auto (q, vector (), st);
result_names (q);
result (string_output_string (st));
}
</programlisting>
<itemizedlist>
<listitem>
<para><emphasis>RAW</emphasis> mode produces an XML entity from
each row of the result set, and does not attempt to construct hierarchies.
Each row's data is enclosed in a ROW element and
each column is either an attribute or child element.</para>
<figure id="qssql2xml103" float="1"><title>SQL to XML using FOR XML RAW mode</title>
<graphic fileref="ui/qssql2xml103.png"/></figure>
<para>The same SQL statement containing the FOR XML syntax is used in the
visual interface shown above, and in the programmatical version shown below.
This is because both use the xml_auto() function for generating results.
In the visual interface once the settings and query have been confirmed
you press the "Execute" button to store the query in the specified DAV location.</para>
<programlisting>
xmla ('select "category"."CategoryID", "CategoryName",
"ProductName", "ProductID"
from "Demo".."Categories" "category", "Demo".."Products" as "product"
where "product"."CategoryID" = "category"."CategoryID" FOR XML RAW');
</programlisting>
<note><title>Note:</title><para>The xmla function is not a standard function but quick
utility for quickly rendering a text output for
the <link linkend="fn_xml_auto"><function>xml_auto()</function></link> function. The definition is
at the top of this section</para></note>
<para>The resulting XML from either ISQL or the saved links on the
visual interface will yield:</para>
<screen>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Chai" ProductID="1">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Chang" ProductID="2">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Guaran Fantastica" ProductID="24">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Sasquatch Ale" ProductID="34">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Steeleye Stout" ProductID="35">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="C(te de Blaye" ProductID="38">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Chartreuse verte" ProductID="39">
</ROW>
<ROW CategoryID="1" CategoryName="Beverages" ProductName="Ipoh Coffee" ProductID="43">
</ROW>
.....
</screen>
</listitem>
<listitem>
<para><emphasis>AUTO</emphasis> mode. A hierarchy is constructed
with one level for each table of the join
for which at least one column is selected. The table whose column is first
mentioned in the selection will be the topmost element, the next table its
child etc. Each level of the tree will consist of one type of element.
A parent element will have multiple children if consecutive rows do not
differ in the column values coming from the parent element. When a table's
column values differ from the previous row, the element and all children
thereof are closed and a new element is started, with children filled out
from other columns of the result set.</para>
<figure id="qssql2xml102" float="1"><title>SQL to XML using FOR XML AUTO mode</title>
<graphic fileref="ui/qssql2xml102.png"/></figure>
<para>The same SQL statement containing the FOR XML syntax is used in the
visual interface shown above, and in the programmatical version shown below.
This is because both use the xml_auto() function for generating results.
In the visual interface once the settings and query have been confirmed
you press the execute button to store the query in the specified DAV location.</para>
<programlisting>
xmla ('select "category"."CategoryID", "CategoryName",
"ProductName", "ProductID"
from "Demo".."Categories" "category", "Demo".."Products" as "product"
where "product"."CategoryID" = "category"."CategoryID" FOR XML AUTO');
</programlisting>
<note><title>Note:</title><para>The xmla function is not a standard function but quick
utility for quickly rendering a text output for
the <link linkend="fn_xml_auto"><function>xml_auto()</function></link> function. The definition is
at the top of this section</para></note>
<para>The resulting XML from either ISQL or the saved links on the
visual interface will yield:</para>
<screen>
<![CDATA[
<category CategoryID="1" CategoryName="Beverages">
<product ProductName="Chai" ProductID="1">
</product>
<product ProductName="Chang" ProductID="2">
</product>
<product ProductName="Guaran Fantstica" ProductID="24">
</product>
<product ProductName="Sasquatch Ale" ProductID="34">
</product>
<product ProductName="Steeleye Stout" ProductID="35">
</product>
<product ProductName="C(te de Blaye" ProductID="38">
</product>
<product ProductName="Chartreuse verte" ProductID="39">
</product>
<product ProductName="Ipoh Coffee" ProductID="43">
</product>
<product ProductName="Laughing Lumberjack Lager" ProductID="67">
</product>
.....
]]>
</screen>
<note><title>Note:</title>
<para>In contrast to the RAW mode AUTO produces results that are more reasonable and intuitive.
Only one category element is used for each category which contains all the children of that
category.</para></note>
</listitem>
<listitem>
<para><emphasis>EXPLICIT</emphasis> mode gives more control on the resulting tree's structure
while requiring a more elaborate query structure. In this mode, the query
will be a UNION ALL of many joins and each row will specify exactly one
element. Which type of element this is and where in the tree it will be
placed are determined by the values of the 2 first columns, TAG and
PARENT.</para>
<figure id="qssql2xml101" float="1"><title>SQL to XML using FOR XML EXPLICIT mode</title>
<graphic fileref="ui/qssql2xml101.png"/></figure>
<para>The same SQL statement containing the FOR XML syntax is used in the
visual interface shown above, and in the programmatical version shown below.
This is because both use the xml_auto() function for generating results.
In the visual interface once the settings and query have been confirmed
you press the execute button to store the query in the specified DAV location.</para>
<programlisting>
xmla ('
select 1 as tag, null as parent,
"CategoryID" as [category!1!cid],
"CategoryName" as [category!1!name],
NULL as [product!2!pid],
NULL as [product!2!name!element]
from "Demo".."Categories"
union all
select 2, 1, "category" ."CategoryID", NULL, "ProductID", "ProductName"
from "Demo".."Categories" "category", "Demo".."Products" as "product"
where "product"."CategoryID" = "category"."CategoryID"
order by [category!1!cid], 5
FOR XML EXPLICIT');
</programlisting>
<note><title>Note:</title><para>The xmla function is not a standard function but quick
utility for quickly rendering a text output for
the <link linkend="fn_xml_auto"><function>xml_auto()</function></link> function.
The definition is at the top of this section</para></note>
<para>The resulting XML from either ISQL or the saved links on the
visual interface will yield:</para>
<screen>
<CATEGORY CID="1" NAME="Beverages">
<PRODUCT PID="1">
<NAME>Chai</NAME></PRODUCT>
<PRODUCT PID="2">
<NAME>Chang</NAME></PRODUCT>
<PRODUCT PID="24">
<NAME>Guaran&#225; Fant&#225;stica</NAME></PRODUCT>
<PRODUCT PID="34">
<NAME>Sasquatch Ale</NAME></PRODUCT>
<PRODUCT PID="35">
<NAME>Steeleye Stout</NAME></PRODUCT>
<PRODUCT PID="38">
<NAME>C&#244;te de Blaye</NAME></PRODUCT>
<PRODUCT PID="39">
<NAME>Chartreuse verte</NAME></PRODUCT>
<PRODUCT PID="43">
<NAME>Ipoh Coffee</NAME></PRODUCT>
<PRODUCT PID="67">
<NAME>Laughing Lumberjack Lager</NAME></PRODUCT>
<PRODUCT PID="70">
<NAME>Outback Lager</NAME></PRODUCT>
<PRODUCT PID="75">
<NAME>Rh&#246;nbr&#228;u Klosterbier</NAME></PRODUCT>
<PRODUCT PID="76">
<NAME>Lakkalik&#246;&#246;ri</NAME></PRODUCT>
</CATEGORY>
<CATEGORY CID="2" NAME="Condiments">
<PRODUCT PID="3">
.....
</screen>
<note><title>Note:</title>
<para>In contrast again, the EXPLICIT mode produces exactly what we asked for.</para></note>
</listitem>
</itemizedlist>
</sect2>
<para>For more details about 'FOR XML, refer to <link linkend="forxmlforsql">
Rendering SQL Queries as XML</link> section of the XML Support chapter.</para>
<sect2 id="qsxmlcolumn"><title>Tables With XML Columns</title>
<para>XML is a new native Virtuoso datatype, based on an extension of LONG
VARCHAR for compatibility with ODBC clients, allows direct storage,
retrieval and querying of XML stored in a database table. This has always been
possible with Virtuoso utilizing <function>xml_tree_doc()</function> and friends
but now you can easily concentrate on what more important, the data, and not
which datatype to convert it to next.</para>
<tip><title>See Also:</title>
<para><link linkend="sqlrefxmldatatype">XML Column Type</link></para></tip>
</sect2>
</sect1>
<sect1 id="qsnntp"><title>NNTP</title>
<para>Virtuoso supports the Network News Transfer Protocol used by Internet
newsgroup forums. NNTP servers manage the global network of collected newsgroup
postings and represent a vast repository of targeted information archives.
As an NNTP aggregator, Virtuoso enables integration of multiple news forums
around the world. All news content in Virtuoso is dynamically indexed to
provide keyword searches, enabling rapid transformation of disparate text
data into information. Virtuoso also acts as an NNTP server, enabling
creation of new Internet and Intranet News Forums to leverage the
global knowledge base into eBusiness Intelligence.</para>
<sect2 id="qsnntpservsetup"><title>NNTP Server Setup</title>
<sect3 id="qsnntport"><title>Enable Server</title>
<para>Before the NNTP server can be used, it has to be enabled to listen
on the NNTP port. This change is made in the configuration file.</para>
<para>For more details, refer to <link linkend="newssrvenable">
Enable NNTP Server</link> section.</para>
</sect3>
<sect3 id="qsnntadd"><title>Create/Attach News Groups</title>
<para>The definition of news groups is held in system tables.</para>
<para>For more details on inserting news groups by SQL command, refer to
<link linkend="newssrvadd">Add Groups to NNTP Server</link> section.
See also the <link linkend="newssrvadm">Conductor News Server and Newsgroups Administration</link>
section, to setup the groups in the Visual Server Administration
Interface.</para>
</sect3>
<sect3 id="qsnntlimit"><title>Limit Groups</title>
<para>This is an optional step, appropriate if a news group is to be
limited for internal use only, or by a group of IP addresses.
This is achieved by creating an Access Control List (ACL) in the
DB.DBA.NEWS_ACL table. If no ACL is defined, then all groups are public
readable and writable.</para>
<para>For table details, refer to <link linkend="newssrvtables">
NNTP Server Tables</link> section.</para>
</sect3>
</sect2>
<sect2 id="qslocalvsremotegrps"><title>Local & Remote Groups</title>
<para>News groups may be Local such that they are the only instance,
or a master instance of a group. Remote groups are ones that are
replicated from other news servers.</para>
<para>See the <link linkend="newssrvadm">Conductor News Server and Newsgroups Administration</link>
section, to setup the groups in the Visual Server Administration
Interface.</para>
</sect2>
<sect2 id="qscliconn"><title>NNTP Client Setup</title>
<para>Virtuoso can make a client connection to an external news server
to receive newsgroup postings.</para>
<para>For more details, refer to the <link linkend="nntpclient">
NNTP Client</link> section.</para>
</sect2>
</sect1>
<sect1 id="vspquickstart">
<title>Dynamic Web Pages</title>
<para>Virtuoso provides an extensible array or dynamic methods for creating
data driven web pages. Through runtime hosting Virtuoso can directly host, store
and drive:</para>
<simplelist>
<member>PHP</member>
<member>JSP</member>
<member>ASP.Net</member>
<member>Perl</member>
<member>Python</member>
<member>Ruby</member>
<member>Natively - VSP and VSPX:</member>
</simplelist>
<para>Virtuoso Server Pages (VSP) is Virtuoso's specification for creating dynamic database driven Web
pages, these files have the extension ".vsp" and are identical in functionality to: ASP, PHP,
and JSP pages. A fundamental difference between VSP pages and others (PHP, ASP. and JSP pages)
is the fact that VSPs are specialized forms of Virtuoso Stored procedures which implies that
data is in-process rather than out-of-process, you do not have to complete a client-server
connection in order to actually bind to the data being used in a VSP page. The obvious benefit
being significant performance improvements over ASP, PHP, and JSP pages (which all bind to data
out-of-process).</para>
<para>
Since VSP is essentially Virtuoso PL in a web page you can do anything that PL can from or part of
a web page either directly or from interaction with the user. A massive advantage of using VSP
is that you do not have to worry about making connections to the database or the overhead of RPC's
because the HTTP server is built into Virtuoso. When you write a VSP page the
connection is assumed since you are already in Virtuoso!
VSP is server script and is therefore executed in the server as it is encountered on the page. For this reason client (JavaScript) and server
script cannot directly interact but can supplement each other. You can call JavaScript inside a VSP loop, for example, to manipulate something
that already exists on the page but you cannot pass variables by reference from VSP directly to JavaScript or vice versa.
Page flow control is managed using FORMs. The state of the page is defined in form fields such as INPUT boxes and TEXTAREA boxes and then
passed on to the next form or page using POST.
</para>
<para>Virtuoso Server Pages for XML (VSPX) is an XML based framework and
state-managed system similar to ASPX. Pages are written in XML to describe
templates of data-aware web-widgets. This massively reduces the code-effort
and avoids many bugs by providing the functionality for you, of which you specify
the data-source, be it XML, SQL or other, and which predefined control you want
it represented by. VSPX allows for custom-designed controls too. Since XML is a
key factor for VSPX so does XSLT for providing total separation between the
data, business logic and the layout on the web page.</para>
<tip><title>See Also:</title>
<para>The <link linkend="webappdevelopment">Web Application Development</link> Chapter.</para></tip>
</sect1>
<sect1 id="qsvspexamples"><title>VSP Examples</title>
<sect2 id="simpleforms">
<title>Simple HTML FORM usage</title>
<para>
We will start with a small example that shows a page that constitutes a FORM with data from the
user being sent when a submit button is pressed and then examine the elements and attributes
that are important to us at this stage.
</para>
<para>
Consider the following piece of HTML:
</para>
<programlisting>
<HTML>
<HEAD>
<TITLE>Simple FORM demo</TITLE>
</HEAD>
<BODY>
<FORM METHOD="POST" ACTION="formdemo_receiver.vsp">
<P>Test form, type some info and click Submit</P>
<INPUT TYPE="TEXT" NAME="myInput" />
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Submit" />
</FORM>
</BODY>
</HTML>
</programlisting>
<para>
All elements contained in the FORM tag are associated with that form.
This is how the data and the submit button
know what to do next, and which data to send, by the attributes of the FORM tag.
</para>
<para>
The METHOD attribute of the FORM TAG can be either GET or POST. The GET method allows the form submission to
be contained completely in a URL which can be advantageous in that it permits bookmarking in browsers,
but it also prevents form data from containing non-ASCII characters and restricts the amount of form
data that can be handled. The get method is limited by the maximum length of the URL that the
server and browser can process. To be safe, any form whose input might contain non-ASCII
characters or more than 100 characters should use METHOD="POST".
</para>
<para>
With the POST method, the form input is submitted as an HTTP POST request with the form data sent in the
body of the request. Most current browsers are unable to bookmark POST requests,
but POST does not entail the character encoding and length restrictions imposed by GET.
</para>
<para>
The ACTION attribute of FORM specifies the URI of the form handler. This will usually be another web page that
performs some action based on the data that is sent from the originating form. The URI could point to the same page
as the data originated and for pages that perform a well defined small set of functions it usually does.
When a page needs to manage multiple states there needs to be some flow control that can determine how the page
was reached whether it arrived as a result of someone clicking on the submit button or it is the first time the page has
been visited.
</para>
<para>
Now we will add some VSP to check the values of the parameters in the form. VSP markup is typically
contained in <?vsp ... VSP ... ?> blocks.</para>
<programlisting>
<HTML>
<HEAD>
<TITLE>Simple FORM demo</TITLE>
</HEAD>
<BODY>
<P>Last value sent:</P>
<?vsp
http(get_keyword('myInput', params, 'no value'));
?>
<FORM METHOD="POST" ACTION="formdemo.vsp">
<P>Test form, type some info and click Submit</P>
<INPUT TYPE="TEXT" NAME="myInput" />
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Submit" />
</FORM>
</BODY>
</HTML>
</programlisting>
<para>
This is the same example as above that now uses the same page for the form handler and displays the parameters each time.
The first time you click the button will take you to the same page and will display whatever you typed in the field last time.
</para>
<para>
The VSP block uses two functions nested. The http function allows you to send data to the HTTP client, the browser.
What we send to the browser is the result of the get_keyword function. The get_keyword function has 3 parameters, it searches
for the keyword-value pair (keyword=value) where keyword matches the first parameter (in this case 'myInput') in array passed in
the second parameter, and returns the value if one is found otherwise will return the 3rd parameter in the function 'no value'.
The params array is a special array that contains all page parameters.
</para>
<para>
Now we will extend this further to add some conditional control so that if a value was entered we can respond directly to it.
We will also use a variable this time, which must be declared first.
</para>
<programlisting>
<HTML>
<HEAD>
<TITLE>Simple FORM demo</TITLE>
</HEAD>
<BODY>
<?vsp
declare _myInput varchar;
_myInput := get_keyword('myInput', params, 'no value');
if (_myInput <> 'no value')
{ http('<P>Hello, ');
http(_myInput);
http('</P>');
}
else
{ http('<P>Please enter you name</P>');
}
?>
<FORM METHOD="POST" ACTION="formdemo.vsp">
<P>Test form, type some info and click Submit</P>
<INPUT TYPE="TEXT" NAME="myInput" />
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Submit" />
</FORM>
</BODY>
</HTML>
</programlisting>
<para>
We will now extend this even further to control the whole contents of the page. In this example we will see that VSP and HTML
can be interleaved.
</para>
<programlisting>
<HTML>
<HEAD>
<TITLE>Simple FORM demo</TITLE>
</HEAD>
<BODY>
<?vsp
declare _myInput varchar;
declare Mode varchar;
_myInput := get_keyword('myInput', params, 'no value');
Mode := get_keyword('submit', params, '');
if (Mode = 'submit')
{
?>
<P>Hello, <?vsp http(_myInput); ?>
</P>
<?vsp
}
else
{
?>
<P>Please enter you name</P>
<FORM METHOD="POST" ACTION="formdemo.vsp">
<INPUT TYPE="TEXT" NAME="myInput" />
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Submit" />
</FORM>
<?vsp
}
?>
</BODY>
</HTML>
</programlisting>
<para>
</para>
</sect2>
<sect2 id="vspdbinout">
<title>Manipulating Database Data in VSP</title>
<para>The following example demonstrates a basic page that has form based
flow control, takes input from the user to put into the database and then displays the results.
This simple example can be extended to perform more substantial operations by adding a few more
inputs, buttons and states.
</para>
<para>
Things to look at:
</para>
<simplelist>
<member>get_keyword is used to extract parameters from the form that were posted last time</member>
<member>the current mode is determined by the value of the submit parameter</member>
<member>straight HTML can be inline with VSP flow control which is how the whole page is contained in an <emphasis>if</emphasis> condition.</member>
</simplelist>
<programlisting>
<HTML>
<HEAD></HEAD>
<BODY>
<form method="POST" action="simpletest.vsp">
<?vsp
-- assumes that you have a table db..test_table(txt varchar(2000))
-- declare variables for use
declare _mode varchar;
declare _theValue varchar;
declare _stmt varchar;
-- get the current mode and continue accordingly
_mode := get_keyword ('submit', params, 'default');
if (_mode = 'Submit')
{
-- if a submit was detected then insert the value into the DB
_theValue := get_keyword('myTxtBox', params, 'no comment');
_stmt := sprintf('insert into db..test_table(txt) values(\'%s\')', _theValue);
exec (_stmt, '', '', '', '', '', '');
?>
<P>Thank you for your submission.</P>
<?vsp
} else {
?>
<DIV>
<DIV>Simple test form, enter some text and hit submit.</DIV>
<DIV><textarea name="other" rows="3" cols="64"></textarea></DIV>
</DIV>
<DIV><input type="submit" name="submit" value="Submit"></DIV>
<HR />
<H2>Values currently in table</H2>
<TABLE>
<?vsp
for (select txt from db..test_table) do
http(sprintf('<TR><TD>%s</TD></TR>', txt));
?>
</TABLE>
<?vsp
}
?>
</form>
</BODY>
</HTML>
</programlisting>
<para>You may wish to offload some of the functionality of the page to a stored procedure
and call that from that page. You may do this to improve readability of the page or there may be
a series of functions that you repeat such as displaying a particular table in some format.
</para>
<para>You could used a procedure as follows:
</para>
<programlisting>
create procedure table_list()
{
http('<H2>Values currently in table</H2>');
http('<TABLE>');
for (select txt from db..test_table) do
http(sprintf('<TR><TD>%s</TD></TR>', txt));
http('</TABLE>');
};
</programlisting>
<para>
You could then call this in instead of defining the query and table layout as above.
</para>
<para>The aspects of VSP are explained in more detail in the following sections.</para>
</sect2>
<sect2 id="vspequi"><title>Simple Tutorial</title>
<para>The following example prints the result from executing explain:</para>
<programlisting><![CDATA[
<?vsp
declare meta, data any;
exec ('explain (?)', null, null, vector ('select * from sys_users'), 0, meta, data);
foreach (any row in data) do
{
http_value (row[0], 'p');
}
?>
]]></programlisting>
<para>The vsp can be also written like this:</para>
<programlisting><![CDATA[
<?vsp
declare meta, data any;
exec ('explain (?)', null, null, vector ('select * from sys_users'), 0, meta, data);
for (declare i,l int, i := 0, l := length (data); i < l; i := i + 1)
{
http_value (data[i][0], 'p');
}
?>
]]></programlisting>
</sect2>
</sect1>
<sect1 id="qshostingplugs"><title>Third-Party Runtime Typing, Hosting & User Defined Types</title>
<para>All barriers are broken. If Virtuoso does not readily provide the data type that you require,
then make your own. If you want a database trigger to test data against existing externally
developed logic, then do that too. Virtuoso has been designed with open-design in mind giving
ultimate flexibility. These are the systems current available (linked to the appropriate section
of this documentation):
</para>
<itemizedlist>
<listitem>
<para>
<link linkend="runtimehosting">Runtime Hosting</link>
</para>
<para>support other environments and/or languages in-process with Virtuoso and utilizing
Virtuoso storage methods such as DAV for replication and roll-out benefits.
</para>
<itemizedlist>
<listitem><para><link linkend="rthclr">CLR</link> & <link linkend="rthclrmono">Mono</link></para>
</listitem>
<listitem><para><link linkend="javaextvm">Java</link> & <link linkend="rthjsp">Jakarta JSP</link></para>
</listitem>
<listitem><para><link linkend="servphpext">PHP</link></para>
</listitem>
</itemizedlist>
</listitem>
<listitem><para><link linkend="vseplugins">Plugins</link></para>
<para>enable support for other scripting langauges.</para>
<itemizedlist>
<listitem><para><link linkend="perlhosting">Perl</link></para>
</listitem>
<listitem><para><link linkend="pythonhosting">Python</link></para>
</listitem>
<listitem><para><link linkend="rubyhosting">Ruby</link></para>
</listitem>
</itemizedlist>
</listitem>
<listitem><para><link linkend="cinterface">Extensibility</link></para>
<para>the above features are applications of one or another of these interfaces, which are
provided so that you have the potential to enhance Virtuoso further for more custom requirements.
</para>
<itemizedlist>
<listitem><para><link linkend="cinterface">Virtuoso Server Extension Interface (VSEI)</link></para>
</listitem>
<listitem><para><link linkend="vseplugins">VSEI Plugins</link></para>
</listitem>
<listitem><para><link linkend="udt">User-Defined Types (UDT)</link></para>
</listitem>
<listitem><para><link linkend="createassembly">Hosted/Imported Assemblies/Classes</link></para>
</listitem>
</itemizedlist>
</listitem>
<listitem><para><link linkend="webservices">Web/Service Exposure</link></para>
<para>every part of Virtuoso can be view, interacted with or consumed by some third-party
via a plethora of interfaces, to name a few:
</para>
<itemizedlist>
<listitem><para><link linkend="soap">SOAP</link></para>
</listitem>
<listitem><para><link linkend="wsdl">WSDL</link></para>
</listitem>
<listitem><para><link linkend="webappdevelopment">Static/Dynamic Web Content</link></para>
</listitem>
<listitem><para><link linkend="webandxml">XML/XSLT</link></para>
<para><link linkend="xmlstoragesystem">XML Storage System</link></para>
<para><link linkend="xmlrpc">XML RPC</link></para>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</sect1>
<sect1 id="troutips"><title>Troubleshooting Tips</title>
<sect2 id="tipsgen"><title>General Tips</title>
<para>The following sections are some common faults and tips.
For a complete list of troubleshooting tips, please visit
sources that are listed in
the <link linkend="support">Product Support</link> section of
the <link linkend="appendixa">Appendix</link>.</para>
</sect2>
<sect2 id="tipsdbnotstart"><title>DBMS Server will not start</title>
<para>If the Virtuoso DBMS server won't start, there could be 3 reasons.</para>
<simplelist>
<member>It is already running</member>
<member>It died earlier</member>
<member>It terminated normally earlier, but the virtuoso.lck file was
not deleted</member>
</simplelist>
<para>When the DBMS server starts up, it creates a file in the bin
directory named "virtuoso.lck". If this file is present, a new
instance cannot run. If you are certain that the DBMS isn't running,
then you can delete the virtuoso.lck file and then start it from the
Services icon in the Control Panel, or by using the command
"<emphasis>virtuoso +service start</emphasis>" in the
virtuoso directory. You can check if virtuoso is running from the Task
Manager, and you can shut it down using the command
"<emphasis>virtuoso +service stop</emphasis>".</para>
<figure id="image32" float="1">
<title>Command Prompt</title>
<graphic fileref="virttour32.gif" width="525px" depth="184px"/>
</figure>
</sect2>
<sect2 id="tipscasemode"><title>Case Mode</title>
<para>Whenever a database object is referenced, all names (schema, owner,
table and column) should preferably be placed in double-quotes, exactly as it appears in
the catalog. This way, the object name in the Virtuoso catalog will be correctly
referenced. If names are not quoted, then the case of the object name will be
determined by the value of the CaseMode property in the virtuoso.ini file:</para>
<itemizedlist mark="bullet">
<listitem>The default files supplied with Virtuoso specify a CaseMode of 2, which is a case insensitive mode that preserves the declaration case of identifiers. If there is no supplied ini file, the default value of CaseMode is 1.</listitem>
<listitem>A CaseMode of 1 specifies the upper case mode, which is most commonly used in SQL databases, e.g. Oracle. In the upper case mode, all unquoted identifiers are converted to upper case by the SQL parser. If identifiers are not quoted, the case in which they are entered is irrelevant.</listitem>
<listitem>The identifier quote character is the double quote ("). Quoted identifiers are processed in the case they are written in and are thus case sensitive.</listitem>
<listitem>SQL reserved words are case insensitive in all case modes.</listitem>
<listitem>If CaseMode is 0 or absent, identifiers will be treated as case sensitive in all situations, whether quoted or not.</listitem>
<listitem>If an identifier's name is equal to a SQL reserved word, e.g. TABLE, it must be quoted ("TABLE") in order to be used as an identifier.</listitem>
<listitem>If an identifier contains non-alphanumeric characters, e.g. space, '-' etc. it must be quoted regardless of CaseMode.</listitem>
<listitem>Although CaseMode can be changed at any time it should only be set at database creation. Changing the CaseMode may result in view or procedure code becoming invalid if it relies on specific case conventions.</listitem>
</itemizedlist>
<!--para The following table describes when an identifier name will
match the catalog entry.</para>
<table colsep="1" frame="all" rowsep="0" shortentry="0" tocentry="1" tabstyle="decimalstyle" orient="land" pgwide="0">
<title>Case mode options</title>
<tgroup align="char" charoff="50" char="." cols="4">
<colspec align="left" colnum="1" colsep="0" colwidth="20pc"/>
<thead>
<row>
<entry>CaseMode</entry>
<entry>Identifiers in Virtuoso Catalog</entry>
<entry>Unquoted Identifiers In Query</entry>
<entry>Result</entry>
</row>
</thead>
<tbody>
<row>
<entry>0 - Case Sensitive</entry>
<entry>Lower/Mixed case</entry>
<entry>Lower/Mixed case</entry>
<entry>Will match</entry>
</row>
<row>
<entry>0 - Case Sensitive</entry>
<entry>Lower/Mixed case</entry>
<entry>Upper case</entry>
<entry>Will not match</entry>
</row>
<row>
<entry>0 - Case Sensitive</entry>
<entry>Upper case</entry>
<entry>Lower/Mixed case</entry>
<entry>Will not match</entry>
</row>
<row>
<entry>0 - Case Sensitive</entry>
<entry>Upper case</entry>
<entry>Upper case</entry>
<entry>Will match</entry>
</row>
<row>
<entry>1 - Translate to Upper </entry>
<entry>Lower/Mixed case</entry>
<entry>Lower/Mixed case</entry>
<entry>Will not match</entry>
</row>
<row>
<entry>1 - Translate to Upper </entry>
<entry>Lower/Mixed case</entry>
<entry>Upper case</entry>
<entry>Will not match</entry>
</row>
<row>
<entry>1 - Translate to Upper </entry>
<entry>Upper case</entry>
<entry>Lower/Mixed case</entry>
<entry>Will match</entry>
</row>
<row>
<entry>1 - Translate to Upper </entry>
<entry>Upper case</entry>
<entry>Upper case</entry>
<entry>Will match</entry>
</row>
</tbody>
</tgroup>
</table-->
<figure id="image33" float="1">
<title>Virtuoso.ini file in notepad</title>
<graphic fileref="virttour33.gif" width="531px" depth="394px"/>
</figure>
</sect2>
</sect1>
</chapter>
|