On Mon, Jun 22, 2009 at 9:29 PM, Deepal Jayasinghe <dee...@opensource.lk>wrote:
> The only way you can get session working with .Net is using transport > session, that is by using cookies.In addition to that .Net does not send > the cookies as JSESSION_ID you need to do a an additional step in the > service client. > Try setting following property and see; > > http://wso2.org/library/3464 > > Thanks, > Deepal Several years ago I implemented a custom design for .net session handling, which exchanged a UUID since both java and .net support them. On the Java side I used ehcache to maintain the state. Its pretty simple really. You can see the code here (article is in portuguese - just search on UUID for the code. The var names and code comments are in english) : http://braziloutsource.com/wss2.html HTH, Robert