In general, a "web service" is basically just some kind of remote procedure call system implemented over the web's transport protocol (http or https). This means it is a way for one computer program to perform tasks/answer questions for another computer program, remotely (that is: not on the same computer... or at least in a manner which could be used even if it were on another computer, although the two programs in question might be on the same question).

There are an awful lot of different uses for remote procedure calls. There are also an awful lot of different implementations of remote procedure call frameworks. There are even several that fall under the ubmrella of "web services": SOAP, XML-RPC, and tons of varieties of roll-your-own.

Anyway... when somebody says something like "You will be connecting to our office via webservices", it's basically gibberish. What it probably means is that they either:

Now... if accurate (or as close as can be approximated), what it means is that you will be using some kind application, remotely, that resides on a computer in their office. And that the means for transporting requests for the application and responses from the application, is a web protocol... even though you probably won't be using a web browser, or, really, be in any way aware of the fact that the data is traveling back and forth in web requests and responses, versus, say, emails, or UDP datagrams, or any of a billion methods for carrying data from here to there.
------------ :Wq Not an editor command: Wq

In reply to Re: Webservices by etcshadow
in thread OT: Webservices by Gorby

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.