NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: patrick de laet on September 11, 2015, 02:34:43 AM
-
(NetTalk 6 - handcoded NetWebPage procedure)
I have to return a SOAP WSDL definition to everyone who requests www.xxxxx.com?wsdl.
How do I test in my netWebpage for the presence of the ?wsdl parameter?
I tried ...
If p_web.IfExistsValue('wsdl')
message('yes')
Else
message('no')
End
But it doesn't work for www.xxxxx.com?wsdl
It does work for www.xxxxx.com?wsdl=1
but this is not an option.
(and going to NetTalk 8 is also not an option, because my program is still in C6)
(and going to C9 is not an option, because I don't have the time for the moment :-) )
regards
patrick de laet
-
Hi Patrick,
I think just do an instring on
p_web.WholeURL
eg
if instring('?wsdl',lower(p_web.WholeURL),1,1)
! whatever.
Cheers
Bruce