SOAP attachment?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • SqlJunkies User

    #1

    SOAP attachment?

    Hi!

    is there any way to to upload a file as a soap-attachment???
    I have written a jscript function that handles all form-data, packs it up into one xml-file and sends it off to the server.
    before the latest MS security patch, the one that disabled adodb.stream object, this also worked nicely for upload-files (<input type=file>). I just read the file from the users harddisk using the adodb.stream activeXObject, read it into a an xml-node (nodeType=bin.b ase64) and sent it of to the server.

    Now I am wondering whether a similar thing could be achieved using SOAP attachments, since the adodb.stream object does not work anymore, thus preventimg the file-access und the client computer.

    The whole thing is not very security sensitive because it is only used by our company employees, but it still has to work on the internet - so just uninstalling the latest security patch is not an option.
    sven

    ---
    Posted using Wimdows.net NntpNews Component -

    Post Made from http://www.SqlJunkies.com/newsgroups Our newsgroup engine supports Post Alerts, Ratings, and Searching.
  • Dale

    #2
    Re: SOAP attachment?

    Search MSDN and the web for "SOAP with Attachments" and Web Services
    Enhancements (WSE).

    You may want to check out this article:
    http://msdn.microsoft.com/webservice...opaquedata.asp.

    Dale


    "SqlJunkies User" <User@-NOSPAM-SqlJunkies.com> wrote in message
    news:uHESErlaEH A.2840@TK2MSFTN GP11.phx.gbl...[color=blue]
    > Hi!
    >
    > is there any way to to upload a file as a soap-attachment???
    > I have written a jscript function that handles all form-data, packs it up[/color]
    into one xml-file and sends it off to the server.[color=blue]
    > before the latest MS security patch, the one that disabled adodb.stream[/color]
    object, this also worked nicely for upload-files (<input type=file>). I just
    read the file from the users harddisk using the adodb.stream activeXObject,
    read it into a an xml-node (nodeType=bin.b ase64) and sent it of to the
    server.[color=blue]
    >
    > Now I am wondering whether a similar thing could be achieved using SOAP[/color]
    attachments, since the adodb.stream object does not work anymore, thus
    preventimg the file-access und the client computer.[color=blue]
    >
    > The whole thing is not very security sensitive because it is only used by[/color]
    our company employees, but it still has to work on the internet - so just
    uninstalling the latest security patch is not an option.[color=blue]
    > sven
    >
    > ---
    > Posted using Wimdows.net NntpNews Component -
    >
    > Post Made from http://www.SqlJunkies.com/newsgroups Our newsgroup engine[/color]
    supports Post Alerts, Ratings, and Searching.


    Comment

    Working...