[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

webservice return value but continue some process

raj

7/24/2003 2:29:00 AM

Hi,
I am new to this web service concept.
I have following requirment for a web method--

web service check for some data
if data is ok -- returns a value
if data is not ok- returns a value

Now My requirement is to continue some processing if data
is ok. though I have to return a value immediately.Whether
the coninued process failed does not have any affect on
the user.

can anyone point me out how to approch this problem.
I will appreciate any help.
thanks
Rajesh
3 Answers

Tomas Restrepo

7/24/2003 3:30:00 AM

0

raj,

> I am new to this web service concept.
> I have following requirment for a web method--
>
> web service check for some data
> if data is ok -- returns a value
> if data is not ok- returns a value
>
> Now My requirement is to continue some processing if data
> is ok. though I have to return a value immediately.Whether
> the coninued process failed does not have any affect on
> the user.
>
> can anyone point me out how to approch this problem.
> I will appreciate any help.

I'd probably spin off the real work unto a Queued Component running in COM+
or use MSMQ to send a message to a service...

--
Tomas Restrepo
tomasr@mvps.org


raj

7/24/2003 3:44:00 AM

0

IS there a way to implement this in web service.
is there a way to return a value and continue process?


>-----Original Message-----
>raj,
>
>> I am new to this web service concept.
>> I have following requirment for a web method--
>>
>> web service check for some data
>> if data is ok -- returns a value
>> if data is not ok- returns a value
>>
>> Now My requirement is to continue some processing if
data
>> is ok. though I have to return a value
immediately.Whether
>> the coninued process failed does not have any affect on
>> the user.
>>
>> can anyone point me out how to approch this problem.
>> I will appreciate any help.
>
>I'd probably spin off the real work unto a Queued
Component running in COM+
>or use MSMQ to send a message to a service...
>
>--
>Tomas Restrepo
>tomasr@mvps.org
>
>
>.
>

Steven Licciardi

7/24/2003 6:22:00 AM

0

How about using threads, would that work? From your main function you call
a new function in a thread then return your value from the main function,
so:

function mainwebfunction(params) as integer
dim m as new thread(addressof newFunction)
m.start()

''do some stuff here
return value
end function

function newFunction()
''write your continuation code here
end function

I'm just not sure if newFunction will just stop when the mainFunction
returns when using webservices?

Steven

"raj" <torajeshkumar@hotmail.com> wrote in message
news:078901c35195$dd7316b0$a401280a@phx.gbl...
> IS there a way to implement this in web service.
> is there a way to return a value and continue process?
>
>
> >-----Original Message-----
> >raj,
> >
> >> I am new to this web service concept.
> >> I have following requirment for a web method--
> >>
> >> web service check for some data
> >> if data is ok -- returns a value
> >> if data is not ok- returns a value
> >>
> >> Now My requirement is to continue some processing if
> data
> >> is ok. though I have to return a value
> immediately.Whether
> >> the coninued process failed does not have any affect on
> >> the user.
> >>
> >> can anyone point me out how to approch this problem.
> >> I will appreciate any help.
> >
> >I'd probably spin off the real work unto a Queued
> Component running in COM+
> >or use MSMQ to send a message to a service...
> >
> >--
> >Tomas Restrepo
> >tomasr@mvps.org
> >
> >
> >.
> >