paypal & domino - admincamp & domino bernhard kolb ebe-gmbh the power of notes & domino...

21
The Power of Notes & Domino at your Grasp Powered by Bundled-KnowHow PayPal & Domino Bernhard Kolb EBE-GmbH www.ebe-edv.com

Upload: nguyenkiet

Post on 14-Apr-2018

216 views

Category:

Documents


3 download

TRANSCRIPT

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal amp Domino

Bernhard KolbEBE-GmbH

wwwebe-edvcom

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Online bezahlenhellipPayPal

bull Einrichten eines Kontoswwwpaypalde

bull Konto hochstufen (Premiumkonto)

bull IPN (Instant Payment Notification)url im PayPal-Profil

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Wege zum Geld

bull Buy now Donationndash Nur ein Itemndash Cmd=bdquo_xclickldquo

bull 3rd Party Shopping Cartndash Einzelpositionen an PayPal uacutebergebenndash Cmd=bdquo_cartldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Ablauf

bull Item bzw Shopping Cart im HTMLndash Liste von hidden-fields

bull Submit an Paypalndash Action=httpswwwpaypalcomcgi-binwebscr

bull Paypal ruft unseren URL aufndash Dies gilt als Zahlungsbestaumltigung

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Notes Anwendung

bull Form Produkt (Nr Bezeichnung Preis)bull Form Orderbull View Produktebull View orders (kategorisiert nach Besteller)

bull Agent Bestellungbull Agent orderSubmit

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Shopping Cart

bull Globale Felderndash Name=bdquocmdldquo value = bdquo_cartldquondash Name=bdquocurrency_codeldquo value = bdquoEURldquondash Name=bdquobusinessldquo value = bdquomymailmecomldquondash Name=bdquouploadldquo value = bdquo1ldquo

bull Felder je Itemndash Name=bdquoitem_number_xldquo value = bdquo4711ldquondash Name=bdquoitem_name_xldquo value = bdquoPCldquondash Name=bdquoquantity_xldquo value = bdquo2ldquondash Name=bdquoamount_xldquo value = bdquo2990ldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Online bezahlenhellipPayPal

bull Einrichten eines Kontoswwwpaypalde

bull Konto hochstufen (Premiumkonto)

bull IPN (Instant Payment Notification)url im PayPal-Profil

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Wege zum Geld

bull Buy now Donationndash Nur ein Itemndash Cmd=bdquo_xclickldquo

bull 3rd Party Shopping Cartndash Einzelpositionen an PayPal uacutebergebenndash Cmd=bdquo_cartldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Ablauf

bull Item bzw Shopping Cart im HTMLndash Liste von hidden-fields

bull Submit an Paypalndash Action=httpswwwpaypalcomcgi-binwebscr

bull Paypal ruft unseren URL aufndash Dies gilt als Zahlungsbestaumltigung

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Notes Anwendung

bull Form Produkt (Nr Bezeichnung Preis)bull Form Orderbull View Produktebull View orders (kategorisiert nach Besteller)

bull Agent Bestellungbull Agent orderSubmit

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Shopping Cart

bull Globale Felderndash Name=bdquocmdldquo value = bdquo_cartldquondash Name=bdquocurrency_codeldquo value = bdquoEURldquondash Name=bdquobusinessldquo value = bdquomymailmecomldquondash Name=bdquouploadldquo value = bdquo1ldquo

bull Felder je Itemndash Name=bdquoitem_number_xldquo value = bdquo4711ldquondash Name=bdquoitem_name_xldquo value = bdquoPCldquondash Name=bdquoquantity_xldquo value = bdquo2ldquondash Name=bdquoamount_xldquo value = bdquo2990ldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Wege zum Geld

bull Buy now Donationndash Nur ein Itemndash Cmd=bdquo_xclickldquo

bull 3rd Party Shopping Cartndash Einzelpositionen an PayPal uacutebergebenndash Cmd=bdquo_cartldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Ablauf

bull Item bzw Shopping Cart im HTMLndash Liste von hidden-fields

bull Submit an Paypalndash Action=httpswwwpaypalcomcgi-binwebscr

bull Paypal ruft unseren URL aufndash Dies gilt als Zahlungsbestaumltigung

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Notes Anwendung

bull Form Produkt (Nr Bezeichnung Preis)bull Form Orderbull View Produktebull View orders (kategorisiert nach Besteller)

bull Agent Bestellungbull Agent orderSubmit

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Shopping Cart

bull Globale Felderndash Name=bdquocmdldquo value = bdquo_cartldquondash Name=bdquocurrency_codeldquo value = bdquoEURldquondash Name=bdquobusinessldquo value = bdquomymailmecomldquondash Name=bdquouploadldquo value = bdquo1ldquo

bull Felder je Itemndash Name=bdquoitem_number_xldquo value = bdquo4711ldquondash Name=bdquoitem_name_xldquo value = bdquoPCldquondash Name=bdquoquantity_xldquo value = bdquo2ldquondash Name=bdquoamount_xldquo value = bdquo2990ldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Ablauf

bull Item bzw Shopping Cart im HTMLndash Liste von hidden-fields

bull Submit an Paypalndash Action=httpswwwpaypalcomcgi-binwebscr

bull Paypal ruft unseren URL aufndash Dies gilt als Zahlungsbestaumltigung

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Notes Anwendung

bull Form Produkt (Nr Bezeichnung Preis)bull Form Orderbull View Produktebull View orders (kategorisiert nach Besteller)

bull Agent Bestellungbull Agent orderSubmit

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Shopping Cart

bull Globale Felderndash Name=bdquocmdldquo value = bdquo_cartldquondash Name=bdquocurrency_codeldquo value = bdquoEURldquondash Name=bdquobusinessldquo value = bdquomymailmecomldquondash Name=bdquouploadldquo value = bdquo1ldquo

bull Felder je Itemndash Name=bdquoitem_number_xldquo value = bdquo4711ldquondash Name=bdquoitem_name_xldquo value = bdquoPCldquondash Name=bdquoquantity_xldquo value = bdquo2ldquondash Name=bdquoamount_xldquo value = bdquo2990ldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Notes Anwendung

bull Form Produkt (Nr Bezeichnung Preis)bull Form Orderbull View Produktebull View orders (kategorisiert nach Besteller)

bull Agent Bestellungbull Agent orderSubmit

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Shopping Cart

bull Globale Felderndash Name=bdquocmdldquo value = bdquo_cartldquondash Name=bdquocurrency_codeldquo value = bdquoEURldquondash Name=bdquobusinessldquo value = bdquomymailmecomldquondash Name=bdquouploadldquo value = bdquo1ldquo

bull Felder je Itemndash Name=bdquoitem_number_xldquo value = bdquo4711ldquondash Name=bdquoitem_name_xldquo value = bdquoPCldquondash Name=bdquoquantity_xldquo value = bdquo2ldquondash Name=bdquoamount_xldquo value = bdquo2990ldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Shopping Cart

bull Globale Felderndash Name=bdquocmdldquo value = bdquo_cartldquondash Name=bdquocurrency_codeldquo value = bdquoEURldquondash Name=bdquobusinessldquo value = bdquomymailmecomldquondash Name=bdquouploadldquo value = bdquo1ldquo

bull Felder je Itemndash Name=bdquoitem_number_xldquo value = bdquo4711ldquondash Name=bdquoitem_name_xldquo value = bdquoPCldquondash Name=bdquoquantity_xldquo value = bdquo2ldquondash Name=bdquoamount_xldquo value = bdquo2990ldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 12Sub Initialize

vbcrlf = Chr$(13) amp Chr$(10)

Dim s As New NotesSessionDim db As NotesDatabaseSet db = sCurrentDatabase

Dim view As NotesViewSet view = dbGetView(Produkte)

Dim doc As NotesDocumentSet doc = viewGetFirstDocument

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bestellung Code 22i=1While Not doc Is Nothing

Print ltinput type=hidden name=item_number_ amp i amp value= amp docartnr(0) amp gt amp vbcrlf

Print ltinput type=hidden name=item_name_ amp i amp value= amp docbezeichnung(0) amp gt amp vbcrlf

Preis = Replace(Format(docpreis(0)00))

Print ltinput type=hidden name=amount_ amp i amp value= amp preis amp gt amp vbcrlf

Print ltinput type=hidden name=quantity_ amp i amp value=1gt amp vbcrlf

i=i+1Set doc = viewGetNextDocument(doc)

Wend

Print ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgt

End Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

PayPal Notification

bull Emailbull Online abfragebull IPN (Instant Payment Notification)

ndash PayPal ruft angegebenen URL aufndash Unsre Applikation sendet den Inhalt zuruacuteckndash PayPal liefert im HTTP-Response bdquoverifiedldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 13Set o=CreateObject(bdquo Msxml2ServerXMLHTTPldquo)url=bdquowwwpaypalcomcgi-binwebscrldquooopen(POST httpswwwpaypalcomcgi-binwebscr false)osetRequestHeader(Content-type applicationx-www-form-urlencodedbdquo)oSend(confstr)

bull confstr stellt die erhaltenen informationen dar

confstr = docrequest_content(0) amp bdquoampcmd=_notify-validateldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 23

bull Ruacuteckgabewert auf bdquoVERIFIEDldquo pruacutefen

If oresponseText = bdquoVERIFIEDldquo thenprocessOrder(hellip)

End if

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

IPN 33

Weitere Felder von PayPalndash Payer_emailndash Receiver_emailndash Txn_idndash Mc_currencyndash Mc_gross (Betrag)ndash Payment_status

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Bausteine (Feldwerte auslesen)Sub Initialize

Dim s As New NotesSessionDim doc As NotesdocumentDim cgi List As String

Set doc = sDocumentContextwerte = Split(docrequest_content(0)amp)

Forall content In werteteile = Split(content=)cgi(teile(0)) = teile(1)

End ForallEnd Sub

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

HTTP Request absendenSub Initialize

Set o= createObject(Msxml2ServerXMLHTTP)Set o= createObject(MicrosoftXMLHTTP)Call oopen(POSThttp1921682186EBEsmalltestwebform1aspxFalse)Call osetRequestHeader(Content-typeapplicationx-www-form-urlencoded)Dim mystr As String

mystr = cmd=hallo

Call oSend(mystr)Msgbox(oResponseText)Set o=Nothing

End Sub

oServerXMLHTTPRequestopen(bstrMethod bstrUrl bAsync bstrUser bstrPassword)

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Buy nowltform action=httpswwwpaypalcomcgi-binwebscr method=postgt

ltinput type=hidden name=cmd value=_xclickgtltinput type=hidden name=business value=ichmeineemailcomgtltinput type=hidden name=item_name value=Item Namegtltinput type=hidden name=currency_code value=bdquoEURgtltinput type=hidden name=amount value=000gt

ltinput type=image src=httpwwwpaypalcomde_DEibtnx-click-but01gif name=submit alt=Zahlen Sie mit PayPal - schnell kostenlos und sichergt

ltformgt

Eventuell die Anzahl vom User bestimmen lassen

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

CGI Datentransfer

bull Getndash Docquery_string(0)

bull Postndash Docrequest_content(0)

bull Delimiter amp und =

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 13Dim s As New notesSession

Dim doc As NotesDocumentSet doc = sDocumentContext

Print Bestellung fuumlr amp doctotal(0) amp ltbrgtltbrgt

Print ltform action=httpswwwpaypalcomcgi-binwebscr method=postgt amp vbcrlf

Print ltinput type=hidden name=cmd value=_cartgt amp vbcrlfPrint ltinput type=hidden name=business value=bernhardkolbebe-edvcomgt amp vbcrlfPrint ltinput type=hidden name=upload value=1gt amp vbcrlf

Print ltinput type=hidden name=currency_code value=EURgt amp vbcrlftodo loopPrint ltinput type=hidden name=item_name_1 value= amp docorderitem1(0) amp gt amp vbcrlfPrint ltinput type=hidden name=amount_1 value= amp paypalformat(docprice1(0)) amp gt amp vbcrlfPrint ltinput type=hidden name=quantity_1 value= amp docquantity1(0) amp gt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 23Print lttable border=1gtlttrgtPrint lttdgtltBgtAnzltBgtlttdgtPrint lttdgtDinglttdgtPrint lttdgtPreislttdgtPrint lttdgtltbgtGesamtltbgtlttdgtPrint lttrgtlttrgt

todo loop

Print lttdgt amp docquantity1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docorderitem1(0) amp lttdgt amp vbcrlfPrint lttdgt amp docprice1(0) amp lttdgt amp vbcrlfPrint lttdgt amp doctotal1(0) amp lttdgt amp vbcrlf

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Source Ordersubmit 33

Print lttablegtlttrgtPrint ltinput type=submit value=Kaufengt amp vbcrlfPrint ltformgtldquo

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Feedback

Bitte die Bewertungsboumlgen ausfuumlllen

Danke

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher

The Power of Notes amp Domino at your GraspPowered by

Bundled-KnowHow

Summary

bull Keine Setupkostenbull 34 plus 035 EUR je Transaktionbull Relativ einfache Implementierung

ndash HTML-Form mit Hidden Fieldsndash Web Agent fuacuter Response

bull Sicher