Soap Based XML webservice creation | | |
I am new to this area,please bear with me for this basic question. :)
I have an xml schema file xyz.xsd file with me,That contains request and
response xml schema ,how can I proceed to create a soap based xml webservice??
Thanks in advance.
Sai | | | | re: Soap Based XML webservice creation
Hi,
are you talking about "creating a webservice that will expose
functionality and its data (from the xyz.xsd)" or "consuming a
webservice that defines its data (from the xyz.xsd)" ?
Which language/development platform are you using/must you use?
What you will have to do is create a WSDL. This is the WebService
description (and will enventually contain your schema).
From the WSDL you can have the server side template generated or the
client side proxy.
Hope this helps,
Marvin Smit.
On Tue, 16 Aug 2005 07:10:01 -0700, Sai
<Sai@discussions.microsoft.com> wrote:
[color=blue]
> I am new to this area,please bear with me for this basic question. :)
>
>I have an xml schema file xyz.xsd file with me,That contains request and
>response xml schema ,how can I proceed to create a soap based xml webservice??
>
>
>Thanks in advance.
>Sai
>[/color] | | | | re: Soap Based XML webservice creation
Marvin
Thank you so much for your quick reply,
Basically I am looking to create a webservice(VB.NET)that will expose
functionality and its data from the xyz.xsd XML schema file
I have VS.NET development tool with me.
How can I create WSDL from XSD??
Thanks for your time and help
Sai
"Marvin Smit" wrote:
[color=blue]
> Hi,
>
> are you talking about "creating a webservice that will expose
> functionality and its data (from the xyz.xsd)" or "consuming a
> webservice that defines its data (from the xyz.xsd)" ?
>
> Which language/development platform are you using/must you use?
>
> What you will have to do is create a WSDL. This is the WebService
> description (and will enventually contain your schema).
>
> From the WSDL you can have the server side template generated or the
> client side proxy.
>
> Hope this helps,
>
> Marvin Smit.
>
>
> On Tue, 16 Aug 2005 07:10:01 -0700, Sai
> <Sai@discussions.microsoft.com> wrote:
>[color=green]
> > I am new to this area,please bear with me for this basic question. :)
> >
> >I have an xml schema file xyz.xsd file with me,That contains request and
> >response xml schema ,how can I proceed to create a soap based xml webservice??
> >
> >
> >Thanks in advance.
> >Sai
> >[/color]
>
>[/color] | | | | re: Soap Based XML webservice creation
Hi,
the most straight forward way is probably:
- run XSD.EXE /c over the schemas you got (generated the data classes)
- Implement a class (derive from WebService) and implement methods
that accept & return the generated types from step 1.
- WSDL = generated based on the webservice implementation you made.
Hope this helps,
Marvin Smit.
On Tue, 16 Aug 2005 07:31:05 -0700, Sai
<Sai@discussions.microsoft.com> wrote:
[color=blue]
>Marvin
> Thank you so much for your quick reply,
>
>Basically I am looking to create a webservice(VB.NET)that will expose
>functionality and its data from the xyz.xsd XML schema file
>
>I have VS.NET development tool with me.
>
>
>How can I create WSDL from XSD??
>
>
>Thanks for your time and help
>
>Sai
>
>"Marvin Smit" wrote:
>[color=green]
>> Hi,
>>
>> are you talking about "creating a webservice that will expose
>> functionality and its data (from the xyz.xsd)" or "consuming a
>> webservice that defines its data (from the xyz.xsd)" ?
>>
>> Which language/development platform are you using/must you use?
>>
>> What you will have to do is create a WSDL. This is the WebService
>> description (and will enventually contain your schema).
>>
>> From the WSDL you can have the server side template generated or the
>> client side proxy.
>>
>> Hope this helps,
>>
>> Marvin Smit.
>>
>>
>> On Tue, 16 Aug 2005 07:10:01 -0700, Sai
>> <Sai@discussions.microsoft.com> wrote:
>>[color=darkred]
>> > I am new to this area,please bear with me for this basic question. :)
>> >
>> >I have an xml schema file xyz.xsd file with me,That contains request and
>> >response xml schema ,how can I proceed to create a soap based xml webservice??
>> >
>> >
>> >Thanks in advance.
>> >Sai
>> >[/color]
>>
>>[/color][/color] | | | | re: Soap Based XML webservice creation
OK.
Thanks for the help
"Marvin Smit" wrote:
[color=blue]
> Hi,
>
> the most straight forward way is probably:
>
> - run XSD.EXE /c over the schemas you got (generated the data classes)
> - Implement a class (derive from WebService) and implement methods
> that accept & return the generated types from step 1.
> - WSDL = generated based on the webservice implementation you made.
>
> Hope this helps,
>
> Marvin Smit.
>
>
> On Tue, 16 Aug 2005 07:31:05 -0700, Sai
> <Sai@discussions.microsoft.com> wrote:
>[color=green]
> >Marvin
> > Thank you so much for your quick reply,
> >
> >Basically I am looking to create a webservice(VB.NET)that will expose
> >functionality and its data from the xyz.xsd XML schema file
> >
> >I have VS.NET development tool with me.
> >
> >
> >How can I create WSDL from XSD??
> >
> >
> >Thanks for your time and help
> >
> >Sai
> >
> >"Marvin Smit" wrote:
> >[color=darkred]
> >> Hi,
> >>
> >> are you talking about "creating a webservice that will expose
> >> functionality and its data (from the xyz.xsd)" or "consuming a
> >> webservice that defines its data (from the xyz.xsd)" ?
> >>
> >> Which language/development platform are you using/must you use?
> >>
> >> What you will have to do is create a WSDL. This is the WebService
> >> description (and will enventually contain your schema).
> >>
> >> From the WSDL you can have the server side template generated or the
> >> client side proxy.
> >>
> >> Hope this helps,
> >>
> >> Marvin Smit.
> >>
> >>
> >> On Tue, 16 Aug 2005 07:10:01 -0700, Sai
> >> <Sai@discussions.microsoft.com> wrote:
> >>
> >> > I am new to this area,please bear with me for this basic question. :)
> >> >
> >> >I have an xml schema file xyz.xsd file with me,That contains request and
> >> >response xml schema ,how can I proceed to create a soap based xml webservice??
> >> >
> >> >
> >> >Thanks in advance.
> >> >Sai
> >> >
> >>
> >>[/color][/color]
>
>[/color] |  | Similar .NET Framework bytes | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,501 network members.
|