blob: f8e1f9773645358fc39098c92fb77a2a431883d9 [file] [log] [blame]
/* header.h
Defines SOAP Header data structure shared by client and service modules
As an example, authentication information can be included in the header.
Copyright (C) 2000-2002 Robert A. van Engelen. All Rights Reserved.
*/
//gsoap h schema namespace: http://websrv.cs.fsu.edu/~engelen/h.xsd
struct h__authentication
{ char *userid;
char *passwd;
};
struct SOAP_ENV__Header
{ struct h__authentication *h__credentials;
};