Jump to content
Software FX Community

Diego

Members
  • Posts

    14
  • Joined

  • Last visited

Diego's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks! Yes, was just coming to post that we solved it that way. Thanks a lot for answering. Diego
  2. Hello, so we've migrated from an old server to a windows 2012.... There is an old asp file that generates a graph... it has <%=Chart1.GetHtmlTag(Session("GraphWidth"), Session("GraphHeight"), , "Chart1") %> In the new server, that generates the following code which shows a static graf, with a button that doesn't do anything. <img src="/cfxtemp/CFT0803_1019443B9.jpg" width="600" height="420"> While in the old server, it the same code generates <OBJECT CLASSID="CLSID:21F49842-BFA9-11d2-A89C-00104B62BDDA" TYPE="application/x-oleobject" WIDTH="600" HEIGHT="420" ID="Chart1" CODEBASE=/installer/cfxdownload/CfxIEAx.cab#Version=5,5,10,3> <PARAM NAME="LICENSE" VALUE="/installer/cfxlicense/CfxIE.lic"> <PARAM NAME="DATAPATH" VALUE="/cfxtemp/CFT0804_0922572B.chw"> </OBJECT> No error...just different output... any ideas whats wrong or missing?
  3. Ok. The problem was the ChartFX PSS services startied running...stopping and disabling it fixed the use and started working again.
  4. After a few days its stopped working again. What is the process that creates this .js files in the temp folder? suddenly it stoped creating the files and we see nothing changed on the IIS configuration. Any ideas? Thanks Diego
  5. I think its working now... we changed /ChartFX/ from virtual directory to application and it seems its working ok... will monitor for a couple of days to see if its that.
  6. Sorry didn't answer before. Uninstalling the product and reinstalling gives prompts the path to install. Thansk Diego
  7. Hello! We are just migrating from old servers (2003) to 2012 servers.. and the graphs arent working proberly because the temp .js files generated dont create the "cookie" section... Chart chart = new Chart(); chart.RenderFormat = ".NET"; MemoryStream content = new MemoryStream(); StringWriter imgMap = new StringWriter(CultureInfo.InvariantCulture); StringWriter htmlTag = new StringWriter(CultureInfo.InvariantCulture); chart.RenderToStream(content, imgMap, htmlTag); Sample temp js in old server: function cfx_replace() { document.write('<object codetype="application/octet-stream" id="" classid="/chartfx70/download/ChartFX.NetIEClient.dll#ChartFX.NetIEClient.Chart" standby="Downloading Chart FX control please wait ..." WIDTH="375px" HEIGHT="250px" >'); document.write('<param name="Cookies" value="QQBTAFAALgBOAEUAVABfAFMAZQBzAHMAaQBvAG4ASQBkAD0AcABmAHUAcwBzAHEAYQBxAG0AcgBhAHAANQBsAGIAawBpAGMAYgBpAGwAZQA1ADUAOwA="/>'); document.write('<param name="DataPath" value=""/>'); document.write('[Chart FX: .NET Active client requires Internet Explorer and .NET Framework 2.0 or greater installed on the client computer.]'); document.write('</object>'); } Sample in new server: function cfx_replace() { document.write('<object codetype="application/octet-stream" id="" classid="/chartfx70/download/ChartFX.NetIEClient.dll#ChartFX.NetIEClient.Chart" standby="Downloading Chart FX control please wait ..." WIDTH="375px" HEIGHT="250px" >'); document.write('<param name="DataPath" value=""/>'); document.write('[Chart FX: .NET Active client requires Internet Explorer and .NET Framework 2.0 or greater installed on the client computer.]'); document.write('</object>'); }
  8. Hello, Is it possible to run the installer with parameters to install on a different folder? Like D:\ChartFX instead of the default c : drive? Thanks!
  9. Thanks for following up. I removed the ISAPI/CGI and I get an "404.2 - Not Found" error The MIME Type for .dll is set to application/x-msdownload Not sure what else to set for it to be downloadable and not tried to be executed.
  10. Thanks! Yes, checked it and the whole Download (and individual dlls inside it) have permissions for Everyone at the filesystems level.
  11. I added the dll directly in the isapi/cgi exceptions, and now I get a 500 error ModuleName: IsapiModule Notification: EXECUTE_REQUEST_HANDLER HttpStatus: 500 HttpReason: Internal Server Error HttpSubStatus: 0 ErrorCode: The specified procedure could not be found. (0x8007007f)
  12. Thanks for the reply. Yes, the log shows its trying to access it but gives 404.2 with "The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server." The file and path exist, but I guess its missing permissions or something to respond that file.... not sure what
  13. Any clue? Already have the ChartFX70 webapplication inside the site, with the folders inside it and the PSS application inside of it too. Cant find whats missing...
  14. Hello, migrating the installation from an old (2003) server to a newer 2012 server, on a site testing its failing, and looking at the trace of what is loading in the site (F12 in IE) it shows a 404 not found error on ChartFX.NetIEClient.Loader.dll. I tried putting all permissions to the file (to everyone) but still nothing changed. I tried with a test html page on the same folder and it works ok. Is there a step I'm missing? Thank you Regards Diego
×
×
  • Create New...