Customizing the Web Access Page

You can create an iframe reference to the Web component and define the Web configuration to use when a Web page is accessed.

Use this method when:
  • You do not want to show the available configurations as a tab in the default client access page
  • You want to include the SOLIDWORKS PDM Web client ActiveX component in your own HTML page

The URL for a Web server configuration is in the form:

http://<SERVERURL>/Client.asp?config=CONFIGURATION

The iframe reference replaces the <SERVERURL> and <CONFIGURATION> with the actual terms.

<iframe src="http://<SERVERURL>/client.asp?config=<CONFIGURATION>&simple">

For example, the following HTML code shows the SOLIDWORKS PDM Web component for the Engineers configuration in a page:

<html>
<title>SOLIDWORKS PDM Web Access</title>
<body>
<iframe
src="http://wolverine/SOLIDWORKSPDMWeb/client.asp?config=Engineers&simple">
</body>
</html>