Large packets take forever to post, but I've posted some pretty big darn
packets to servers. The biggest thing to watch out for is ODBC limitations
on your fields. By default SQL Server 7 only allows 64K long strings. If you
need more, create a separate DSN for large block inserts and use that
datasource for inserting your WDDX packets.

-Dan

-----Original Message-----
From: Hal Helms [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 05, 2001 9:48 AM
To: CF-Talk
Subject: RE: wddx

I suspect that there is some limit, but I haven't run into it yet and don't
know what it is.

Hal Helms
Team Allaire
[ See ColdFusionTraining.com for info on "Best Practices with ColdFusion &
Fusebox" training ]


-----Original Message-----
From: Jeff Beer [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 05, 2001 9:26 AM
To: CF-Talk
Subject: RE: wddx


Hi Hal,

Is there any limit to the amount of data that can go in a (hidden) form
field (referring to the WDDX packet)?

Thanks,

Jeff


-----Original Message-----
From: Hal Helms [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 05, 2001 8:49 AM
To: CF-Talk
Subject: RE: wddx


How are you sending the WDDX packet from your machine to the other? You
might want to use a hidden form field. That way, when the information is
submitted to the processing machine, you can decode it with the <cfwddx> tag
where the input is "form.the_name". Make sense?


I'm going to be putting out an Occasional Newsletter this week that deals
with syndicating content using WDDX. This will have code showing how to do
this. If you'd like to, you can subscribe to it at www.halhelms.com.

Hal Helms
Team Allaire
[ See ColdFusionTraining.com for info on "Best Practices with ColdFusion &
Fusebox" training ]


-----Original Message-----
From: nizam [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 06, 2001 12:12 AM
To: CF-Talk
Subject: wddx


Hi everybody,
1.    I want to get data from other server using the WDDX coldfusion tag.I
have try to write code like below but it not work

In my pc:
<CFQUERY NAME='q' DATASOURCE='cfsnippets'>
    select Message_Id, Thread_id, Username from messages
</CFQUERY>

The recordset data is:...<P>
<CFOUTPUT QUERY=q>
    #Message_ID# #Thread_ID# #Username#<br>
</CFOUTPUT><P>

<!--- Serialize data to WDDX format --->
Serializing CFML data...<P>
<CFWDDX ACTION='cfml2wddx' input=#q# output='wddxText'>


And at the server, I code like this:

Deserializing WDDX packet...<P>
<CFWDDX ACTION='wddx2cfml' input=#wddxText# output='qnew'>

The recordset data is:...<P>
<CFOUTPUT QUERY=qnew>
    #Message_ID# #Thread_ID# #Username#<br>
</CFOUTPUT><P>


I can run the code in my pc but the server can't receive the value. Is it
the right way for the send data using wddx tags.

2.    Where I can find the example of the using WDDX to get data from other
server(coding example).

Thanks.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to