Index: /trunk/Nebulous/nebclient/Makefile.am
===================================================================
--- /trunk/Nebulous/nebclient/Makefile.am	(revision 2948)
+++ /trunk/Nebulous/nebclient/Makefile.am	(revision 2948)
@@ -0,0 +1,7 @@
+lib_LTLIBRARIES = libidataclient.la
+libidataclient_la_SOURCES =\
+    idataclient.c\
+    stdsoap2.c\
+    soapC.c\
+    soapClient.c\
+    xmalloc.c
Index: /trunk/Nebulous/nebclient/bootstrap
===================================================================
--- /trunk/Nebulous/nebclient/bootstrap	(revision 2948)
+++ /trunk/Nebulous/nebclient/bootstrap	(revision 2948)
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+aclocal \
+&& automake --gnu --add-missing \
+&& autoconf
Index: /trunk/Nebulous/nebclient/configure.ac
===================================================================
--- /trunk/Nebulous/nebclient/configure.ac	(revision 2948)
+++ /trunk/Nebulous/nebclient/configure.ac	(revision 2948)
@@ -0,0 +1,39 @@
+dnl Copyright (C) 2005  Joshua Hoblitt
+dnl
+dnl $Id: configure.ac,v 1.1 2005-01-11 01:08:04 jhoblitt Exp $
+
+dnl Process this file with autoconf to produce a configure script.
+AC_INIT(idataclient, 0.01)
+AC_REVISION($Revision: 1.1 $)
+
+AM_INIT_AUTOMAKE(idataclient, 0.01)
+
+dnl Checks for programs.
+
+dnl Checks for libraries.
+
+dnl Checks for header files.
+AC_HEADER_STDC
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+dnl Checks for typedefs, structures, and compiler characteristics.
+AC_C_CONST
+AC_TYPE_SIZE_T
+AC_HEADER_TIME
+AC_STRUCT_TM
+
+dnl Checks for library functions.
+AC_PROG_GCC_TRADITIONAL
+AC_FUNC_STRFTIME
+AC_CHECK_FUNCS(ftime gettimeofday mktime putenv regcomp select socket strerror strstr strtod)
+
+dnl libtool needs top_buildir set before it's called
+for top_builddir in . .. ../.. $ac_auxdir $ac_auxdir/..; do
+  test -f $top_builddir/configure && break
+done
+
+AC_DISABLE_FAST_INSTALL
+AC_PROG_LIBTOOL
+AC_SUBST(LIBTOOL_DEPS)
+
+AC_OUTPUT(Makefile)
Index: /trunk/Nebulous/nebclient/test.c
===================================================================
--- /trunk/Nebulous/nebclient/test.c	(revision 2948)
+++ /trunk/Nebulous/nebclient/test.c	(revision 2948)
@@ -0,0 +1,29 @@
+#include <stdio.h>
+#include <unistd.h>
+#include "idataclient.h"
+
+main (int argc, char **argv) {
+    idataServer     server;
+    char            *URI;
+    int             fh;
+
+    idataServerInit(&server);
+
+    fh = idataCreate(&server, argv[1], 0, NULL, NULL, &URI);
+
+    if (fh > 0) {
+        printf( "uri is %s\n", URI );
+
+        idataFree(URI);
+
+        if(close(fh) != 0){
+            perror("close");
+        }
+    } else if (fh == 0) {
+        printf( "local error\n" );
+    } else {
+        printf( "server error: %s\n", idataServerErr(&server) );
+    }
+
+    idataServerCleanup(&server);
+}
