realbasic-nug
[Top] [All Lists]

SOAP and Mach-o?

To: REALbasic Network Users Group <realbasic-nug at lists dot realsoftware dot com>
Subject: SOAP and Mach-o?
From: David Teran <david dot teran at cluster9 dot com>
Date: Wed, 12 May 2004 10:11:38 +0200
Delivered-to: realbasic-nug at lists dot realsoftware dot com
List-help: <mailto:realbasic-nug-request@lists.realsoftware.com?subject=help>
List-id: REALbasic NUG <realbasic-nug.lists.realsoftware.com>
List-post: <mailto:realbasic-nug@lists.realsoftware.com>
Hi,

we have a small demo app which basically uses the following code. It works fine with carbon, but if we set the target to macos x only then it does not work anymore. The app dies at the sr = sm.invoke(wsMethod.text) line.

Any clues?

regards David


  f = GetOpenFolderItem("")
  bis = f.openAsBinaryFile
  sm = New SOAPMethod
  sm.parameter(base64argname.text) = EncodeBase64(bis.read(bis.length))
  sm.parameter(filenameargname.text) = f.name
  sm.url = url.text
  sr = sm.invoke(wsMethod.text)
  if sr.error = True then
    Beep
    MsgBox "Error: " + sr.errorMessage
  end
_______________________________________________
Unsubscribe or switch delivery mode:
<http://support.realsoftware.com/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

<Prev in Thread] Current Thread [Next in Thread>
  • SOAP and Mach-o?, David Teran <=