Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sharepoint and DWF files

Status
Not open for further replies.

geoffsweb

Programmer
Mar 4, 2002
19
US
What's the best way to go about displaying a DWF file within Sharepoint? The client wants to use the Document Library to store files and wants to view them within Sharepoint. They don't want to click on the file and have a dialog box popping up asking what to do with the file, ie Save, Download, Cancel. They want the file to directly display on the page. Any help would be appreciated.

Thanks in advance.
 
hey,

the problem is not with MOSS but with the client system. does your client system have the correct software to view such files (you dont seem to have an "Open" button coming?).

please confirm if the end user systems have the software to view the DWF files. based on this we may have to see at different options...

Known is handfull, Unknown is worldfull
 
Oh, this hasn't been implemented yet. I was just meaning in general about the dialog box, and I guess I should have added Open to my list. I think that's what I'm getting at. Can Sharepoint get you away from having the client install a free viewer or something? or is there no way around having the end user have a viewer on their machine?
 
exactly.

you should get some program to convert the DWF to a web friendly format. thats the closest you can get to it...

Known is handfull, Unknown is worldfull
 
What about embedding the object into your html code, like flash does?

Something along these lines:

<OBJECT CLASSID="clsid:A662DA7E-CCB7-4743-B71A-D817F6D575DF"
CODEBASE=DwfViewerSetup.cab#version=7,0,0,928
WIDTH="640" HEIGHT="480">
<PARAM NAME="Src"
VALUE=" Folder/Latest.dwf">
</OBJECT>
 
nope, that also will not work :D

Flash works because all browsers come with Flash components installed. otherwise that too would not have worked...

Known is handfull, Unknown is worldfull
 
Even if the client downloads and installs the DWF Viewer? The file still can't be embedded in the page? It will just open in another window using that viewer?
 
I would not be surprised if there were a Java based viewer that you could do this with. I'd give that a search as well.
 
>>Even if the client downloads and installs the DWF Viewer

if they have then you should use an IFRAME. that will do it. that way you can avoid the popup...

Known is handfull, Unknown is worldfull
 
that guy is talking about embedding the viewer in your HTML (clsid:A662DA7E-CCB7-4743-B71A-D817F6D575DF refers to the class id of the viewer). then giving the DWF file name as a path (VALUE="
this is something similar to Flash embeds.

not all viewers support this kind of behavior. looks like your DWF viewer does :)

Known is handfull, Unknown is worldfull
 
I thought the point here was that the end users did not have the viewer?


>>> Can Sharepoint get you away from having the client install a free viewer or something?
 
No, the user could have the viewer.... the issue for me is that the client wants the dynamic dwf image embedded within the Sharepoint page and not on a separate page
 
>>No, the user could have the viewer
those users who dont will get download, open etc

those users who have the viewer will be able to see it within sharepoint.

dont embed in this case as for non viewer users download itself will not come. they will simply get an X mark in their browsers...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top