Hi
I have a web application ( Tomcat as my web server ) there is a jsp file in my project and it has this script code in it
I also have a DynamicForm that its DataSource is my DataSource when the form is saved no action occurs.
I have seen in SmartClient visual builder a DataSource with name of "uploadedFiles" excatly the ID of DataSource, how can I integrate my
web application to communicate with SmartClient server to send binary date to this server DataSource and recieve form it binary data.
Regards
Amirhosein
I have a web application ( Tomcat as my web server ) there is a jsp file in my project and it has this script code in it
Code:
isc.DataSource.create
({
serverType:"sql",
fields:[
{primaryKey:true, hidden:true, type:"sequence", name:"id"},
{hidden:true, type:"number", foreignKey:"uploadTest.id", name:"uploadTestId"},
{title:"File", type:"binary", name:"file"},
{
title:"Name",
type:"text",
hidden:true,
length:255,
name:"file_filename",
canEdit:false
},
{title:"Size", type:"number", hidden:true, name:"file_filesize", canEdit:false},
{title:"Date Created", type:"date", hidden:true, name:"file_date_created", canEdit:false}
],
ID:"uploadedFiles"
})
I have seen in SmartClient visual builder a DataSource with name of "uploadedFiles" excatly the ID of DataSource, how can I integrate my
web application to communicate with SmartClient server to send binary date to this server DataSource and recieve form it binary data.
Regards
Amirhosein
Comment