Thanks for the example, but the API I have to use requires a multipart post.

________________________________
From: general-boun...@developer.marklogic.com 
[general-boun...@developer.marklogic.com] on behalf of seme...@hotmail.com 
[seme...@hotmail.com]
Sent: Monday, April 18, 2011 4:56 PM
To: general@developer.marklogic.com
Subject: Re: [MarkLogic Dev General] Multipart HTTP POST

This may not be exactly what you are looking for, but what I have done with 
some REST interfaces is actually include the binary data in a single XML file 
that is being posted.

Below is an example of loading an image off the filesystem, converting it to 
Base64 and including it in a JSON structure, then POSTing the payload to a web 
service. On the service side I just convertit back from base 64 to binary. This 
works fine in terms of speed and simplicity, and I don't have to deal with 
multipart. Not sure if it applies to what you are doing though.



let $src-filename := "Desert.png"
let $src-img-data := 
xs:base64Binary(xdmp:document-get("C:\Users\Public\Pictures\Sample 
Pictures\Desert.png"))

let $payload := fn:concat('{
    "something": "hello",
    "srcFilename": "', $src-filename, '",
    "srcImgData": "', $src-img-data, '"
}')

return xdmp:http-post("http://myendpoint:8180/services/imagething";,
    <options xmlns="xdmp:http">
        <data>{$payload}</data>
        <headers>
            <content-type>application/json</content-type>
        </headers>
    </options>)




> From: gregory.mur...@ptsem.edu
> To: general@developer.marklogic.com
> Date: Mon, 18 Apr 2011 20:36:04 +0000
> Subject: [MarkLogic Dev General] Multipart HTTP POST
>
> I need to send an HTTP POST where the data includes multiple string 
> parameters but also a binary file. How can I do this kind of 
> multipart/form-data POST using xdmp:http-post?
>
> Thanks,
> Greg
>
> Gregory Murray
> Digital Library Application Developer
> Princeton Theological Seminary
>
> _______________________________________________
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
_______________________________________________
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general

Reply via email to