Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-09 Thread James Holmes
O'Keefe [mailto:dan.oke...@gmail.com] Sent: Sunday, June 06, 2010 2:36 PM To: cf-talk Subject: Re: ColdFusion and .NET Web Services running WSE 3.0 James, I would be interested in participating on this as well as I have a current need for the WS-Security piece with ExactTarget API. Dan

RE: ColdFusion and .NET Web Services running WSE 3.0

2010-06-07 Thread Paul Alkema
: Dan O'Keefe [mailto:dan.oke...@gmail.com] Sent: Sunday, June 06, 2010 2:36 PM To: cf-talk Subject: Re: ColdFusion and .NET Web Services running WSE 3.0 James, I would be interested in participating on this as well as I have a current need for the WS-Security piece with ExactTarget API. Dan

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-06 Thread Dan O'Keefe
James, I would be interested in participating on this as well as I have a current need for the WS-Security piece with ExactTarget API. Dan On Sat, Jun 5, 2010 at 7:13 AM, James Holmes james.hol...@gmail.com wrote: OK, I'll finish up the webservice wrapper CFC on which I'm working and then

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-05 Thread James Holmes
Coincidentally, I've just finished developing the code necessary to do a basic WS-SECURITY call in CF, using standard cf webservices code (i.e. no extra Java jars or other external dependencies). If people need this sort of thing, let me know because I'm thinking of starting an open source

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-05 Thread Phillip Duba
James, I know I will definitely need something like that in the future. While this project went the .NET route, there are two follow-on projects that will most likely be needed, one requested by my group, so I know I'll be working on at least one more integration using WS-Securit. Thanks, Phil

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-05 Thread James Holmes
OK, I'll finish up the webservice wrapper CFC on which I'm working and then look at what's necessary to add the digest password type (currently I just have the text type working) and any other parts of WS-Security that are possible in CF. The code will work in CF8 and higher, although parts of

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-05 Thread Arsalan Tariq Keen
please share once done! :) Regards, Arsalan -- From: James Holmes james.hol...@gmail.com Sent: Saturday, June 05, 2010 7:13 PM To: cf-talk cf-talk@houseoffusion.com Subject: Re: ColdFusion and .NET Web Services running WSE 3.0 OK, I'll finish

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-04 Thread Dan O'Keefe
Philip, Did you authorization require WS-Security? Dan -- Dan O'Keefe On Thu, Apr 29, 2010 at 12:13 PM, Phillip Duba phild...@gmail.com wrote: Dave, thanks for the response. I've gone to executing the request using CFHTTP, creating the soap:Header tag and building it as I go

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-04 Thread Phillip Duba
It did for the pure web services, not for the HTTP Post method (not recommended for production). It was a proof-of-concept under a tight deadline so I didn't have time to follow the web service all the way to the conclusion I would need for production. I did find a few blog posts that got me

ColdFusion and .NET Web Services running WSE 3.0

2010-04-29 Thread Phillip Duba
Hopefully someone else has run into this issue before and can at least point me in the right direction. I am trying to consume a .NET web service that has been protected using the .NET WSE 3.0 service. Here's the error I get while trying to execute the service: Cannot perform web service

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-04-29 Thread Dave Watts
Hopefully someone else has run into this issue before and can at least point me in the right direction. I am trying to consume a .NET web service that has been protected using the .NET WSE 3.0 service. Here's the error I get while trying to execute the service: Cannot perform web service

Re: ColdFusion and .NET Web Services running WSE 3.0

2010-04-29 Thread Phillip Duba
Dave, thanks for the response. I've gone to executing the request using CFHTTP, creating the soap:Header tag and building it as I go through the WSE spec and examples. I've gotten to the point that I get unauthorized so that's where I'm at now. I may have to use CFHTTP to do it, but we'll see.