Print at Feb 6, 2026, 6:21:32 AM View all posts in this thread on one page
Posted by bluesky5566 at Aug 2, 2010, 9:51:48 AM
who has SweetHome3D online source?
I think sweetHome3d run in my tomcat,and put in my web project,but,i don't know online save and read,please help me !

Posted by Puybaret at Aug 3, 2010, 1:03:42 PM
Re: who has SweetHome3D online source?
Save and read operation depends on how you want to organize user information your server. A default implementation is proposed in source code in PHP.
For more information please read also these subjects:
http://www.sweethome3d.com/support/forum/viewthread_thread,1454
http://www.sweethome3d.com/support/forum/viewthread_thread,1435
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator

Posted by bluesky5566 at Sep 6, 2010, 9:03:36 PM
Re: who has SweetHome3D online source?
thanks a lot,but I can't develop JSP likes PHP,please help me.this is my code.

<%@ page import="org.apache.commons.fileupload.*" pageEncoding="UTF-8"%>
<%@ page import="org.apache.commons.fileupload.servlet.*" %>
<%@ page import="com.scand.fileupload.*" %>
<%@ page import="java.io.*" %>
<%@ page import="java.util.*,java.sql.*" %>
<%

String uploadFolder = request.getRealPath("/"+"\\upload");

// Check that we have a file upload request
boolean isMultipart = FileUpload.isMultipartContent(request);

if (!isMultipart) {

out.println ("Use multipart form to upload a file!");

} else {

String fileId = request.getSession().getId().toString();


//创建数据工厂
FileItemFactory factory = new ProgressMonitorFileItemFactory(request, fileId);
ServletFileUpload upload = new ServletFileUpload(factory);

//从请求对象中获得要上传对象
List /* FileItem */ items = upload.parseRequest(request);
String sql = "insert into house_photos (house_id,photo_name) values(?,?)";

//迭代所有上传的FileItem
Iterator iter = items.iterator();
while (iter.hasNext()) {
FileItem item = (FileItem) iter.next();

if (item.isFormField()) {
//如果是表单对象再此处处理
} else {
//处理上传文件
String fileName = item.getName();
int i2 = fileName.lastIndexOf("\\");
if(i2>-1) fileName = fileName.substring(i2+1);
File dirs = new File(uploadFolder);
if(!dirs.exists()){
dirs.mkdir();

}

//dirs.mkdirs();
long l = System.currentTimeMillis();
// String houzhui = fileName.substring(fileName.lastIndexOf("."));

fileName = fileName+l+".sh3d";
if(true){
File uploadedFile = new File(dirs,fileName);
item.write(uploadedFile);
session.setAttribute("FileUpload.Progress."+fileId,"-1");
out.write(1);
System.out.print("1");
out.clear();

}else{
session.setAttribute("FileUpload.Progress."+fileId,"-2");
}

}
}

}
%>

,but it also prompt "can't save home in 'myhome'"!!1

Posted by Puybaret at Sep 8, 2010, 9:14:23 AM
Re: who has SweetHome3D online source?
out.clear();

should be before:

out.write(1);

shouldn't it?

Please insert your code between [ code] [ /code] tags.
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator

Posted by nicoloconte at Sep 30, 2010, 7:00:29 PM
Re: who has SweetHome3D online source?
Save and read operation depends on how you want to organize user information your server. A default implementation is proposed in source code in PHP.
For more information please read also these subjects:
http://www.sweethome3d.com/support/forum/viewthread_thread,1454
http://www.sweethome3d.com/support/forum/viewthread_thread,1435


Hi all, I'm trying to embed SH3D in my Drupal site but I have several problems with the saving and reading functionality. I downloaded listHomes.php and both readHOme.php and writeHome.php but I can't make them work. When I click on the "open" icon the input window show me the source of the listHomes.php file.

Where am I doing wrong?

Thank you very much.

Posted by Puybaret at Sep 30, 2010, 7:12:22 PM
Re: who has SweetHome3D online source?
If I were you, I would learn basics about server scripts and PHP before even trying to deploy these PHP files...
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator

Posted by nicoloconte at Sep 30, 2010, 7:33:08 PM
Re: who has SweetHome3D online source?
I know PHP and Java well, but I need some documentation. Can you help me?

Posted by Puybaret at Sep 30, 2010, 8:33:23 PM
Re: who has SweetHome3D online source?
More and more people ask for help about deploying an online version without even presenting themselves and/or explaining what they want it for.
So yes, I can help but if this deployment is for commercial purpose, don't expect it will be for free.
I guess you'll understand that voluntary work can have some limits...
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator

Posted by PixelStudios at Jun 13, 2011, 10:36:36 AM
Re: who has SweetHome3D online source?
Hi Puybaret

I need to deploy an online version for commercial purpose. Please help us how to further?

Regards
Rajesh
Pixel Studios

Posted by Puybaret at Jun 13, 2011, 12:28:24 PM
Re: who has SweetHome3D online source?
What do you miss in the previous links?
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator