Thread [Dancer] Fehlermeldung beim Aufrufen einer Routine
(10 answers)
Opened by modi at 2013-03-13 14:56
In Zeile 3 Deines Codes steht u.a.
SOAP::Data->name(xml => $XY)) Der angegebene Name "xml" müsste dann bei der Ausführung der Methode als XML-Tag ( <xml>...</xml>) verwendet werden. Das ist aber verboten: http://www.w3.org/TR/xml/#sec-common-syn Names beginning with the string "xml", or with any string which would match (('X'|'x') ('M'|'m') ('L'|'l')), are reserved for standardization in this or future versions of this specification. Der Code von SOAP:Lite in Lite.pm kontrolliert, ob Namen mit xml o.ä. anfangen, und bricht ab (wie Muffi schon gesagt hat.) Last edited: 2014-03-18 14:53:34 +0100 (CET) |