Re: Using iText with CFML for PDF forms

2009-07-02 Thread Leigh

>Having said that my problem is that I am using Railo 3.1 and I am trying 
>to figure out a way I can implement the PDF-Form population functionality 
>using Railo 3.1
>:)
>so any good news for me???

I know very little about railo. But I _think_ it also uses iText internally. So 
theoretically you should be able to use iText classes simply by calling 
createObject(). If not, you could also try using the JavaLoader.cfc.  
http://javaloader.riaforge.org/

See this example that works with CF8.  I would be curious to know if it does 
work with railo, or if needs tweaking.

http://cfsearching.blogspot.com/2007/12/getting-started-with-itext-part-15.html


  


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324175
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: New CF8 vulnerability

2009-07-02 Thread James Holmes

And that's why our prod servers are read only (and Linux).

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/7/3 Dave Watts :
>
> You may want to check for this on any clients/projects you've worked with:
> http://isc.sans.org/diary.html?storyid=6715
>
> Remediation steps available here:
> http://www.codfusion.com/blog/post.cfm/cf8-and-fckeditor-security-threat
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324174
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


New CF8 vulnerability

2009-07-02 Thread Dave Watts

You may want to check for this on any clients/projects you've worked with:
http://isc.sans.org/diary.html?storyid=6715

Remediation steps available here:
http://www.codfusion.com/blog/post.cfm/cf8-and-fckeditor-security-threat

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: AJAX

2009-07-02 Thread Cutter (ColdFusion)

"widgets" are the autosuggest combobox, the html data grid, border 
layouts, modal windows, etc., typically loaded by a remote source via 
Ajax. So, some of what you mention (the search field) falls under that 
category, while some of the other stuff is just pure Ajax, for which 
either JQuery or Ext Core are both well suited.

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer

Co-Author of "Learning Ext JS"
http://www.packtpub.com/learning-ext-js/book
_
http://blog.cutterscrossing.com


On 7/2/2009 3:40 PM, webmas...@pegweb.com wrote:
> Can you explain in more detail ajaxified widgets?
>
> I'm looking to prefetch possible search keywords in a search field.
> Get a different image from the database when a user clicks and display
> it without refreshing the page.
> Change search results without refreshing the page.
>
> Stuff like that.
>
>
>
> -Original Message-
> From: Cutter (ColdFusion) [mailto:cold.fus...@cutterscrossing.com]
> Sent: Thursday, July 02, 2009 4:20 PM
> To: cf-talk
> Subject: Re: AJAX
>
>
> Guys, I love JQuery too, for DOM manipulation. But, if you're needing
> ajaxified 'widgets' then Ext Js is a better choice. Not only do they
> have an extensive well polished and consistent library, but you can use
> the cfajax tags to rapid prototype an app, then build out final versions
>
> with something that looks exactly the same (since that's what they use
> under the hood).
>
> Shameless Promotion: Good Book? (See the signature block)
>
> Steve "Cutter" Blades
> Adobe Certified Professional
> Advanced Macromedia ColdFusion MX 7 Developer
>
> Co-Author of "Learning Ext JS"
> http://www.packtpub.com/learning-ext-js/book
> _
> http://blog.cutterscrossing.com
>
>
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324172
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Regex wrapping div tags round img tags

2009-07-02 Thread Peter Boughton

>A regex question on this list that doesn't already have 5 answers? Wow.
>Holiday weekend must be in full effect already.

Nah, HoF was broken (again) earlier.

I tried posting half a dozen times throughout the day but kept getting errors.


Anyway, a single but significant difference in our answers: you don't need a 
capturing group for the whole regex.
The \0 backreference is always available, and contains the entire matched text. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324171
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Regex wrapping div tags round img tags

2009-07-02 Thread Peter Boughton

Regular Expressions are not designed for HTML manipulation of this sort.
You should really be using a DOM parser and manipulating the data as a set of 
nodes.


That said, here is a very basic regex replace that will work in the majority 
(but not all) situations:

rereplace( SomeHtml , ']+>' , '\0' , 'all' )


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324170
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cleaner way to retrieve a value from an XML node (XML-RPC)

2009-07-02 Thread Cameron Johnson

>Do you always know how many children will be returned for a specific node?
>
>If not you want to check this out. It will loop over children and you can
>work specifically with those items.
>
>http://www.bennadel.com/blog/1039-Ask-Ben-Iterating-Over-A-ColdFusion-XML-Document.htm

Yes, but the number is different depending on the success or failure of the 
login. My instinct is to add logic to determine that success/failure first, 
then go find the node I need. Or, I'll see if I can use the technique in that 
blog to make it more compact. 

Thanks for pointing that out, Casey. (And thanks, Ben, for writing it).

Cameron 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324169
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: AJAX

2009-07-02 Thread webmaster

Can you explain in more detail ajaxified widgets?

I'm looking to prefetch possible search keywords in a search field.
Get a different image from the database when a user clicks and display
it without refreshing the page.
Change search results without refreshing the page.

Stuff like that.



-Original Message-
From: Cutter (ColdFusion) [mailto:cold.fus...@cutterscrossing.com] 
Sent: Thursday, July 02, 2009 4:20 PM
To: cf-talk
Subject: Re: AJAX


Guys, I love JQuery too, for DOM manipulation. But, if you're needing 
ajaxified 'widgets' then Ext Js is a better choice. Not only do they 
have an extensive well polished and consistent library, but you can use 
the cfajax tags to rapid prototype an app, then build out final versions

with something that looks exactly the same (since that's what they use 
under the hood).

Shameless Promotion: Good Book? (See the signature block)

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer

Co-Author of "Learning Ext JS"
http://www.packtpub.com/learning-ext-js/book
_
http://blog.cutterscrossing.com





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324168
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: AJAX

2009-07-02 Thread Cutter (ColdFusion)

Guys, I love JQuery too, for DOM manipulation. But, if you're needing 
ajaxified 'widgets' then Ext Js is a better choice. Not only do they 
have an extensive well polished and consistent library, but you can use 
the cfajax tags to rapid prototype an app, then build out final versions 
with something that looks exactly the same (since that's what they use 
under the hood).

Shameless Promotion: Good Book? (See the signature block)

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer

Co-Author of "Learning Ext JS"
http://www.packtpub.com/learning-ext-js/book
_
http://blog.cutterscrossing.com



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324167
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: AJAX

2009-07-02 Thread webmaster

Thanks a lot this is exactly what I needed.



-Original Message-
From: Nathan Strutz [mailto:str...@gmail.com] 
Sent: Thursday, July 02, 2009 2:54 PM
To: cf-talk
Subject: Re: AJAX


Yes, the frameworks are different, but really, there is only a few that
matter, and only one of those that really actually matter.

jQuery is, by far, the best.

If you pay attention to most javascript questions people have these
days,
it's something like this:

   "Q: How do I do X in javascript?"
   "A: You don't. Just use jQuery."

If you want a whole widget ui framework, use ExtJs. Otherwise, just use
jQuery. It's unbelievably good.

jquery.com has a tutorial area http://docs.jquery.com/Tutorials which is
good. For me, it helps to have videos, so google it or hit up youtube
for
them.

nathan strutz
[Blog and Family @ http://www.dopefly.com/]
[AZCFUG Manager @ http://www.azcfug.org/]
[Twitter @nathanstrutz]


On Thu, Jul 2, 2009 at 11:32 AM,  wrote:

>
> Thanks a lot Andy. I knew there were different frameworks out there
but
> wasn't sure how that fit in with AJAX. I assume they are all AJAX but
> much like .NET they all have different built in functions etc?
>
>
> -Original Message-
> From: Andy Matthews [mailto:li...@commadelimited.com]
> Sent: Thursday, July 02, 2009 2:26 PM
> To: cf-talk
> Subject: RE: AJAX
>
>
> I'd avoid a book on "AJAX" and instead pick a book focusing on a
> specific
> JavaScript framework such as jQuery, or ExtJS. If you just want AJAX
> then it
> might be worth it to write your own code, but if you're wanting "rich
> internet apps" then you'll be needing DOM manipulation and effects
> anyway.
>
> My choice has, for the last 3 years, been jQuery. It's lightweight and
> super
> easy to use. jQuery is to JavaScript like ColdFusion is to server side
> languages. It makes it fast, easy, and good.
>
> The Learning jQuery 1.3 book comes highly recommended. I'd also
suggest
> you
> jump on the official jQuery mailing list over at Google Groups:
> http://groups.google.com/group/jquery-en
>
>
> andy
>
> -Original Message-
> From: webmas...@pegweb.com [mailto:webmas...@pegweb.com]
> Sent: Thursday, July 02, 2009 12:56 PM
> To: cf-talk
> Subject: AJAX
>
>
> Can anyone recommend a good book for AJAX? I want to start working on
> more
> web 2.0 style apps and with the new CF server it seems to make it
> easier. I
> just need to understand more about it and how it all works. I can
> JavaScript
> and I can CF so I wouldn't think it would be too hard to pickup. Any
> recommendations for reading material on the subject? Thanks in
advance.
>
>
>
>
>
>
>
>
>
>
>
>
>
> 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324166
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: AJAX

2009-07-02 Thread Nathan Strutz

Yes, the frameworks are different, but really, there is only a few that
matter, and only one of those that really actually matter.

jQuery is, by far, the best.

If you pay attention to most javascript questions people have these days,
it's something like this:

   "Q: How do I do X in javascript?"
   "A: You don't. Just use jQuery."

If you want a whole widget ui framework, use ExtJs. Otherwise, just use
jQuery. It's unbelievably good.

jquery.com has a tutorial area http://docs.jquery.com/Tutorials which is
good. For me, it helps to have videos, so google it or hit up youtube for
them.

nathan strutz
[Blog and Family @ http://www.dopefly.com/]
[AZCFUG Manager @ http://www.azcfug.org/]
[Twitter @nathanstrutz]


On Thu, Jul 2, 2009 at 11:32 AM,  wrote:

>
> Thanks a lot Andy. I knew there were different frameworks out there but
> wasn't sure how that fit in with AJAX. I assume they are all AJAX but
> much like .NET they all have different built in functions etc?
>
>
> -Original Message-
> From: Andy Matthews [mailto:li...@commadelimited.com]
> Sent: Thursday, July 02, 2009 2:26 PM
> To: cf-talk
> Subject: RE: AJAX
>
>
> I'd avoid a book on "AJAX" and instead pick a book focusing on a
> specific
> JavaScript framework such as jQuery, or ExtJS. If you just want AJAX
> then it
> might be worth it to write your own code, but if you're wanting "rich
> internet apps" then you'll be needing DOM manipulation and effects
> anyway.
>
> My choice has, for the last 3 years, been jQuery. It's lightweight and
> super
> easy to use. jQuery is to JavaScript like ColdFusion is to server side
> languages. It makes it fast, easy, and good.
>
> The Learning jQuery 1.3 book comes highly recommended. I'd also suggest
> you
> jump on the official jQuery mailing list over at Google Groups:
> http://groups.google.com/group/jquery-en
>
>
> andy
>
> -Original Message-
> From: webmas...@pegweb.com [mailto:webmas...@pegweb.com]
> Sent: Thursday, July 02, 2009 12:56 PM
> To: cf-talk
> Subject: AJAX
>
>
> Can anyone recommend a good book for AJAX? I want to start working on
> more
> web 2.0 style apps and with the new CF server it seems to make it
> easier. I
> just need to understand more about it and how it all works. I can
> JavaScript
> and I can CF so I wouldn't think it would be too hard to pickup. Any
> recommendations for reading material on the subject? Thanks in advance.
>
>
>
>
>
>
>
>
>
>
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324165
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: AJAX

2009-07-02 Thread webmaster

Thanks a lot Andy. I knew there were different frameworks out there but
wasn't sure how that fit in with AJAX. I assume they are all AJAX but
much like .NET they all have different built in functions etc?


-Original Message-
From: Andy Matthews [mailto:li...@commadelimited.com] 
Sent: Thursday, July 02, 2009 2:26 PM
To: cf-talk
Subject: RE: AJAX


I'd avoid a book on "AJAX" and instead pick a book focusing on a
specific
JavaScript framework such as jQuery, or ExtJS. If you just want AJAX
then it
might be worth it to write your own code, but if you're wanting "rich
internet apps" then you'll be needing DOM manipulation and effects
anyway.

My choice has, for the last 3 years, been jQuery. It's lightweight and
super
easy to use. jQuery is to JavaScript like ColdFusion is to server side
languages. It makes it fast, easy, and good.

The Learning jQuery 1.3 book comes highly recommended. I'd also suggest
you
jump on the official jQuery mailing list over at Google Groups:
http://groups.google.com/group/jquery-en


andy

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, July 02, 2009 12:56 PM
To: cf-talk
Subject: AJAX


Can anyone recommend a good book for AJAX? I want to start working on
more
web 2.0 style apps and with the new CF server it seems to make it
easier. I
just need to understand more about it and how it all works. I can
JavaScript
and I can CF so I wouldn't think it would be too hard to pickup. Any
recommendations for reading material on the subject? Thanks in advance.

 

 

 







~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324164
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: AJAX

2009-07-02 Thread Andy Matthews

I'd avoid a book on "AJAX" and instead pick a book focusing on a specific
JavaScript framework such as jQuery, or ExtJS. If you just want AJAX then it
might be worth it to write your own code, but if you're wanting "rich
internet apps" then you'll be needing DOM manipulation and effects anyway.

My choice has, for the last 3 years, been jQuery. It's lightweight and super
easy to use. jQuery is to JavaScript like ColdFusion is to server side
languages. It makes it fast, easy, and good.

The Learning jQuery 1.3 book comes highly recommended. I'd also suggest you
jump on the official jQuery mailing list over at Google Groups:
http://groups.google.com/group/jquery-en


andy

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, July 02, 2009 12:56 PM
To: cf-talk
Subject: AJAX


Can anyone recommend a good book for AJAX? I want to start working on more
web 2.0 style apps and with the new CF server it seems to make it easier. I
just need to understand more about it and how it all works. I can JavaScript
and I can CF so I wouldn't think it would be too hard to pickup. Any
recommendations for reading material on the subject? Thanks in advance.

 

 

 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324163
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using iText with CFML for PDF forms

2009-07-02 Thread Arsalan Tariq Keen

Yes guys,
I have am aware of the cfdocument and the new cfpdfform tags... although I 
havent used them for this purpose yet  I m pretty sure they do any 
awesome job bcoz without a shadow of a doubt I feel Adobe CF is the best CF 
implementation :)

Having said that my problem is that I am using Railo 3.1 and I am trying 
to figure out a way I can implement the PDF-Form population functionality 
using Railo 3.1
:)
so any good news for me???


Regards,
Arsalan

--
From: "Leigh" 
Sent: Thursday, July 02, 2009 10:57 PM
To: "cf-talk" 
Subject: Re: Using iText with CFML for PDF forms

>
> Paul Hastings wrote:
>>> Is there a reason you cannot use these tags to populate your form?
>
>>cf7?
>
> Yes, that is what I am thinking.
>
>
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324162
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


AJAX

2009-07-02 Thread webmaster

Can anyone recommend a good book for AJAX? I want to start working on
more web 2.0 style apps and with the new CF server it seems to make it
easier. I just need to understand more about it and how it all works. I
can JavaScript and I can CF so I wouldn't think it would be too hard to
pickup. Any recommendations for reading material on the subject? Thanks
in advance.

 

 

 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: EBay API issues

2009-07-02 Thread Ben Densmore

that struct is building up the parameters to send to the SOAP Request. So,
if the API requires the following parameters:





Then in your struct you have:

  myRequest = structNew();
  myRequest.version = "623";
 myRequest.CategoryID = 20;
 myRequest.ItemName = "Some Item Name";


Now when you use the cfinvoke tag and pass the argument to it as a struct,
the Soap Request takes those parameters one by one as if you were creating
the elements individually.

I ran into serious issues because a lot of these parameters are complex
types that map to a custom Object. Even when I would try to set the
parameters to be of the Object type it expected the whole thing went south.

I was going to try and go the route of creating my soap requests in xml
format using cfsavecontent then just use cfhttp to pass the soap requests in
but I ran out of time.

If you have any other questions I can try and help you out with what I know,
which isn't a whole lot.

Thanks,
Ben
On Thu, Jul 2, 2009 at 1:02 PM, Phillip Vector wrote:

>
> So I downloaded some sample code for sending a SOAP command to the
> servers and I get back a response (the time).. So it works in that
> sense. But all it gives me in the time..
>
> Code is as follows...
> =
> 
>
> 
> // set the header using addSOAPRequestHeader.. an added function to CF MX
> 7.0
> addSOAPRequestHeader(ebayWS, "urn:ebay:apis:eBLBaseComponents",
> "RequesterCredentials", "#ebayXMLObj#", false);
> 
>
> 
> // set the end point using javas _setProperty
> ebayWS._setProperty("javax.xml.rpc.service.endpoint.address","
> https://api.sandbox.ebay.com/wsapi?callname=#methodToCall#&siteid=#SiteID#&appid=#AppID#&version=#version#&Routing=#routing#
> ");
>
> // build geteBayOfficialTimeRequest..
> timeRequest = StructNew();
> timeRequest.version = variables.version;
> 
>
> 
>  returnvariable="time">
> value="#timeRequest#">
> 
>
> 
> 
>
> Official eBay Date(dd.mm.)/Time(HH:mm:ss):
> #lsDateFormat(eBayDateTime,"dd.mm.")#
> #lsTimeFormat(eBayDateTime,"HH:mm:ss")#
>
> =
>
> So I'm looking at this and I need to code it to add an item.. I got
> how to set the methodtocall so that I can add items and such.. But
> what I'm confused by is..
>
> // build geteBayOfficialTimeRequest..
> timeRequest = StructNew();
> timeRequest.version = variables.version;
>
> Is this really nesserary? Is that setting up the variable that gets
> returned or some such?
>
> Mainly, can someone show me a "soap light" version of what is
> nesserary and what isn't when calling ebay?
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using iText with CFML for PDF forms

2009-07-02 Thread Leigh

Paul Hastings wrote:
>> Is there a reason you cannot use these tags to populate your form?

>cf7?

Yes, that is what I am thinking.  


  


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324159
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


EBay API issues

2009-07-02 Thread Phillip Vector

So I downloaded some sample code for sending a SOAP command to the
servers and I get back a response (the time).. So it works in that
sense. But all it gives me in the time..

Code is as follows...
=



// set the header using addSOAPRequestHeader.. an added function to CF MX 7.0
addSOAPRequestHeader(ebayWS, "urn:ebay:apis:eBLBaseComponents",
"RequesterCredentials", "#ebayXMLObj#", false);



// set the end point using javas _setProperty
ebayWS._setProperty("javax.xml.rpc.service.endpoint.address","https://api.sandbox.ebay.com/wsapi?callname=#methodToCall#&siteid=#SiteID#&appid=#AppID#&version=#version#&Routing=#routing#";);

// build geteBayOfficialTimeRequest..
timeRequest = StructNew();
timeRequest.version = variables.version;










Official eBay Date(dd.mm.)/Time(HH:mm:ss):
#lsDateFormat(eBayDateTime,"dd.mm.")#
#lsTimeFormat(eBayDateTime,"HH:mm:ss")#

=

So I'm looking at this and I need to code it to add an item.. I got
how to set the methodtocall so that I can add items and such.. But
what I'm confused by is..

// build geteBayOfficialTimeRequest..
timeRequest = StructNew();
timeRequest.version = variables.version;

Is this really nesserary? Is that setting up the variable that gets
returned or some such?

Mainly, can someone show me a "soap light" version of what is
nesserary and what isn't when calling ebay?

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324158
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using iText with CFML for PDF forms

2009-07-02 Thread Paul Hastings

cfsearch...@yahoo.com wrote:
> Is there a reason you cannot use these tags to populate your form?� While 
> you

cf7?

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324157
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Regex wrapping div tags round img tags

2009-07-02 Thread Robert Harrison

> Holiday weekend must be in full effect already.

Yeah, my brain is just outside the door waiting for the rest of me to join
it.

Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be &.

Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged

 

__ Information from ESET Smart Security, version of virus signature
database 4209 (20090702) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324156
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Using iText with CFML for PDF forms

2009-07-02 Thread Robert Harrison

The code below works for me on an application where I populate a PDF form
with data from entered fields (or wherever you get the data from).  This
might help you a bit.




   
















Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be &.

Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged

 

__ Information from ESET Smart Security, version of virus signature
database 4209 (20090702) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Regex wrapping div tags round img tags

2009-07-02 Thread Nathan Strutz

A regex question on this list that doesn't already have 5 answers? Wow.
Holiday weekend must be in full effect already.

Ok, you want something like this...

reReplace(string, "(]+>)", "\1", "ALL")

That is...

( -- capture a sub-group
] -- anything not a tag closer, >
+ -- for at least one character
> -- followed by the tag closer
) -- end the subgroup

and the replacement:

\1 -- \1 is a backreference to the first (and only)
sub-group we captured


nathan strutz
[Blog and Family @ http://www.dopefly.com/]
[AZCFUG Manager @ http://www.azcfug.org/]
[Twitter @nathanstrutz]


On Thu, Jul 2, 2009 at 2:56 AM, Matthew Allen  wrote:

>
> Hi,
>
> I'll really appreciate if anyone could help. I have image tags outputted to
> my page from a database, what can I write to to wrap  tags round the
>  tags so e.g;
>
> 
>
> I would like to change it to;
> 
>
> Many thanks,
>
> Matt
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using iText with CFML for PDF forms

2009-07-02 Thread cfsearching

>Cfdocument won't populate pdf form fields I don't think.
>For that, you need to use cfpdfform, cfpdfsubform and cfpdfformparam. 

Correct.

Is there a reason you cannot use these tags to populate your form?  While you 
certainly could use iText (it is built in), using cfpdfform would be much 
simpler.  Unless you need some extra functionality that cfpdfform does not 
provide or you are using an earlier version of CF?




  

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324153
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using iText with CFML for PDF forms

2009-07-02 Thread Leigh

Just testing to see if my response makes it through.  Please ignore.




  


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Using iText with CFML for PDF forms

2009-07-02 Thread Billy Cox

You might use iText if you wanted to use the most recent version. Also,
CFDocument obscures the complexity of iText and thus limits functionality
that some users might want.


-Original Message-
From: Paul Alkema [mailto:paulalkemadesi...@gmail.com] 
Sent: Thursday, July 02, 2009 11:05 AM
To: cf-talk
Subject: RE: Using iText with CFML for PDF forms



I would just use ColdFusion to produce the PDF.

Example

This is a document rendered by the
   cfdocument tag.
 

ColdFusion may be using the iText library, but why install the java library
on a CF server that already has it.

Plus I'm sure using cfdocument is easier to use anyway, and ColdFusion has
adapted for the use of ColdFusion inside of it already. :)


-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Thursday, July 02, 2009 11:53 AM
To: cf-talk
Subject: Re: Using iText with CFML for PDF forms


iText is the Java library that powers the cfdocument tag.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/7/2 Robert Harrison :
>
> I don't know what iText is, but we've definitely populated PDF forms 
> from Cold Fusion.
>
> What are you trying to do, exactly.





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324151
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Using iText with CFML for PDF forms

2009-07-02 Thread Will Swain

Cfdocument won't populate pdf form fields I don't think.

For that, you need to use cfpdfform, cfpdfsubform and cfpdfformparam. These
are very cool tags, which I only recently started using.

Will 

-Original Message-
From: Paul Alkema [mailto:paulalkemadesi...@gmail.com] 
Sent: 02 July 2009 17:05
To: cf-talk
Subject: RE: Using iText with CFML for PDF forms


I would just use ColdFusion to produce the PDF.

Example

This is a document rendered by the
   cfdocument tag.
 

ColdFusion may be using the iText library, but why install the java library
on a CF server that already has it.

Plus I'm sure using cfdocument is easier to use anyway, and ColdFusion has
adapted for the use of ColdFusion inside of it already. :)


-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com]
Sent: Thursday, July 02, 2009 11:53 AM
To: cf-talk
Subject: Re: Using iText with CFML for PDF forms


iText is the Java library that powers the cfdocument tag.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/7/2 Robert Harrison :
>
> I don't know what iText is, but we've definitely populated PDF forms from
> Cold Fusion.
>
> What are you trying to do, exactly.





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Using iText with CFML for PDF forms

2009-07-02 Thread Paul Alkema

I would just use ColdFusion to produce the PDF.

Example

This is a document rendered by the
   cfdocument tag.
 

ColdFusion may be using the iText library, but why install the java library
on a CF server that already has it.

Plus I'm sure using cfdocument is easier to use anyway, and ColdFusion has
adapted for the use of ColdFusion inside of it already. :)


-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Thursday, July 02, 2009 11:53 AM
To: cf-talk
Subject: Re: Using iText with CFML for PDF forms


iText is the Java library that powers the cfdocument tag.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/7/2 Robert Harrison :
>
> I don't know what iText is, but we've definitely populated PDF forms from
> Cold Fusion.
>
> What are you trying to do, exactly.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using iText with CFML for PDF forms

2009-07-02 Thread James Holmes

iText is the Java library that powers the cfdocument tag.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/7/2 Robert Harrison :
>
> I don't know what iText is, but we've definitely populated PDF forms from
> Cold Fusion.
>
> What are you trying to do, exactly.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Using iText with CFML for PDF forms

2009-07-02 Thread Robert Harrison

I don't know what iText is, but we've definitely populated PDF forms from
Cold Fusion. 

What are you trying to do, exactly.


Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be &.

Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged


 

__ Information from ESET Smart Security, version of virus signature
database 4209 (20090702) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Using iText with CFML for PDF forms

2009-07-02 Thread Arsalan Tariq Keen

Hi Guys,

Does anyone has any experience of populating PDF forms using iText. And can we 
use iText with ColdFusion as well?


Regards,
Arsalan

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Sport Software

2009-07-02 Thread Hitesh Patel

Hi Barry,
 
I do not know any such CF webiste. In case they want to built website then I 
can do it with reasonable charges/hr. I have been working in CF since 8 yrs 
& currently in Sydney, Australia.

Thanks.Kind regards,

Hitesh Patel 
+61 402 940 798 (Mobile)






From: Barry Mcconaghey 
To: cf-talk 
Sent: Wednesday, July 1, 2009 4:00:48 AM
Subject: Coldfusion Sport Software


Hello.

I was asked to help build a coldfusion website for a non-profit sport
organization to help speed up the process of online applications, schedules,
etc.

Does anybody know of a good website free or paid that has CF software for a
sport organizer.

Thanks,

Barry 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324145
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Regex wrapping div tags round img tags

2009-07-02 Thread Matthew Allen

Hi,

I'll really appreciate if anyone could help. I have image tags outputted to my 
page from a database, what can I write to to wrap  tags round the  
tags so e.g;



I would like to change it to;


Many thanks,

Matt 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4