Giter Club home page Giter Club logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Response from server:
Invalid request payload xmlrpc element STRING cannot be child of PARAM

Original comment by [email protected] on 2 Apr 2012 at 2:54

from rpc-client.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Currently working around this issue by doing this:
RPCClient.exe -t ... -v -M extract.path -P 'custom@value#<string>TEST</string>'

Original comment by [email protected] on 2 Apr 2012 at 3:04

from rpc-client.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
I gave up, for now, on using this and wrote a VB script instead.

cscript xmlrpc.vbs method arg1 arg2 ...

You may need to tweak it to suit your environment/application.

<xmlrpc.vbs>
sRequest = "<?xml version='1.0'?><methodCall><methodName>extract." & 
LCase(WScript.Arguments.Item(0)) & "</methodName><params>"
For iParam = 1 to WScript.Arguments.Count - 1
    sRequest = sRequest & "<param><value><string>" & WScript.Arguments.Item(iParam) & "</string></value></param>"
Next
sRequest = sRequest & "</params></methodCall>"
sUrl = "https://host.domain.tld/path/index.php"
set oHTTP = CreateObject("Msxml2.XMLHTTP")
oHTTP.open "POST", sUrl, false
oHTTP.setRequestHeader "Content-Length", Len(sRequest)
oHTTP.setRequestHeader "Content-Type", "text/xml"
oHTTP.send sRequest
sResponse = oHTTP.responseText
If Len(sResponse) Then
    WScript.Echo sResponse
    WScript.Quit 0
Else
    WScript.Echo "ERROR"
    WScript.Quit 1
End If
</xmlrpc.vbs>

Original comment by [email protected] on 11 Apr 2012 at 4:41

from rpc-client.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.