Office 문서 온라인 편집 실현 방법

Office xp 이후 버 전 은 웹 dav 프로 토 콜(http 확장)을 통 해 서버 의 파일 을 직접 편집 할 수 있 습 니 다.IIS(6.0)는 웹 dav 를 지원 합 니 다.이것 은 IIS 관리자 의 웹 서비스 확장 에서 볼 수 있 습 니 다.IIS 를 웹 dav 서버 엔 드 로 이용 하여 office(word,엑셀 등)의 온라인 편집 을 쉽게 실현 할 수 있 습 니 다.간단 한 실험 을 통 해 IIS 의 웹 dav 확장 설치 와 사용 을 확보 하고 가상 디 렉 터 리 test 를 만 들 고 워드 문서 a.doc 를 넣 은 다음 워드 를 열 수 있 습 니 다.파일->열기->워드 문서 의 접근 url 입력(http://localhost/test/a.doc)문서 내용 을 수정 하고 저장 하 세 요.무슨 일이 있 었 나 요?문 서 는 서버 에 저 장 됩 니 다.IE 에 서 는 js 를 통 해 워드 애플 리 케 이 션 을 만 들 수 있 습 니 다.서버 에 있 는 문 서 를 열 고 수정 할 수 있 습 니 다
 
wApp = new ActiveXObject("Word.Application.11");
wApp.Visible = true ;
wApp.Documents.Open( url );
if( trackRevisions ){ //
wApp.ActiveDocument.TrackRevisions = true ;
wApp.ActiveDocument.ShowRevisions = false ;
}else
{
wApp.ActiveDocument.TrackRevisions = false ;
wApp.ActiveDocument.ShowRevisions = false ;
}
wApp.ActiveDocument.Application.UserName= Global_CurrentUserName;
또한 오 피 스 를 설치 할 때 ActiveX 구성 요소 인 Sharepoint.OpenDocuments 를 동시에 누 르 면 이 구성 요소 로 워드 를 활성화 하고 서버 에 있 는 문 서 를 편집 할 수 있 습 니까?varOpenDocuments = null ;
 
function Document_Edit2( url )
{
if( __OpenDocuments == null )
{
try{
__OpenDocuments = new ActiveXObject("SharePoint.OpenDocuments.3"); //for office 2007
}catch(e){}
if( __OpenDocuments == null || typeof(__OpenDocuments) == "#ff0000" )
{
try{
__OpenDocuments = new ActiveXObject("SharePoint.OpenDocuments.2"); //for office 2003
}catch(e){}
}
if( __OpenDocuments == null || typeof(__OpenDocuments) == "undefined" )
{
alert( " Word(2003 )" );
return ;
}
}
// openDocObj.ViewDocument("http://www.abc.com/documents/sample.doc");, "Word.Document"
//openDocObj.CreateNewDocument("http://www.abc.com/documents/sampleTemplate.dot", "http://www.abc.com/documents/");
var result = __OpenDocuments.EditDocument( url , "Word.Document" );
if( result == false )
{
alert( " ." );
}
}
IIS 의 웹 dav 지원 을 바탕 으로 오 피 스 문서 의 온라인 편집 을 간단하게 실현 할 수 있 습 니 다.그러나 한 가지 문제 가 있 습 니 다.이렇게 하면 문 서 는 파일 시스템 에 저장 되 고 우리 의 많은 시스템 에서 문 서 는 데이터 베이스 에 저장 되 어 있 습 니 다.그러면 어떻게 실현 합 니까?I tried a lot and found the solution. It will be in the next article .

좋은 웹페이지 즐겨찾기