Re: [U2] SOAP Request via an HTTPS call

2011-12-06 Thread Symeon Breen
I usually find this boils down to a couple of problems, the actual http headers, or the soap envelope. The xml payload is easy to test outside of udt. The headers maybe not so. An invaluable tool is the protocolLogging databasic function, call this before and after the http call, and examine the

Re: [U2] SOAP Request via an HTTPS call

2011-12-05 Thread Larry Hiscock
I ended up using the SOAP-specific verbs, not just CallHTTPS, but I built the SOAP headers manually. Here's the main part of the program, which does an address verification (mundane parts snipped for brevity, and private data redacted). Hope it helps. Larry Hiscock Western Computer Services

Re: [U2] SOAP Request via an HTTPS call

2011-12-05 Thread Steve Long
, Inc. (360) 687-8797 Washington (503) 406-8797 Oregon (866) 354-5913 Fax -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Larry Hiscock Sent: Monday, December 05, 2011 2:13 PM To: 'U2 Users List' Subjec

Re: [U2] SOAP Request via an HTTPS call

2011-12-05 Thread Larry Hiscock
UD or UV? Have you created a security context? Does the IIS server have a valid SSL Certificate installed? I've had a secure SOAP consumer running since UD 6.1. There were a few glitches in creating the SOAP header, IIRC. Larry Hiscock Western Computer Services -Original Message- Fro

Re: [U2] SOAP Request via an HTTPS call

2011-12-05 Thread Steve Long
Washington (503) 406-8797 Oregon (866) 354-5913 Fax -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno Sent: Monday, December 05, 2011 1:44 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] SOAP Request

Re: [U2] SOAP Request via an HTTPS call

2011-12-05 Thread Tony Gravagno
> From:Steve Long > I am trying to submit a SOAP request via a secure > connection, and have been unsuccessful so far. We are > able to create the secure connection, but it is > failing on the SOAP request at the IIS server with a > fault error. > > Does anyone have an example they can provi

Re: [U2] SOAP Header

2011-07-28 Thread John Hester
If you're unable to get this working using the native UD method you can probably do it via the cURL program at the OS level. It's available for a wide variety of platforms and should already be installed if you're on linux: http://curl.haxx.se/download.html I've used cURL to interact with many w

Re: [U2] SOAP Header

2011-07-28 Thread Symeon Breen
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen Sent: Thursday, July 28, 2011 8:41 AM To: 'U2 Users List' Subject: Re: [U2] SOAP Header Are you talking about the http Host header parameter or a soap parameter ? Have you used protocolLogging to trace the

Re: [U2] SOAP Header

2011-07-28 Thread Steve Long
-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen Sent: Thursday, July 28, 2011 8:41 AM To: 'U2 Users List' Subject: Re: [U2] SOAP Header Are you talking about the http Host header parameter or a soap parameter ? Have you used protocolLogging to trace the exact http conversatio

Re: [U2] SOAP Header

2011-07-28 Thread Symeon Breen
-boun...@listserver.u2ug.org] On Behalf Of Steve Long Sent: 28 July 2011 16:13 To: U2 Users List Subject: Re: [U2] SOAP Header We actually have 2 issues to overcome. The big show stopper now is the host. The client is using a load balancer and requires the Host to be specified in the SOAP header

Re: [U2] SOAP Header

2011-07-28 Thread Steve Long
13 Fax -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen Sent: Thursday, July 28, 2011 12:39 AM To: 'U2 Users List' Subject: Re: [U2] SOAP Header The u2 soap/hhtprequest call will set the basic minimum http h

Re: [U2] SOAP Header

2011-07-28 Thread Symeon Breen
-boun...@listserver.u2ug.org] On Behalf Of Kevin King Sent: 27 July 2011 22:57 To: U2 Users List Subject: Re: [U2] SOAP Header I'm confused. Exactly what is setting the Host: http header in the SOAP request? ___ U2-Users mailing list U2-

Re: [U2] SOAP Header

2011-07-27 Thread Kevin King
I'm confused. Exactly what is setting the Host: http header in the SOAP request? ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] SOAP Header

2011-07-27 Thread Steve Long
Sent: Wednesday, July 27, 2011 12:21 PM To: 'U2 Users List' Subject: Re: [U2] SOAP Header It's been a while since I've created one, but IIRC, the easiest way is to use UniAdmin to create a CSR, then a self-signed certificate (or you can purchase a cert using the CSR) and the secu

Re: [U2] SOAP Header

2011-07-27 Thread Larry Hiscock
8797 Washington (503) 406-8797 Oregon (866) 354-5913 Fax -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Larry Hiscock Sent: Wednesday, July 27, 2011 11:47 AM To: 'U2 Users List' Subject: Re: [U2] SOAP Hea

Re: [U2] SOAP Header

2011-07-27 Thread Steve Long
-8797 Oregon (866) 354-5913 Fax -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Larry Hiscock Sent: Wednesday, July 27, 2011 11:47 AM To: 'U2 Users List' Subject: Re: [U2] SOAP Header Here's an example o

Re: [U2] SOAP Header

2011-07-27 Thread Larry Hiscock
. SoapURL contains the URL to the web service (https://.../VerifyService.asmx), and SoapAction, NameSpace and Method contain the appropriate data specified in the WSDL. The Response headers and data are returned in RespHeaders and RespData respectively. Hope this helps... Larry Hiscock Western Computer Se

Re: [U2] SOAP Header

2011-07-27 Thread Steve Long
Larry Hiscock Sent: Wednesday, July 27, 2011 9:32 AM To: 'U2 Users List' Subject: Re: [U2] SOAP Header Hi Steve, What version of UD and on what platform? The reason I ask is that we have a client that is stuck on UD v6.1 for the time being (because they're on SCO OpenServer). At

Re: [U2] SOAP Header

2011-07-27 Thread Larry Hiscock
Hi Steve, What version of UD and on what platform? The reason I ask is that we have a client that is stuck on UD v6.1 for the time being (because they're on SCO OpenServer). At that rev and on that platform, we ran into issues using some of the SOAP functions. We were able to work around it,

Re: [U2] SOAP Services and Host Question

2011-04-01 Thread Robert Houben
-boun...@listserver.u2ug.org] On Behalf Of Steve Long Sent: Friday, April 01, 2011 8:47 AM To: U2 Users List Subject: Re: [U2] SOAP Services and Host Question Thx for the input. I did the GET / as described and I get a 400 bad request so it looks like it's a network issue. Thanks,

Re: [U2] SOAP Services and Host Question

2011-04-01 Thread Steve Long
-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Robert Houben Sent: Friday, April 01, 2011 8:28 AM To: U2 Users List Subject: Re: [U2] SOAP Services and Host Question Open a command shell on AIX and type: ping wsCatalog If that works (and returns a correct IP address),

Re: [U2] SOAP Services and Host Question

2011-04-01 Thread Robert Houben
Open a command shell on AIX and type: ping wsCatalog If that works (and returns a correct IP address), then use telnet and go to: telnet wsCatalog 80 If it connects it will appear to hang there. Carefully type in the following (you may not see it echo - means "press return"): GET / You shou

Re: [U2] SOAP Services and Host Question

2011-04-01 Thread George Gallen
Doesn't AIX work like the rest of the unix world? If it's not in the /etc/hosts, it uses DNS (/etc/resolv.conf) I would think if the server is using load balancing, you would remove the entry from /etc/hosts, so it should use DNS. I wonder if you need to change your DNS server so that it doe

Re: [U2] SOAP in UniBasic

2011-02-16 Thread Symeon Breen
Something to do with case I believe From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Lunt, Bruce Sent: 16 February 2011 00:13 To: u2-users@listserver.u2ug.org Subject: [U2] SOAP in UniBasic I wrote a program to make a SOAP call for

Re: [U2] SOAP Submission Issues

2010-07-27 Thread Don
header_name The name of the header. header_value The value of the header. > -Original Message- > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- > boun...@listserver.u2ug.org] On Behalf Of Wally Terhune > Sent: Tuesday, July 27, 2010 11:41 AM > To: U2 Users

Re: [U2] SOAP Submission Issues

2010-07-27 Thread Wally Terhune
Not my area of expertise, but I wonder if this issue from the 7.2.6 readme applies: Issue 12972 - Problem Description UniBasic -- Prior to this release, a secure CallHTTP (https), or Secure SOAP connection through a proxy server failed with HTTP error 400. The secure HTTP request to the proxy di

Re: [U2] SOAP Submission Issues

2010-07-27 Thread Kevin King
So you're saying that the protocol log shows the Host header but when they receive the headers it's not there? ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Soap error question

2010-05-10 Thread Lunt, Bruce
: U2 Mail List Subject: Re: [U2] Soap error question What? You can't make a SOAP call to a U2 program if that program has a CALL in it? Bill Lunt, Bruce said the following on 5/10/2010 11:53 AM: >> Sorry for the delay in my response, I was out of the office for the last >> week

Re: [U2] Soap error question

2010-05-10 Thread phil walker
I don't believe that is correct. > -Original Message- > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- > boun...@listserver.u2ug.org] On Behalf Of Bill Haskett > Sent: Tuesday, 11 May 2010 8:45 a.m. > To: U2 Mail List > Subject: Re: [U2] Soap error q

Re: [U2] Soap error question

2010-05-10 Thread Bill Haskett
Monday, May 03, 2010 11:33 AM To: U2 Users List Subject: Re: [U2] Soap error question I haven't worked a ton with SOAP requests but figured I'd throw this out there any how... Do you have a permissions error preventing a write? It seems most of what you've mentioned that's work

Re: [U2] Soap error question

2010-05-10 Thread Lunt, Bruce
--Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Joshua Gallant Sent: Monday, May 03, 2010 11:33 AM To: U2 Users List Subject: Re: [U2] Soap error question I haven't worked a ton with SOAP requests but figured I'd

Re: [U2] Soap error question

2010-05-03 Thread Joshua Gallant
I haven't worked a ton with SOAP requests but figured I'd throw this out there any how... Do you have a permissions error preventing a write? It seems most of what you've mentioned that's working are just reads but the one that write is failing. - Josh -Original Message- From: u2-user

RE: [U2] SOAP over HTTPS

2008-09-19 Thread Larry Hiscock
PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP over HTTPS Yes, there's a SOAPCreateSecureRequest that works. Or at least the person who wrote the code below claims it works. I can't help you with specifics, as someone else wrote it. This was written for UniVerse. (I starte

RE: [U2] SOAP over HTTPS

2008-09-16 Thread Janet Cedervall
Yes, there's a SOAPCreateSecureRequest that works. Or at least the person who wrote the code below claims it works. I can't help you with specifics, as someone else wrote it. This was written for UniVerse. (I started on these SOAP calls for some QualComm webservices last week, and haven't had mu

RE: [U2] SOAP in Unidata 6.1

2008-08-22 Thread Larry Hiscock
ning it up and implementing it next week. --Larry Larry Hiscock Western Computer Services -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tony G Sent: Friday, August 22, 2008 3:52 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP in Unidata 6.1 Larr

RE: [U2] SOAP in Unidata 6.1

2008-08-22 Thread David Jordan
Hi Tony One of the reasons to keep everything in the U2 environment is that it is nice for an ISV when you have little control of the environment you putting the product in. If you can just load universe on the server and everything works life is easy. Every time you layer another product, it is

RE: [U2] SOAP in Unidata 6.1

2008-08-22 Thread Tony G
Larry - I didn't recognize up front that you were talking about UD as webservice client. However the solution is the same. Creating a web service client and/or only takes a couple seconds (as seen in the video). This is how our products work - we write an item to a file that's polled every second

RE: [U2] SOAP in Unidata 6.1

2008-08-22 Thread Larry Hiscock
Davis Sent: Wednesday, August 20, 2008 3:01 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP in Unidata 6.1 That shouldn't be too difficult. I did a test with a free zip code service. What tools/components do you need to write a service to send stuff OUT of unidata? --- u2-users mailin

RE: [U2] SOAP in Unidata 6.1

2008-08-20 Thread Dave Davis
-Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Larry Hiscock Sent: Wednesday, August 20, 2008 3:50 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP in Unidata 6.1 Hi Tony, Thanks for the response, but I'm trying to go the

RE: [U2] SOAP in Unidata 6.1

2008-08-20 Thread Larry Hiscock
nect to an outside web service to retrieve data. --Larry Larry Hiscock Western Computer Services -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tony G Sent: Wednesday, August 20, 2008 10:07 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP in Unidata

RE: [U2] SOAP in Unidata 6.1

2008-08-20 Thread Symeon Breen
. Symeon. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tony G Sent: 20 August 2008 18:07 To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP in Unidata 6.1 Larry - have a look at the video on our website: removepleaseNebula-RnD.com/products

RE: [U2] SOAP in Unidata 6.1

2008-08-20 Thread Tony G
Larry - have a look at the video on our website: removepleaseNebula-RnD.com/products/gallery.htm You can do this in less than 20 minutes. You said free so disregard references to mv.NET and use UO.NET. The point here is that the SOAP/webservice part is completely generated by Visual Studio. The

RE: [U2] SOAP Call in Unidata

2008-01-21 Thread Steve Long
Perfect! I've got it working. Thanks for your help Symeon. Steve > From: [EMAIL PROTECTED]> To: u2-users@listserver.u2ug.org> Subject: RE: [U2] SOAP Call in Unidata> Date: Mon, 21 Jan 2008 20:07:34 +> > Hi Steve - you have to set the HTTP Default parameter called V

RE: [U2] SOAP Call in Unidata

2008-01-21 Thread Symeon Breen
L PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Long Sent: 21 January 2008 17:41 To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP Call in Unidata Thanks Simon, that helped a ton! The SOAP request is being constructed properly, but one thing I noticed is the POST reads HTTP\1.0. The

RE: [U2] SOAP Call in Unidata

2008-01-21 Thread Steve Long
from getting data returned? Is there another way to specify the HTTP version to use? Steve > From: [EMAIL PROTECTED]> To: u2-users@listserver.u2ug.org> Subject: RE: [U2] SOAP Call in Unidata> Date: Sun, 20 Jan 2008 16:05:16 +> > Hi Steve - you need to turn on protocol

RE: [U2] SOAP Call in Unidata

2008-01-20 Thread Symeon Breen
Hi Steve - you need to turn on protocol logging - this captures all the http request and response. Before the soap/http stuff do err= protocolLogging("logfile.log", "ON", 10) and at the end do err= protocolLogging("logfile.log", "OFF", 10) The output is in logfile.log. Rgds Symeon -O

RE: [U2] RE: U2 SOAP Server

2007-12-04 Thread Symeon Breen
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sara Burns Sent: 04 December 2007 08:17 To: u2-users@listserver.u2ug.org Subject: RE: [U2] RE: U2 SOAP Server You get such great information on this list. Based on the comments since I posted last Friday we have been doing some

RE: [U2] RE: U2 SOAP Server

2007-12-04 Thread Sara Burns
You get such great information on this list. Based on the comments since I posted last Friday we have been doing some experiments. I believe it would be best for us to develop Web Services in a Windows environment then deploy to a Linux SOAP Server. We have managed to transfer the files for a We

RE: [U2] RE: U2 SOAP Server

2007-12-03 Thread Dave Walker
ECTED] [mailto:[EMAIL PROTECTED] Behalf Of Hona, David S Sent: Monday, December 03, 2007 1:08 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] RE: U2 SOAP Server Here's what I've managed to work out so far (it would be nice of IBM U2 Support) could confirm/deny... A) To invoke the SOA

RE: [U2] RE: U2 SOAP Server

2007-12-02 Thread Hona, David S
ay, December 01, 2007 11:33 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] RE: U2 SOAP Server Hey folks, Just thought I'd take a second to reply back to the recent posts... The SOAP Server included with U2WSD gets installed when you install the tool. There isn't an option (durin

RE: [U2] RE: U2 SOAP Server

2007-12-01 Thread LeRoy Dreyfuss
dbit of info in there documentation. Regards, LeRoy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Walker Sent: Saturday, 1 December 2007 5:36 AM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] RE: U2 SOAP Server That WOULD make sense,

RE: [U2] RE: U2 SOAP Server

2007-11-30 Thread Dave Walker
AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] RE: U2 SOAP Server It was my understanding that you could create a jar file from the web services developer which you could then run in your web/app server of choice - Is that not so ?? I cant see that you would have to install the developer

RE: [U2] RE: U2 SOAP Server

2007-11-30 Thread Symeon Breen
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Walker Sent: 30 November 2007 14:55 To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] RE: U2 SOAP Server We've been taking baby steps with the web services developer, and have thus far been pleased with the simplicity

RE: [U2] RE: U2 SOAP Server

2007-11-30 Thread Dave Walker
he eclipse framework on a SERVER to run something as simple as a SOAP server. -- Dave Walker -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of LeRoy Dreyfuss Sent: Thursday, November 29, 2007 9:43 PM To: u2-users@listserver.u2ug.org Subject: [U2] RE: U2 SOAP Serv

[U2] RE: U2 SOAP Server

2007-11-29 Thread LeRoy Dreyfuss
Hello Sarah, The SOAP Server is installed with the U2 Web Services Developer tool, i.e. it is bundled with it. At present they are not intended to be on separate machines. However, IBM offers both a Linux and a Windows version of the tool (Linux needs a GUI desktop like Gnome or KDE to run the

RE: [U2] Soap Pt 2

2007-06-06 Thread gerry-u2ug
ginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Cipollina Sent: June 5, 2007 1:21 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Soap Pt 2 I ran into the same issue. What I ended up doing was writing my own subroutine to make web service calls. It is no

RE: [U2] Soap Pt 2

2007-06-05 Thread Nick Cipollina
I ran into the same issue. What I ended up doing was writing my own subroutine to make web service calls. It is nothing more than a socket call on a given port and IP address expecting a specific packet. Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL P

RE: [U2] SOAP API [ad]

2007-06-04 Thread Symeon Breen
20 To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP API [ad] Thanks Tony, but ... the web services we use are .NET, the HelloWorld example I used took less than minutes to setup. We also have inbound and outbound web services that use UO.NET. I'm not sure why we would want to pay for an addi

RE: [U2] SOAP API [ad]

2007-06-02 Thread David Jordan
Hi Gerry UniVerse Ver10.2 has a soap interface and tool. You can use this to build up soap server for UniVerse. You can set up a subroutine or use TCL to process requests. It simplifies a lot of the process. However it still lacks the element of identifying the user. With SOAP you need t

RE: [U2] SOAP API [ad]

2007-06-02 Thread Tony Gravagno
gerry wrote: > Thanks Tony, but ... > the web services we use are .NET, the HelloWorld example I used took > less than minutes to setup. We also have inbound and outbound web > services that use UO.NET. I'm not sure why we would want to pay for > an additional framework for such a simple thing.

RE: [U2] SOAP API [ad]

2007-06-02 Thread gerry-u2ug
ather than fighting with the SOAP API - but the jury is still out for another day or so. Gerry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tony Gravagno Sent: June 1, 2007 4:55 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP API [ad] Gerry

RE: [U2] SOAP API [ad]

2007-06-01 Thread Tony Gravagno
Gerry, the .NET framework has all of this building and parsing built-in, as well as auto-generation of web service clients and servers. With UO.NET or mv.NET you can create a front-end to your app with absolutely no concern for XML or SOAP envelopes. You can get your HelloWorld function within mi

RE: [U2] SOAP API

2007-06-01 Thread gerry-u2ug
2:45 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP API You get that string, but there are commands you can use which parse it into ordinary dynamic arrays. Look at the XDOM and XMAP related commands. IBM has sample basic code posted on their site that shows you how to ge

RE: [U2] SOAP API

2007-06-01 Thread Dave Davis
You get that string, but there are commands you can use which parse it into ordinary dynamic arrays. Look at the XDOM and XMAP related commands. IBM has sample basic code posted on their site that shows you how to get what you want. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMA

Re: [U2] SOAP and secured HTTP

2007-01-08 Thread Jason Lin
On Mon, 8 Jan 2007, Symeon Breen wrote: > No it doesn't - if you look at the other api's, that the soap one is built > upon, > > > i.e. the http and the socket ones, they both have a opensecure method that > you use a security context with. What i have done to do soap on https is use > the http a

Re: [U2] SOAP and secured HTTP

2007-01-08 Thread Symeon Breen
No it doesn't - if you look at the other api's, that the soap one is built upon, i.e. the http and the socket ones, they both have a opensecure method that you use a security context with. What i have done to do soap on https is use the http api and formulate the soap request manually - not hard

Re: [U2] SOAP

2006-03-01 Thread Jerry Banker
t;gerry-u2ug" <[EMAIL PROTECTED]>; Sent: Wednesday, March 01, 2006 7:47 AM Subject: RE: [U2] SOAP "give us a break" sorry I don't understand the comment. 8 years is an eternity in this business - cripes primetime java is only about, what, 3 years older than that - wo

RE: [U2] SOAP

2006-03-01 Thread gerry-u2ug
would modify its behaviour. Gerry -Original Message- From: Jerry Banker [mailto:[EMAIL PROTECTED] Sent: February 28, 2006 18:45 To: gerry-u2ug; u2-users@listserver.u2ug.org Subject: Re: [U2] SOAP You do realize that SOAP is barely 8 years old (1998) and not really accepted for half that time so give

RE: [U2] SOAP

2006-02-28 Thread Tony Gravagno
Gerry wrote: > It does appear that manually coding the SOAP message is the only way > to go which, in my opinion, gives is no advantage over the way we were > doing this via CallHttp. I had some material already written about alternatives for this sort of thing so I dumped them together and posted

Re: [U2] SOAP

2006-02-28 Thread Jerry Banker
You do realize that SOAP is barely 8 years old (1998) and not really accepted for half that time so give us a break. :-) It hasn't even hit puberty yet. - Original Message - From: "gerry-u2ug" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 28, 2006 3:41 PM Subject: [U2] SOAP Well

RE: [U2] Soap Message To WebService

2006-02-17 Thread Nick Cipollina
Try converting the "<" to "<" and the ">" to ">" etc... Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of phil walker Sent: Thursday, February 16, 2006 10:17 PM To: u2-users@listserver.u2ug.org Subject: [U2] Soap Message To WebServ

RE: [U2] SOAP requests from Universe

2005-08-16 Thread Mike Dallaire
tgagebuilder.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kay, Malcolm Sent: Tuesday, August 16, 2005 11:30 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP requests from Universe Mike My problem is that I don't know what to put in

RE: [U2] SOAP requests from Universe

2005-08-16 Thread Kay, Malcolm
isn't necessary, I'll see if I can get away without it. Malcolm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Dallaire Sent: 16 August 2005 15:46 To: u2-users@listserver.u2ug.org Subject: RE: [U2] SOAP requests from Universe Malcolm, We do

RE: [U2] SOAP requests from Universe

2005-08-16 Thread Mike Dallaire
Malcolm, We do not specifically set header information in our SOAP interfaces. But, you should be able to add a line similar to: statusvalue = SOAPSetRequestHeader(Handle, SendValue) after the create request. Handle and SendValue should be able to be variables or hardcoded values. HTH, Mike Da

RE: [U2] SOAP XML recordset schema

2004-05-10 Thread Daly, Mark
As long as the data is valid XML within it's own namespace, you should be OK. For example: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"; xmlns:xsd="http://www.w3.org/1999/XMLSchema";> http://blahblah.com/ws";>