CF9 - cfgrid posting empty form data

2011-02-23 Thread Dominic Howard

Hi

I'm having a mare with an HTML cfgrid which will not post any data whatever I 
do to it. I've used Flash grids before and not had any problems but this HTML 
grid I just cannot work out at all.

It is bound to a CFC and populates itself just fine. However, once a row is 
selected and Submit is pressed, the FORM object on the destination page is 
completely blank.

Any thoughts on this I'd really appreciate.

The code for the grid is

cfform action=myForm.cfm 
method=post
name=myForm
format=html
cfgrid width=900
height=400
format=html
name=myGrid
pagesize=10
selectmode=row
bind=cfc:path_to_cfc+arguments)
cfgridcolumn name=id header=id /
cfgridcolumn name=description header=Description width=200 select=Yes 
/
cfgridcolumn name=organisation_name header=Organisation width=200 
select=Yes /
cfgridcolumn name=type_name header=Type width=200 select=Yes /
cfgridcolumn name=last_updated header=Last updated width=200 
select=Yes /
cfinput value=View type=submit name=gridEntered
/cfgrid
/cfform

On the page myForm.cfm I get the following blank variables in the FORM object

MYGRID
__CFGRID__MYFORM__MYGRID

Thanks

DomH



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342538
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Problem connecting to MS Exchange 2007 on SBS 2008

2010-12-06 Thread Dominic Howard

I am having problems connecting to Exchange via cfexchangeconnection. Our 
ColdFusion environment is CF9 Enterprise on Win 2008, and the Exchange host is 
Win SBS 2008 (which uses IIS7).

After having worked through the documentation and following all procedures 
outlined at

http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec14f31-7fed.html

plus googling intensively, we have the following method to test the connection


cfexchangeconnection action=open 
 connection=thisExchangeConnection
 server=portal.mydomain.com
 protocol=https
 formBasedAuthentication=true
 
formBasedAuthenticationURL=https://portal.mydomain.com/owa/auth/owaauth.dll;
 mailboxname=myMailBox
 username=myUsername
 password=myPassword /

cfdump var=#thisExchangeConnection#

cfexchangeconnection action=close
 connection=thisExchangeConnection /

The IIS7 implementation in SBS 2008 is quite a lot different to Win 2008, so 
there are some question marks around some steps in the above documentation. 
However, we have made sure that:-

1) you can use the credentials above to login via a web browser
2) WebDav is on in IIS
3) there is no IWA and forms based authentication is on
4) certificates are installed correctly on both the CF and Exchange servers
5) the myUsernameaccount has correct permissions in iis/owa/exchange

Despite this, the net result is always

Access to the Exchange server denied.  
Ensure that the user name and password are correct.

From research it seems that a lot of people have issues where the underlying 
problem is actually an Exchange 440 timeout error where the password in the 
IUSR_servername and IWAM_servername (IIS/Active Directory) is out of sync.

I was pinning my hopes on the above being the problem but now I find that in 
SBS 2008 there is no IWAM_servername server account.

All this leads me to ask is SBS 2008 actually compatible with the cfexchange 
tags in CF9? There is nothing in the documentation that I can find that syays 
that it isn't, but given the amount of time we've spent on what should be 
straightforward I am wondering if we are on a hiding to nothing. Anyone from 
Adobe care to comment?

If anyone has managed to get this to work specifically with SBS 2008, or has 
any advice I'd be grateful to here from you.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339803
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm