Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > XML > Web Service

Reply
Thread Tools

Web Service

 
 
dlcacuff@gmail.com
Guest
Posts: n/a
 
      06-12-2007
I actually have some local web service examples a previous programmer
did. But I think I learn best by doing something myself no matter how
simple.

Can I create a WSDL that goes out to a remote server via HTTP and
tells me the contents of an XML file?

Can I make it that simple?

The question I have though is what executes the WSDL?

Can a WSDL be run in a web browser?

 
Reply With Quote
 
 
 
 
dlcacuff@gmail.com
Guest
Posts: n/a
 
      06-12-2007
On Jun 12, 9:40 am, dlcac...@gmail.com wrote:
> I actually have some local web service examples a previous programmer
> did. But I think I learn best by doing something myself no matter how
> simple.
>
> Can I create a WSDL that goes out to a remote server via HTTP and
> tells me the contents of an XML file?
>
> Can I make it that simple?
>
> The question I have though is what executes the WSDL?
>
> Can a WSDL be run in a web browser?


Just to clarify, I know I could probably scrape the xml on a remote
server with XMLHttpRequestObject or something, but I am looking to
create my first VERY simple web service and I want to execute the web
page on my end locally.

I also do have .Net on my end but I am not looking to do a .NET Web
Service although I have it as a fall-back option.

 
Reply With Quote
 
 
 
 
Joseph Kesselman
Guest
Posts: n/a
 
      06-12-2007
There are many WSDL resources at
http://www.ibm.com/developerworks/webservices
I haven't waded through them so I have no opinion re which would be the
best starting points. I know some step-by-step examples are pointed to
from http://www.ibm.com/developerworks/webservices/newto/

--
Joe Kesselman / Beware the fury of a patient man. -- John Dryden
 
Reply With Quote
 
Ian Wilson
Guest
Posts: n/a
 
      06-13-2007
wrote:
> I actually have some local web service examples a previous programmer
> did. But I think I learn best by doing something myself no matter how
> simple.
>
> Can I create a WSDL that goes out to a remote server via HTTP and
> tells me the contents of an XML file?


You can create a web-service that returns an XML document.
You can create a WSDL file that describes that service.
You can use that WSDL to help create a client for that web-service.

> Can I make it that simple?


It isn't really that simple

> The question I have though is what executes the WSDL?


WSDL isn't executed. WSDL is a description, various automated tools can
read that description, some of them create a "stub" for the described
service. The stub is source code in a language of your choice (C#, Java
etc). You can then write a program (in C# java etc) that uses that stub.

>
> Can a WSDL be run in a web browser?
>


No. However some web-services toolkits will, as a side effect, create
web-pages that allow you to test your web-service. This isn't really how
web-services are normally used though.

http://en.wikipedia.org/wiki/Web_services
http://en.wikipedia.org/wiki/WSDL
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Does timer in Web Service Global.asax block my Web Service from processing web-site requests? Leo Violette ASP .Net Web Services 0 04-17-2009 12:39 AM
'web service call failed: 500' using ajax hovermenu and web service Not Me ASP .Net 1 06-05-2007 03:09 PM
InvocationTargetException when calling "new Service()" in Axis web service to call another web service Michael Averstegge Java 0 01-10-2006 11:05 PM
Calling a Web Service using Axis, from within an Axis Web Service running under Tomcat hocho888 Java 1 04-29-2005 08:26 PM
Web Service that calls an external Web Service Isaias Formacio Serna ASP .Net Security 5 02-02-2004 07:38 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57