|
|
Browse by Tags
All Tags » Java (RSS)
-
Download the example code.
I was asked to put together some teaching materials for a Data Structures class as the second part of their introduction to threading. I decided to go ahead and jump right in to the Java Concurrency API and needed a simple example to illustrate the concepts. I adapted this from an example in ...
-
-
This introduction to XML Web Services examines the standards which make up the Web Service specification, how Web Services enable the Service Oriented Architecture, and walks through the development of a simple Web Service using Java and the Eclipse IDE.
-
This tutorial walks through the process of consuming an XML Web Service from Java using the Java Web Services Developers Pack.
Download the source code for the example.[Video]
-
This tutorial walks through the process of exposing a simple Web Service using Java and the Java Web Services Developers Pack.
Download the source code for the example.[Video]
-
This video is a recording of a distance-learning lecture I did on XML Web Services. I cover the standards that make up the Web Service specification, how Web Services enable the Service Oriented Architecture, and walk through the development of a simple Web Service using Java and the Java Web Services Developers Pack.
-
Java provides a simple way to call native (c, c++, etc) functions from within Java. A class can define a "native" method that, when invoked, actually calls some function on the native side. In this post, I am going to walk through a simple example using Java 1.4.2 and the MINGW C++ compiler in windows.
The Java Side: ...
-
XSLT allows you to transform one XML document type to another. For instance, you may have a XML document containing your hours logs for different projects:
XML Hours Log
<HoursLog>
<Entry>
<ProjectName>My XML ...
-
This example will get you started in the exciting world of XML parsing with Java and DOM!
Test.xml
<root>
<foo>someFoo</foo>
<child>
<subchild name="chris">valueOne</subchild>
...
|
|
|