Mombu the Programming Forum

Go Back   Mombu the Programming Forum > Programming > OpenRoad - Web service
User Name
Password
REGISTER NOW! Mark Forums Read




Reply Bookmark and Share
1 7th August 00:15
sergio
External User
 
Posts: 1
Default OpenRoad - Web service



I have to interface my openroad 4.1 software to an web service.

Any help is apreciated

Thanks, Sergio
  Reply With Quote


 


2 7th August 00:15
paul white
External User
 
Posts: 1
Default OpenRoad - Web service



Hello Sergio,

Unfortunately the OpenROAD User list is off line at the moment undergoing
repairs.
I'll help if I can. Can you explain a bit more about your requirements?

Our application is used for secure banking transactions, collecting data
from web sites, etc.
We have OpenROAD communicating with web services in various ways.
For example:

Browse to a web page and display to your user
Connect to a web page, extract data and store in database
Respond to prompts on a web page, complete entry fields and activate buttons
to submit requests
Send HTTP post, via SOAP then receive XML data, store in database
Linked openroad to md5 and pgp encryption.


Paul White

-----Original Message-----
From: info-ingres-admin@cariboulake.com
[mailto:info-ingres-admin@cariboulake.com]On Behalf Of Sergio
Sent: Thursday, 12 October 2006 5:23 PM
To: info-ingres; OpenRoad user list
Subject: [Info-ingres] OpenRoad - Web service


I have to interface my openroad 4.1 software to an web service.

Any help is apreciated

Thanks, Sergio
  Reply With Quote
3 7th August 00:15
paul white
External User
 
Posts: 1
Default OpenRoad - Web service


Below is an example which makes a call to a local web service.


-----Original Message-----
From: White, Doug
Sent: Friday, 13 October 2006 12:56 PM
To: 'paulwh@mpiece.com.au'
Subject: RE: [Info-ingres] OpenRoad - Web service


1) This calls server 127.0.0.1/message.aspx
2) If you wanted the results as xml data instead of text, the xml data will be stored in the xml object
3) ex_xmldom is the microsoft XML document dll

PROCEDURE SOAP () =
DECLARE
req = ex_xmldom!xmlhttp30;
lv_data = VARCHAR(2000) NOT NULL;
strobj = req.responsetext();
ENDDECLARE
{

Lv_Data = '<?xml version="1.0" encoding="utf-8"?>' +
'<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' +
' xmlns:xsd="http://www.w3.org/2001/XMLSchema" ' +
' xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> ' +
' <soap:Body>'+
' <Message>'+
' <Text>Hello There!</Text>' +
' <To>OpenROAD Users</To>' +
' </Message>' +
' </soap:Body>' +
'</soap:Envelope>';

req.Open('POST', 'http://127.0.0.1/message.asmx', FALSE);
req.setRequestHeader ('SOAPAction', 'http://tempuri.org/MESSAGE/SendMessage');
req.setRequestHeader ('Content-Type', 'text/xml');

req.Send(:Lv_Data);
strobj = req.responsetext();

/* [ insert your processing here ] */

RETURN C_RTNSUCCESS;
}


-----Original Message-----
From: sergio.sperandio66@tin.it [mailto:sergio.sperandio66@tin.it]
Sent: Friday, 13 October 2006 12:52 AM
To: paulwh@mpiece.com.au
Subject: R: RE: [Info-ingres] OpenRoad - Web service


I want to send HTTP post, via SOAP then receive XML data, store in
database.
I attach a list of methods that i have to interface.

Thanks

----Messaggio originale----
Da: paulwh@mpiece.com.au
Data: 12-ott-2006
3.24 PM
A: "Sergio"<sergio.sperandio66@tin.it>
Cc: <info-
ingres@cariboulake.com>
Ogg: RE: [Info-ingres] OpenRoad - Web service

Hello Sergio,

Unfortunately the OpenROAD User list is off line at the
moment undergoing
repairs.
I'll help if I can. Can you explain a bit
more about your requirements?

Our application is used for secure
banking transactions, collecting data
from web sites, etc.
We have
OpenROAD communicating with web services in various ways.
For example:

Browse to a web page and display to your user
Connect to a web page,
extract data and store in database
Respond to prompts on a web page,
complete entry fields and activate buttons
to submit requests
Send HTTP
post, via SOAP then receive XML data, store in database
Linked openroad
to md5 and pgp encryption.


Paul White

-----Original Message-----
From: info-ingres-admin@cariboulake.com
[mailto:info-ingres-
admin@cariboulake.com]On Behalf Of Sergio
Sent: Thursday, 12 October
2006 5:23 PM
To: info-ingres; OpenRoad user list
Subject: [Info-ingres]
OpenRoad - Web service


I have to interface my openroad 4.1 software
to an web service.

Any help is apreciated

Thanks, Sergio
  Reply With Quote
4 28th August 00:10
sergio
External User
 
Posts: 1
Default OpenRoad - Web service


I have another problem. The WS that i have to interface needs SSL
certificate. What have I to do ?

Thanks, Sergio

----- Original Message -----
From: "Paul White" <paulwh@mpiece.com.au>
To: <sergio.sperandio66@tin.it>
Cc: <info-ingres@cariboulake.com>
Sent: Friday, October 13, 2006 5:21 AM
Subject: RE: [Info-ingres] OpenRoad - Web service


will be stored in the xml object


'http://tempuri.org/MESSAGE/SendMessage');
  Reply With Quote
5 1st September 08:40
paul white
External User
 
Posts: 1
Default OpenRoad - Web service


I don't think we have used https with SOAP. But we have successfully
connected using the IE browser control and xml controls.

You'll of course install the certificate on each OpenROAD client.
Here is an example using XML object


Strobj = stringobject;
Xml = ex_xmldom!xmlhttp30;
{
Xml.Open('GET','https://mysite.com.au',FALSE);
G_browser.navigate('https://mysite.com.au')
Xml.Send(null);
strobj = Xml.responsetext();
Return ifnull(strobj.value,'');
}


-----Original Message-----
From: info-ingres-admin@cariboulake.com
[mailto:info-ingres-admin@cariboulake.com] On Behalf Of Sergio
Sent: Friday, 27 October 2006 6:03 PM
To: OpenRoad user list; info-ingres
Subject: Re: [Info-ingres] OpenRoad - Web service

I have another problem. The WS that i have to interface needs SSL
certificate. What have I to do ?

Thanks, Sergio

----- Original Message -----
From: "Paul White" <paulwh@mpiece.com.au>
To: <sergio.sperandio66@tin.it>
Cc: <info-ingres@cariboulake.com>
Sent: Friday, October 13, 2006 5:21 AM
Subject: RE: [Info-ingres] OpenRoad - Web service


will be stored in the xml object


' +


'http://tempuri.org/MESSAGE/SendMessage');


_______________________________________________
Info-ingres mailing list
Info-ingres@cariboulake.com
http://mailman.cariboulake.com/mailm...py/info-ingres
  Reply With Quote
6 1st September 08:41
paul white
External User
 
Posts: 1
Default OpenRoad - Web service


-----Original Message-----
From: info-ingres-admin@cariboulake.com
[mailto:info-ingres-admin@cariboulake.com] On Behalf Of Paul White
Sent: Saturday, 28 October 2006 2:46 PM
To: Sergio; OpenRoad user list; info-ingres
Subject: RE: [Info-ingres] OpenRoad - Web service

I don't think we have used https with SOAP. But we have successfully
connected using the IE browser control and xml controls.

You'll of course install the certificate on each OpenROAD client.
Here is an example using XML object


Strobj = stringobject;
Xml = ex_xmldom!xmlhttp30;
{
Xml.Open('GET','https://mysite.com.au',FALSE);
G_browser.navigate('https://mysite.com.au')
Xml.Send(null);
strobj = Xml.responsetext();
Return ifnull(strobj.value,'');
}


-----Original Message-----
From: info-ingres-admin@cariboulake.com
[mailto:info-ingres-admin@cariboulake.com] On Behalf Of Sergio
Sent: Friday, 27 October 2006 6:03 PM
To: OpenRoad user list; info-ingres
Subject: Re: [Info-ingres] OpenRoad - Web service

I have another problem. The WS that i have to interface needs SSL
certificate. What have I to do ?

Thanks, Sergio

----- Original Message -----
From: "Paul White" <paulwh@mpiece.com.au>
To: <sergio.sperandio66@tin.it>
Cc: <info-ingres@cariboulake.com>
Sent: Friday, October 13, 2006 5:21 AM
Subject: RE: [Info-ingres] OpenRoad - Web service


will be stored in the xml object


' +


'http://tempuri.org/MESSAGE/SendMessage');


_______________________________________________
Openroad-users mailing list
Openroad-users@peerlessit.com
http://peerlessit.com/mailman/listinfo/openroad-users
  Reply With Quote


 


Reply


Thread Tools
Display Modes


Some other forums that might be of your interest : Development, Ada, Apple script, Assembler, Awk, Beos, Basic, C, C++, C#, C# .net, .net, .net frameworks, Asp .net, Clarion, Clipper, Clos, Clu, Cobol, Coldfusion, Delphi, Dylan, Eiffel, Forth, Fortran, Haskell, Hermes, Icon, Idl, Java, Java script, Jscript .net, Jcl, Linoleum, Lisp, Lotus, Limbo, Logo, Ml, Mumps, Oberon, Postscript, Pop, Pl1, Prolog, Python, Ruby, Pascal, Perl, Php, Rebol, Rexx, Sed, Sather, Scheme, Smalltalk, Tcl, Vhdl, Vrml, Visual basic, Visual basic .net, Yorick, Mysql, Omnis, Postgresql, Xbase, Access, Oracle, Adabas, Berkeley, Btrieve, Filemaker, Gupta, Db2, Informix, Ingres, Mssql server, Object, Olap, Paradox, Rdb, Revelation, Sybase, Theory, Dbase, Html, Java script, Css, Flash, Photoshop, Corel script, Xml, Tech, Beos, Gem, Hp48, Hpux, Linux, Mac, Ms-dos, Os2, Palm, Solaris, Ti99, Windows, Xenix, Aos, Chorus, Geos, Inferno, Lantastic, Lynx, Mach, Minix, Netware, Os9, Parix, Plan9, Psos, Qnx, Xinu, Sco, Unix, Aix, Aux, 386bsd, Bsdi, Freebsd, Netbsd, Openbsd, Ultrix, Amd, Intel, Aptiva, Buz, Deals, Homebuilt, Overclocking, Programming, Extra forums


Copyright © 2006 SmartyDevil.com - Dies Mies Jeschet Boenedoesef Douvema Enitemaus -
666