* Copyright (C) 1995-2005, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: client.c,v 1.288 2005-06-21 07:33:09 adam Exp $
+ * $Id: client.c,v 1.289 2005-06-23 13:09:42 adam Exp $
*/
#include <stdio.h>
static int cmd_xmles(const char *arg)
{
+ int noread = 0;
+ char oid_str[51];
+ int oid_value_xmles = VAL_XMLES;
Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
req->taskSpecificParameters = ext;
- req->packageType = yaz_oidval_to_z3950oid(out, CLASS_EXTSERV,
- VAL_XMLES);
ext->direct_reference = req->packageType;
ext->descriptor = 0;
ext->indirect_reference = 0;
ext->which = Z_External_octet;
ext->u.single_ASN1_type = (Odr_oct *) odr_malloc (out, sizeof(Odr_oct));
+ sscanf(arg, "%50s%n", oid_str, &noread);
+ if (noread == 0)
+ {
+ printf("Missing OID for xmles\n");
+ return 0;
+ }
+ arg += noread;
+ oid_value_xmles = oid_getvalbyname(oid_str);
+ if (oid_value_xmles == VAL_NONE)
+ {
+ printf("Bad OID: %s\n", oid_str);
+ return 0;
+ }
+
if (parse_cmd_doc(&arg, out, (char **) &ext->u.single_ASN1_type->buf,
&ext->u.single_ASN1_type->len, 0) == 0)
return 0;
+ req->packageType = yaz_oidval_to_z3950oid(out, CLASS_EXTSERV,
+ oid_value_xmles);
send_apdu(apdu);
return 2;
{"itemorder", cmd_itemorder, "ill|item <itemno>",NULL,0,NULL},
{"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
{"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
- {"xmles", cmd_xmles, "<doc>",NULL,0,NULL},
+ {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
{"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
{"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
{"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
dnl YAZ Toolkit, Index Data 1994-2005
dnl See the file LICENSE for details.
-dnl $Id: configure.in,v 1.182 2005-06-08 09:11:17 adam Exp $
+dnl $Id: configure.in,v 1.183 2005-06-23 13:09:42 adam Exp $
AC_INIT(include/yaz/yaz-version.h)
AM_INIT_AUTOMAKE(yaz, 2.1.9)
AM_MAINTAINER_MODE
])
fi
dnl ------ various functions
-AC_CHECK_FUNCS(vsnprintf gettimeofday poll strerror_r usleep)
+AC_CHECK_FUNCS(vsnprintf gettimeofday poll strerror_r usleep fopen64)
if test "$ac_cv_func_poll" = "yes"; then
AC_CHECK_HEADERS(sys/poll.h)
fi
<!--
- $Id: yaz-client-commands.xml,v 1.9 2005-06-21 07:34:26 adam Exp $
+ $Id: yaz-client-commands.xml,v 1.10 2005-06-23 13:09:42 adam Exp $
Commands for YAZ client.
Included in both manual and man page for yaz-client.
-->
<varlistentry id="command-xmles"><term>
<literal>xmles</literal>
+ <replaceable>OID</replaceable>
<replaceable>doc</replaceable>
</term>
<listitem>
- <para>Sends XML Extended Services request using the doc given.
- This is a privately defined Extended Service using OID
- 1.2.840.10003.9.1000.105.4.
+ <para>Sends XML Extended Services request using the OID and doc given.
</para>
</listitem>
</varlistentry>