|
Home > Archive > BizTalk Server General > October 2005 > Isolated Adapter
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Venkat 2005-10-05, 7:48 am |
| Hi,
We have created a custom request-response adapter. It registers
succesfully. when ever we do a transaction through that, we see one entry for
every transaction in the service instance of HAT.
it is having the service name as -<isolated adapter>, status as
<dehydrated> but i get that the message is completed in the message flow. why
is this entry is not clearing up from messagebox database.
i subscribe a simple orchestration to that which will receive this messge
and send the same message back. when ever i do this i get the entry to the
service instance.
i ran the httprequestresponse sample in sdk, thought that might do the same
as it was the request response adapter, but it doesnot, where i am missing.
is it called zombie??
If any one can help us in getting the answer it would be helpful and
highly appreciated
| |
| Tomas Restrepo \(MVP\) 2005-10-05, 7:48 am |
| Venkat,
> We have created a custom request-response adapter. It registers
> succesfully. when ever we do a transaction through that, we see one entry
> for
> every transaction in the service instance of HAT.
>
> it is having the service name as -<isolated adapter>, status as
> <dehydrated> but i get that the message is completed in the message flow.
> why
> is this entry is not clearing up from messagebox database.
>
> i subscribe a simple orchestration to that which will receive this messge
> and send the same message back. when ever i do this i get the entry to the
> service instance.
>
> i ran the httprequestresponse sample in sdk, thought that might do the
> same
> as it was the request response adapter, but it doesnot, where i am
> missing.
> is it called zombie??
Sounds like your adapter might be failing in deleting the response message
from biztalk once you've transmitted it.... in the BaseAdapter framework,
this is done through the ResponseMessageComplete() method of the
StandardRequestResponseHandler class.
--
Tomas Restrepo
tomasr@mvps.org
http://www.winterdom.com/
| |
| Venkat 2005-10-05, 7:48 am |
| HI,
we are also using the baseadapter class, it is calling this function
and the details are:
StandardTransmitBatchHandler th = new
StandardTransmitBatchHandler(this.transportProxy, null);
th.DeleteMessage(this.responseMsg, null);
th.Done(null)
but still it remains. any clues on why it is not leaving?
"Tomas Restrepo (MVP)" wrote:
> Venkat,
>
>
> Sounds like your adapter might be failing in deleting the response message
> from biztalk once you've transmitted it.... in the BaseAdapter framework,
> this is done through the ResponseMessageComplete() method of the
> StandardRequestResponseHandler class.
>
>
> --
> Tomas Restrepo
> tomasr@mvps.org
> http://www.winterdom.com/
>
>
>
| |
| Tomas Restrepo \(MVP\) 2005-10-05, 9:01 pm |
| Hi Venkat,
> we are also using the baseadapter class, it is calling this function
> and the details are:
>
> StandardTransmitBatchHandler th = new
> StandardTransmitBatchHandler(this.transportProxy, null);
> th.DeleteMessage(this.responseMsg, null);
> th.Done(null)
>
> but still it remains. any clues on why it is not leaving?
Can you tell us exactly what HAT sais about the message? (in particular, can
you show us what the Service Details page says?)
--
Tomas Restrepo
tomasr@mvps.org
http://www.winterdom.com/
|
|
|
|
|