Autor Thema: Webservice Consumer in Notes 7 mit LotusScript  (Gelesen 2973 mal)

Offline oson00

  • Aktives Mitglied
  • ***
  • Beiträge: 240
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Webservice Consumer in Notes 7 mit LotusScript
« am: 19.12.08 - 12:12:52 »
Hallo,

ich suche mich tot, kann aber nicht so richtig was finden. Ich möchte einen SOAP-Webservice per LotusScript ansprechen. Das Ganze soll in einem Server-Agenten auf einem 7er Domino-Server laufen. Hier sollte nichts angepaßt werden, wenn möglich.

Gibt es eine Möglich einen Webservice per LS anzusprechen?

Offline m3

  • Freund des Hauses!
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 8.102
  • Geschlecht: Männlich
  • Non ex transverso sed deorsum!
    • leyrers online pamphlet
Re: Webservice Consumer in Notes 7 mit LotusScript
« Antwort #1 am: 19.12.08 - 12:40:33 »
Zitat
Stubby

This database is meant to help you create Apache Axis "stub" files that can be used to call web services. The files that are produced here can be used in Lotus Notes/Domino 7 (client or server) with NO modifications to the client or server, and NO external library dependencies.

Note that Stubby allows you to easily consume a web service in Lotus Notes 7. The ability to provide a web service in Domino 7 is available natively.
http://www.nsftools.com/stubby/
HTH
m³ aka. Martin -- leyrers online pamphlet | LEYON - All things Lotus (IBM Collaborations Solutions)

All programs evolve until they can send email.
Except Microsoft Exchange.
    - Memorable Quotes from Alt.Sysadmin.Recovery

"Lotus Notes ist wie ein Badezimmer, geht ohne Kacheln, aber nicht so gut." -- Peter Klett

"If there isn't at least a handful of solutions for any given problem, it isn't IBM"™ - @notessensai

Offline oson00

  • Aktives Mitglied
  • ***
  • Beiträge: 240
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Re: Webservice Consumer in Notes 7 mit LotusScript
« Antwort #2 am: 19.12.08 - 12:43:18 »
Ja, sieht gut aus, ist nur Java. Ich benötige eigentlich LotusScript. Aber ich befürchte, dass ich mit Java leben und einen Umweg gehen muss.

Offline it898ur

  • Senior Mitglied
  • ****
  • Beiträge: 478
Re: Webservice Consumer in Notes 7 mit LotusScript
« Antwort #3 am: 19.12.08 - 12:53:43 »
Einen Windows-Server vorausgesetzt, gibt es die Möglichkeit in Lotus Script das XMLHTTP-Objekt von Microsoft anzusprechen.

Hier ein kleiner Auszug aus einem Testagenten von mir:

               ' --- instantiate an MSXML XMLHTTP object
   Set objHttp = CreateObject("Microsoft.XMLHTTP")
   
   ' --- open a new POST request and set the Content-type header
   
   url = doc.URL(0)
   req = doc.Request(0)
   
   objHttp.open "POST", url, False, "", ""
   objHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
   
   objHttp.send(req)
   
   response = objHttp.responseText

Den Request in SOAP-Form muss man dann allerdings von Hand programmieren (was bei relativ statischen Funktionen auch kein Hexenwerk ist).

Gruß

André
« Letzte Änderung: 19.12.08 - 12:58:14 von it898ur »

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz