publicando WF State en WCF usando TRX ¿?

28/03/2007 - 15:42 por Pepe | Informe spam
Les saludo a todos primeramente,

Necesito urgente ayuda, tengo que implementar en una arquitectura de
servicios.

las tecnologias de WWF y WCF utilizando el comportamiento transaccional
entre las capas.

La verdad he buscado ayuda en internet y aparece bien poco material al
respecto o los temas por separados... Agradeceria una ayuda URGENTE...

Un demo con una entidad de negocio, pero que muestre el manejo de lo
anterior... no se.. algun dibujo.. .

además tratando de implementar transacciones en WCF, al invocar un servicio
desde ASP.Net, aparece el siguiente error.

* Client found response content type of '', but expected
'application/soap+xml'. The request failed with an empty response. *

Tengo esto en el web.config del Servicio Hosteado desde IIS.

<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="miBinding" transactionFlow="true" />
</wsHttpBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<services>
<service behaviorConfiguration="returnFaults" name="Servicios">
<endpoint binding="wsHttpBinding" bindingConfiguration="miBinding"
contract="IServicios" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="returnFaults">
<serviceDebug includeExceptionDetailInFaults="true"/>
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>

Agradecido desde ya
Slds.
 

Leer las respuestas

#1 CESAR DE LA TORRE [MVP]
28/03/2007 - 17:50 | Informe spam
Tienes un ejemplo de transacciones distribuidas entre diferentes
Servicios-WCF en el SDK de Windows Vista. Si no te funciona o tienes
problemas, déjame un mensaje en mi BLOG y te puedo pasar un ejemplo con
código mío (ahora mismo no te lo puedo buscar.). OK?
Mi BLOG es:
http://ctorre.spaces.live.com

CESAR DE LA TORRE
Software Architect
[Microsoft MVP - Connected Systems]
[MCSE] [MCT]
BLOG: http://ctorre.spaces.live.com

Renacimiento
[Microsoft GOLD Certified Partner]


"Pepe" wrote:

Les saludo a todos primeramente,

Necesito urgente ayuda, tengo que implementar en una arquitectura de
servicios.

las tecnologias de WWF y WCF utilizando el comportamiento transaccional
entre las capas.

La verdad he buscado ayuda en internet y aparece bien poco material al
respecto o los temas por separados... Agradeceria una ayuda URGENTE...

Un demo con una entidad de negocio, pero que muestre el manejo de lo
anterior... no se.. algun dibujo.. .

además tratando de implementar transacciones en WCF, al invocar un servicio
desde ASP.Net, aparece el siguiente error.

* Client found response content type of '', but expected
'application/soap+xml'. The request failed with an empty response. *

Tengo esto en el web.config del Servicio Hosteado desde IIS.

<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="miBinding" transactionFlow="true" />
</wsHttpBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<services>
<service behaviorConfiguration="returnFaults" name="Servicios">
<endpoint binding="wsHttpBinding" bindingConfiguration="miBinding"
contract="IServicios" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="returnFaults">
<serviceDebug includeExceptionDetailInFaults="true"/>
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>

Agradecido desde ya
Slds.

Preguntas similares