Die Suche ergab 11 Treffer

von Richard_M
Mittwoch 28. März 2007, 12:46
Forum: Netzwerkprogrammierung
Thema: Kleines Web Service Tutorial mit ZSI für Python
Antworten: 11
Zugriffe: 3669

Hallo, ich habe euch eben noch den Source Code des Projektes unter http://www.mutschler-net.de zum download bereitgestellt.
Gruß, Richard
von Richard_M
Dienstag 20. März 2007, 18:54
Forum: Netzwerkprogrammierung
Thema: Python + PHP via XMLRPC?
Antworten: 5
Zugriffe: 995

Hallo, habe mich etwas mit Webservices unter verwendung der ZSI Bibliothek in Python beschäftigt. Ein kleines Tutorial zu dem Thema findest du unter: http://www.mutschler-net.de/18801.html.
Vielleicht hilft es dir ja weiter,
Gruß Richard
von Richard_M
Dienstag 20. März 2007, 08:20
Forum: Netzwerkprogrammierung
Thema: Kleines Web Service Tutorial mit ZSI für Python
Antworten: 11
Zugriffe: 3669

Kleines Web Service Tutorial mit ZSI für Python

:D Hallo zusammen, ich habe ein kleines Step by Step tutorial geschrieben in dem die nutzung von Web Services durch die ZSI Bibliothek in Python demonstriert wird. Ihr könnt das Tutorial runterladen unter: http://www.mutschler-net.de/18801.html Über Feedback freue ich mich, viel Spass damit :lol: Gr...
von Richard_M
Sonntag 14. Januar 2007, 14:04
Forum: Netzwerkprogrammierung
Thema: Document/Literal SOAP Messages mit SOAPpy
Antworten: 2
Zugriffe: 1567

Hallo zusammen, danke Black Jack, mit dem Programmierstiel hast du natürlich völlig recht, Asche auf mein Haupt... Ich bin bei dem Problem zu einer zumindest teilweise befriedigenden Lösung gekommen, mit den ZSI - Tools. Download unter: http://sourceforge.net/project/showfiles.php?group_id=26590&...
von Richard_M
Sonntag 14. Januar 2007, 10:15
Forum: Netzwerkprogrammierung
Thema: Problem mit encoding aus der XML declaration mit SOAPpy
Antworten: 0
Zugriffe: 1869

Problem mit encoding aus der XML declaration mit SOAPpy

Hallo, Ich bin hier auf etwas gestossen, das ich mir nicht so recht erklären kann: Ich mache eine Anfrag auf einwn WS: import SOAPpy proxy = SOAPpy.WSDL.Proxy("http://www.neurofuzz.com/modules/cryptoService/cryptoSOAP.php?wsdl") proxy.soapproxy.config.dumpSOAPOut = 1 proxy.soapproxy.config...
von Richard_M
Sonntag 14. Januar 2007, 09:44
Forum: Netzwerkprogrammierung
Thema: Document/Literal SOAP Messages mit SOAPpy
Antworten: 2
Zugriffe: 1567

Document/Literal SOAP Messages mit SOAPpy

Hallo erstmal, Ich habe folgendes Problem: Ich versuche mit SOAPpy eine Nachricht an einen Document/Literal Webserver zu senden: import SOAPpy import time import datetime proxy = SOAPpy.WSDL.Proxy("http://www.holidaywebservice.com/Holidays/GBNIR/GBNIRHolidayService.asmx?WSDL") proxy.soappr...
von Richard_M
Samstag 13. Januar 2007, 21:18
Forum: Netzwerkprogrammierung
Thema: SOAPpy Webservices
Antworten: 7
Zugriffe: 5026

Ok, Super Danke :P , Das V Tag is weg :-) Mit SoapUI kann ich die Message auch verschicken, nur mit SOAPpy habe ich noch den fehler: SOAPpy.Types.faultType: <Fault Client: error in msg parsing: Charset from HTTP Content-Type 'US-ASCII' does not match encoding from XML declaration 'UTF-8': > Also mus...
von Richard_M
Samstag 13. Januar 2007, 20:57
Forum: Netzwerkprogrammierung
Thema: SOAPpy Webservices
Antworten: 7
Zugriffe: 5026

Ja, Den Encodingfehler bekomme ich auch, der muss aber irgendwie mit diesem Tag zu Tun haben, denn wenn ich die Message ohne den <v> Tag via SOAPUI versende erhalte ich eine gültige antwort: <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-EN...
von Richard_M
Samstag 13. Januar 2007, 20:42
Forum: Netzwerkprogrammierung
Thema: SOAPpy Webservices
Antworten: 7
Zugriffe: 5026

Zum besseren Verständniss Poste Ich nochmal eine Aufbereitete Codeversion: import SOAPpy //Einbinden des Moduls proxy = SOAPpy.WSDL.Proxy("http://www.neurofuzz.com/modules/cryptoService/cryptoSOAP.php?wsdl ") //Zuweisen der WSDL Datei proxy.soapproxy.config.dumpSOAPOut = 1 //Debugausgabe d...
von Richard_M
Samstag 13. Januar 2007, 20:32
Forum: Netzwerkprogrammierung
Thema: SOAPpy Webservices
Antworten: 7
Zugriffe: 5026

Hallo, Danke erstmal für die Antwort, aber das habe mit Answer= proxy.encrypt ('hallo', 'Welt') habr ich schon versucht. Das Ergebiiss ist dann: (xml) <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/&...
von Richard_M
Samstag 13. Januar 2007, 19:53
Forum: Netzwerkprogrammierung
Thema: SOAPpy Webservices
Antworten: 7
Zugriffe: 5026

SOAPpy Webservices

Hallo allerseits, ich habe ein Problem mit SOAPpy Zuerstmal zu meiner Konfiguration: Python 2.4 SOAPpy 0.12 SOAPUI 1.0.3 Ich möchte nun enen Webservice dessen WSDL ich von http://www.xmethods.com habe ansprechen, dazu folgender Code: import SOAPpy proxy = SOAPpy.WSDL.Proxy("http://www.neurofuzz...