When the boss is away.......(CONTEST)

Status
Not open for further replies.
I use Flash as the front end and CFMX as the middleware. So, I can send Objects, strings, arrays, XML, etc...

Is this what you are talking about?

so you can send the xml, its the consuming the xml back from the ups server that is a problem? oh you were having socket issues, thats right. Hmm I could write a little .net shim you could call from inside CF to send it, assuming you use windows servers ;)
 
you can do something like this in CF now

<CFOBJECT ACTION="create" type=".net" NAME="env" CLASS="System.Environment">
<p>Computer Name = <CFOUTPUT>#env.get_MachineName()#</CFOUTPUT>


and instantiate any .Net object, call its methods, etc. Actually CF8 is going to have very tight .net ties it looks like.
 
you can do something like this in CF now

<CFOBJECT ACTION="create" type=".net" NAME="env" CLASS="System.Environment">
<p>Computer Name = <CFOUTPUT>#env.get_MachineName()#</CFOUTPUT>


and instantiate any .Net object, call its methods, etc. Actually CF8 is going to have very tight .net ties it looks like.

Cool thanks.
 
so you can send the xml, its the consuming the xml back from the ups server that is a problem? oh you were having socket issues, thats right. Hmm I could write a little .net shim you could call from inside CF to send it, assuming you use windows servers ;)

Yeap.

Once I start working on that section again. I will hit you up on some advice.

+reps when I can...
 
Sure thing! that was one of the nicest things MS did in .net, the way they handle xml/web services. Its so fast to whup something together, because a lot of it gets automated for you.
 
Very nice.

And I actually need to finish this piece I am working on now. It is a control panel that runs credit cards for our ordering department.

I need to get it done before I leave Mondee, and I don't feel like working this weekend. So, I will be back in a few...
 
so you can send the xml, its the consuming the xml back from the ups server that is a problem? oh you were having socket issues, thats right. Hmm I could write a little .net shim you could call from inside CF to send it, assuming you use windows servers ;)

...
 
Status
Not open for further replies.
Back
Top