Ask a Question related to ASP.NET Web Services, Design and Development.
-
I R BABOON #1
Handling name value pairs in a web service
0. Assume an application can send data using HTTP POST.
1. For some reason, it sends the name value pairs using the syntax x.y --
which is perfectly acceptable in HTML forms.
2. Now I want to write a web method to accept values from this
application.
3. But a c# web method will throw an error if I try to define a web method
such as
myMethods ( string x.y ) { ... }
because x.y cannot be a parameter name.
4. What do I do ?
I R BABOON Guest
-
Parsing Name=Value Pairs in a URL
I want to quickly parse a URL to retrieve it's set of URL variables. What is the easiest way to fo this? I do not want to parse it using the URL... -
handling exceptions in asynchronous web service calls
I have a win forms application that calls a web service asynchronously. Occassionally, the web service call with raise an exception. Unfortunately,... -
Printers' pairs in InDesign
How do I make IDCS print out printers' pairs so that I can make up booklets on my desktop printer? In PageMaker you went to 'Create Booklet' in... -
Using key-pairs in a hosted environment
Hi We have a requirement to process "digitally signed" XML-based software licenses using an ASP.NET web site, hosted on an ISP server. I read an... -
Help with Pairs / Memory Game,
Hi would it be possible for you to send or make available your memory game as I am in the early stages of learning lingo and would love to see how... -
Dino Chiesa [Microsoft] #2
Re: Handling name value pairs in a web service
> a c# web method will throw an error if I try to define a web method
use proper syntax.> such as
>
> myMethods ( string x.y ) { ... }
>
> because x.y cannot be a parameter name.
>
> What do I do ?
myMethod (string x) { }
and parse for x and y .
ps: John, please don't cross-post.
--
Dino Chiesa
Microsoft Developer Division
d i n o c h @ o n l i n e . m i c r o s o f t . c o m
Dino Chiesa [Microsoft] Guest
-
john bailo #3
Re: Handling name value pairs in a web service
"Dino Chiesa [Microsoft]" <dinoch@online.microsoft.com> wrote in message news:<eKRzG19lDHA.2000@TK2MSFTNGP12.phx.gbl>...
>> > a c# web method will throw an error if I try to define a web method
> > such as
> >
> > myMethods ( string x.y ) { ... }
> >
> > because x.y cannot be a parameter name.
> >
> > What do I do ?
> use proper syntax.
> myMethod (string x) { }
> and parse for x and y .
what do you mean?
I am describing a problem situation,
I know that ( string x.y ) is not proper
syntax.
that is why I posted the query.
the lack of expertise and understanding
on these dotnet boards clearly means
that dotnet is not being used by professional
programmers. i give up !
john bailo Guest



Reply With Quote

