<< < 64 65 66 67 68 69 70 71 72 73 74 > >>   ∑:8897  Sort:Date

HelloServer12.php - First SOAP 1.2 Server Application
This section provides a tutorial example on how to write a simple SOAP 1.2 server application. The HelloServer.php example defines a hello() function, adds it to the SOAP server, waits for the client program to call.
2016-10-14, ∼681🔥, 2💬

Connection Pooling with Commons DBCP BasicDataSource
This section provides a tutorial example that shows you how to use the Commons DBCP BasicDataSource class to manage the connection pool with JavaBean style properties.
2023-03-13, ∼680🔥, 1💬

💬 2023-03-13 Moenke: "I asked to initialize 10 connections, but I see only 8 connections on MySQL server. Not sure why." -> Because maxTotal conencti...

WSDL 1.1 and SOAP 1.2 Examples - Document and RPC Styles
This chapter provides tutorial notes and example codes on WSDL 1.1 Binding Extension for SOAP 1.2. Topics include SOAP Body message styles and encoding options; 'document' vs. 'rpc' styles; 'literal' vs. 'encoded' encoding options; 'document'/'literal' WSDL 1.1 example; 'rpc'/'encoded' WSDL 1.1 exam...
2022-10-01, ∼680🔥, 0💬

PHP SOAP Extension for WSDL
This chapter provides tutorial notes and example codes on SOAP Extension in PHP. Topics include downloading and installing PHP; configuring SOAP Extension; loading WSDL 2.0 documents and getting errors.
2016-02-08, ∼678🔥, 1💬

10600: Linear A
This section provides a quick summary of the Unicode code point block: 'Linear A', which contains 384 code points to represent Linear A alphabets used in the Linear A language.
2024-01-23, ∼677🔥, 0💬

XML-to-JSON Conversion Library for Java
This section provides a tutorial example on how to use a 'JSON-java' conversion library offered by json.org to perform XML-to-JSON conversions in a Java program. The output JSON document is good, only if input XML document contains well structured data.
2022-10-01, ∼677🔥, 0💬

1F700: Alchemical Symbols
This section provides a quick summary of the Unicode code point block: 'Alchemical Symbols', which contains 128 code points to represent alchemical symbols.
2024-01-23, ∼674🔥, 0💬

1FA70: Symbols and Pictographs Extended-A
This section provides a quick summary of the Unicode code point block: 'Symbols and Pictographs Extended-A', which contains 144 code points to represent Symbols and Pictographs Extended-A alphabets used in the Symbols and Pictographs Extended-A language.
2024-01-23, ∼674🔥, 0💬

Concurrent Mark-Sweep (CMS) Collector - "+XX:+UseConcMarkSweepGC"
This chapter provides tutorial notes and example codes on the Concurrent Mark-Sweep Collector specified by the '+XX:+UseConcMarkSweepGC' JVM option. Topics include introduction to Concurrent Mark-Sweep (CMS) Collector; CMS Collector log message format; demonstration of reduction of stop-the-world by...
2022-10-01, ∼674🔥, 0💬

GetCurrencyRate - Usage Description
This section describes the free Web service, GetCurrencyRate, provided by kowabunga.net. It allows you to get the exchange rate between two given currencies on a given date.
2025-10-24, ∼673🔥, 2💬

💬 2025-10-24 Herong: Yes. This service is no longer available.

💬 2025-10-23 alex: it doesnt work

3400: CJK Unified Ideographs Extension A
This section provides a quick summary of the Unicode code point block: 'CJK Unified Ideographs Extension A', which contains 6592 code points to represent additional Chinese characters used in CJK (Chinese, Japanese, and Korean) languages.
2024-01-23, ∼673🔥, 0💬

"NCName" Datatype Values and Representations
This section describes the built-in datatype 'NCName' designed to support XML element and attribute names with no namespace prefix. 'NCName', stands for 'Non-Colonized Name', datatype is derived from 'Name' by removing ':' from the 'Name' value pattern.
2022-10-01, ∼673🔥, 0💬

Identity Element on an Elliptic Curve
This section describes the 'identity element', which is the 'infinity point' in our addition and subtraction operations on an elliptic curve.
2022-10-01, ∼673🔥, 0💬

JDBC for SQL Server - Herong's Tutorial Examples
This JDBC tutorial book is a collection of notes and sample codes written by the author while he was learning JDBC technology himself. Topics include installing JDK and SQL Server; using SQL Server JDBC and JDBC-ODBC Bridge drivers; database connection URLs; introduction to Result Set, Meta Data, Pr...
2022-10-01, ∼673🔥, 0💬

Validating XML Documents with Assigned XSD
This section describes a tutorial example on how to validate an XML document with the assigned XML Schema file (XSD) using XMLPad.
2019-09-19, ∼673🔥, 1💬

GetCountries - Request Message Sample
This section provides a request message sample of GetCountries Web service.
2016-06-08, ∼673🔥, 1💬

💬 2016-06-08 TIm Bishop: Grateful!

jmc - Java Mission Control
This chapter provides tutorial notes on 'jmc' Java Mission Control tool. Topics include introduction of jmc; launching jmc; viewing JVM dashboard; browsing MBean objects; managing monitoring triggers.
2022-10-01, ∼672🔥, 0💬

2026 年年历 - 马年
中国年历 - 2026 年年历 - 马年
2022-10-04, ∼670🔥, 0💬

ReverseEchoServer.java - A Multi-Connection Socket Server
This section provides a tutorial example on how to write a network application, ReverseEchoServer.java, that creates a server socket and listens for multiple remote socket connection requests. It creates a new execution thread each time, for each new connection.
2022-10-01, ∼670🔥, 0💬

"SELECT COUNT(*)" on InnoDB Table
This section provides a tutorial example showing why 'SELECT COUNT(*)' is slow on InnoDB tables. It does a full table scan by reading all data pages to count the number of rows.
2022-10-01, ∼670🔥, 0💬

rpc/encoded Example - Get Exchange Rate
This section provides a tutorial example on writing a WSDL 1.1 example that uses SOAP 1.2 over HTTP with rpc/encoded as the message style and the encoding option.
2023-12-11, ∼669🔥, 1💬

"keytool -genkeypair" - Generating Keys and Self-Signed Certificates
This section provides a tutorial example on how to use the 'keytool -genkeypair' command to generate a new pair of keys and self-signed certificate in a new 'keystore' file.
2022-10-01, ∼669🔥, 0💬

ASP Object Example - Passing Values between Pages
This section provides a tutorial example on how to pass values from one page to another. This example is a very simple registration application with two ASP pages.
2022-10-01, ∼669🔥, 0💬

"fop -xml -xsl -foout" - XSLT Transformations
This section provides a tutorial on how to run the 'fop -xml -xsl -foout' command to convert an XML file to another XML or text file using a XSLT file with XSLT transformation templates.
2022-10-01, ∼669🔥, 0💬

<< < 64 65 66 67 68 69 70 71 72 73 74 > >>   ∑:8897  Sort:Date