Search found 31 matches
- Sat Jan 01, 2022 12:46 pm
- Forum: CXP / Web Development
- Topic: CXP and SQLExpress
- Replies: 3
- Views: 14118
Re: CXP and SQLExpress
I thought that CXP was included only in the Professional version. Fortunately, it's included with the Foundation version. Some of the Professional features are available in the foundation CXP too such as DacSession(). I've never thoroughly investigated which ones work but it appears some of the web...
- Fri Dec 17, 2021 8:22 am
- Forum: CXP / Web Development
- Topic: CXP and SQLExpress
- Replies: 3
- Views: 14118
Re: CXP and SQLExpress
For anyone who may be interested in this, I went ahead and purchased SQLExpress and so far everything I've tried has worked with CXP. I have only tried basic SQL statements such as DROP, CREATE, UPDATE, and INSERT but so far so good using it with the Foundation version of Xbase++.
- Tue Dec 14, 2021 5:14 pm
- Forum: CXP / Web Development
- Topic: CXP and SQLExpress
- Replies: 3
- Views: 14118
CXP and SQLExpress
Does anyone know for sure whether SQLExpress will work with CXP? I have the demo and have played with the samples connecting to a PostgreSQL server through Xbase++ but since the demo dll pops up a message saying it's a demo I think that is the reason CXP hangs. I asked Boris and surprisingly he said...
- Wed Nov 24, 2021 5:53 am
- Forum: CXP / Web Development
- Topic: HttpRequest:Content and binary data
- Replies: 3
- Views: 11369
Re: HttpRequest:Content and binary data
Thanks Tom,
I understand the need for converting binary data to base64 for transporting but I'm a little confused how to convert it in the client browser before sending to the server. I was under the impression (obviously wrong) that modern browsers automatically encoded data during a POST.
I understand the need for converting binary data to base64 for transporting but I'm a little confused how to convert it in the client browser before sending to the server. I was under the impression (obviously wrong) that modern browsers automatically encoded data during a POST.
- Tue Nov 23, 2021 6:47 pm
- Forum: CXP / Web Development
- Topic: HttpRequest:Content and binary data
- Replies: 3
- Views: 11369
Re: HttpRequest:Content and binary data
After some searching I realized there is a sample for saving files in the cxp web samples which I was able to use and can get it save files based on the settings in global.config.
My question now is, How do I properly save the file from the oHttpUploadedFile:Data if I want to?
My question now is, How do I properly save the file from the oHttpUploadedFile:Data if I want to?
- Tue Nov 23, 2021 1:10 pm
- Forum: CXP / Web Development
- Topic: HttpRequest:Content and binary data
- Replies: 3
- Views: 11369
HttpRequest:Content and binary data
Part of my application allows the upload of images to the server using a multi-part form and I'm using Chilkat's Mime functions to save the images but I've run into a problem. I've been working with Matt Fausey of Chilkat trying to figure it out and he said it looks like HttpRequest:Content is conve...
- Mon Nov 08, 2021 9:51 am
- Forum: CXP / Web Development
- Topic: Making a CXP compatible DCLIPX.DLL
- Replies: 2
- Views: 10140
Re: Making a CXP compatible DCLIPX.DLL
No, I have an older Foundation version (build 840). For what little I do I haven't been able to justify the subscription cost and to get back in now I'd have to repurchase like a new user. Until Alaska comes out with features I can't do without I'll stay where I am. I managed to copy all the files a...
- Wed Nov 03, 2021 4:34 pm
- Forum: CXP / Web Development
- Topic: Making a CXP compatible DCLIPX.DLL
- Replies: 2
- Views: 10140
Making a CXP compatible DCLIPX.DLL
Hi Roger, After reading your article on CXP I realized if I want to use any DCLIPX.DLL functions it needs to be customized to excluded any functions that are in xppwui.dll to make it unloadable. What's involved in doing this? I've never tried doing anything other than just building the dll using you...
- Thu Oct 28, 2021 5:40 am
- Forum: CXP / Web Development
- Topic: CXP compile error on html page
- Replies: 5
- Views: 13424
Re: CXP compile error on html page
Hi Roger, Do you have a URL that I can click on to run it on your server? No, currently I'm running it on a local development machine. Do all the CSS files need to be renamed too? If you are referring to the sample I uploaded, then no. If you just change auth-lock,cxp to something like authlock.cxp ...
- Wed Oct 27, 2021 6:48 am
- Forum: CXP / Web Development
- Topic: CXP compile error on html page
- Replies: 5
- Views: 13424
Re: CXP compile error on html page
After a little more testing it appears that any file name with a dash "-" was causing the error. All the files I was having issues with happened to include a dash. After changing the names, everything is working as expected and I can now move on to the next steps.