You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/kresources/groupwise/soap
Timothy Pearson d6d75dc9ff
Rename KApplication to TDEApplication to avoid conflicts with KDE4
11 years ago
..
patches Additional kde to tde renaming 13 years ago
CMakeLists.txt Additional kde to tde renaming 13 years ago
GroupWiseBinding.nsmap Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
Makefile.am Rename additional instances of KDE to TDE 13 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
contactconverter.cpp Remove additional unneeded tq method conversions 13 years ago
contactconverter.h Additional kde to tde renaming 13 years ago
events.xsd Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
extractxml.pl Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
fixup_groupwise.h.pl Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
groupwise.wsdl Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
groupwiseserver.cpp Rename additional global TQt functions 12 years ago
groupwiseserver.h Remove spurious TQ_OBJECT instances 12 years ago
gwconverter.cpp Rename old tq methods that no longer need a unique name 13 years ago
gwconverter.h Additional kde to tde renaming 13 years ago
gwjobs.cpp Fix a few strings that contain Status 13 years ago
gwjobs.h Trinity Qt initial conversion 14 years ago
incidenceconverter.cpp Fix a few strings that contain Status 13 years ago
incidenceconverter.h Additional kde to tde renaming 13 years ago
ksslsocket.cpp Rename KApplication to TDEApplication to avoid conflicts with KDE4 11 years ago
ksslsocket.h Remove spurious TQ_OBJECT instances 12 years ago
methods.xsd Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
soapC.cpp Fix a few strings that contain Status 13 years ago
soapClient.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
soapGroupWiseBindingProxy.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
soapH.h Fix a few strings that contain Status 13 years ago
soapStub.h Fix a few strings that contain Status 13 years ago
soapdebug.cpp Rename KApplication to TDEApplication to avoid conflicts with KDE4 11 years ago
stdsoap2.cpp Fix inadvertent TQt changes 12 years ago
stdsoap2.h Fix inadvertent TQt changes 12 years ago
stl.h Fixed remaining GPL address zip codes 15 years ago
stldeque.h Fixed remaining GPL address zip codes 15 years ago
stllist.h Fixed remaining GPL address zip codes 15 years ago
stlset.h Fixed remaining GPL address zip codes 15 years ago
stlvector.h Fixed remaining GPL address zip codes 15 years ago
typemap.dat Fixed remaining GPL address zip codes 15 years ago
types.xsd Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README

This directory contains the bindings for the Groupwise SOAP interface. They
consist of generated binding classes and the classes encapsulating
the SOAP for use by KDE programs.

The bindings are generated with gSoap 2.7.0d (see
http://www.cs.fsu.edu/~engelen/soap.html) from the WSDL description in the file
groupwise.wsdl. Generate the stub classes and
interface implementations by calling "make stubs". The gSoap binaries have to be
in your PATH for this.

FIXME: The generated code produces lots of compiler warnings. They should be 
properly fixed as "[t]he generated code is not safe, so the warnings are correct,
even if we currently use it in a way which works." (Cornelius Schumacher)

*) "Validation constraint violation: data type mismatch  in element <gwt:security>"

is caused by gSoap's inablity to parse gwt:security tags, creating a spurious error.  It can be fixed by editing soapC.cpp by hand and changing soap_s2ngwt__ItemSecurity(), at about lines
12490 in the generated code,

Comment out the s2QName call and change the last param to soap_code to s
//soap_s2QName(soap, s, &t);
map = soap_code(soap_codes_ngwt__ItemSecurity, s);

*) "delete" in generated code. 

The GroupWise WSDL uses the reserved word "delete" in two contexts.  gSOAP is not smart enough to catch this and rewrite it, so you have to do this by hand.  AgeAction and DeltaSyncType are the two types affected by this, so make sure you are consistent in renaming them.  There is a sed call in Makefile.am/stubs but this does not catch all cases.