Do you mind printing relativePath so we can understand what you are
getting...

Then, you most likely will have to debug self.getAbsolutePath(relativePath)
 call...

On Wed, Jan 4, 2017 at 9:55 AM, Debopam Ghoshal <debop...@gmail.com> wrote:

> Hi Seb,
>
> We made the changes in the protocols.py file (highlighted)
>
> @exportRpc("pv.proxy.manager.create.reader")
>     def open(self, relativePath):
>         """
>         Open relative file paths, attempting to use the file extension to
> select
>         from the configured readers.
>         """
>         fileToLoad = []
>         if type(relativePath) == list:
>             for file in relativePath:
>                 validPath = self.getAbsolutePath(file)
>                 if validPath:
>                     fileToLoad.append(validPath)
>         else:
>             validPath = self.getAbsolutePath(relativePath)
>             if validPath:
>                 fileToLoad.append(validPath)
>         if len(fileToLoad) == 0:
> print "=" * 80
> print "file not found"
> print "fileToLoad: ", fileToLoad
> print "=" * 80
> return {
> 'success': False,
> 'reason': 'No valid path name' }
>
>
>
> The output in the console is a follows:
>
> C:\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit>.\bin\pvpython.exe
> "C:\\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit\\share\\
> paraview-5.2\\web\\visualizer\\server\\pvw-visualizer.py" --content
> "C:\\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit\\share\\
> paraview-5.2\\web\\visualizer\\www" --data 
> "C:\\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit\\data"
> --port 8080
> 2017-01-04 11:06:38+0530 [-] Log opened.
> 2017-01-04 11:06:39+0530 [-] Site starting on 8080
> 2017-01-04 11:06:39+0530 [-] Starting factory <twisted.web.server.Site
> instance at 0x0000022A9C7BAF48>
> 2017-01-04 11:06:43+0530 [HTTPChannel,0,127.0.0.1] "127.0.0.1" - - [
> 04/Jan/2017:05:36:43 +0000] "GET / HTTP/1.1" 304 - "-" "Mozilla/5.0
> (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)
> Chrome/55.0.2883.87 Safari/537.36"
> 2017-01-04 11:06:43+0530 [HTTPChannel,0,127.0.0.1] "127.0.0.1" - - [
> 04/Jan/2017:05:36:43 +0000] "POST /paraview/ HTTP/1.1" 404 145 "
> http://localhost:8080/"; "Mozilla/5.0 (Windows NT 10.0; Win64; x64)
> AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36"
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Client has reconnected,
> cancelling reaper
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] on_connect: connection
> count = 1
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Property
> BeginValueCapture has no GetData() method, skipping
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Property
> CaptureValuesFloat has no GetData() method, skipping
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Property CaptureZBuffer
> has no GetData() method, skipping
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Property
> EndValueCapture has no GetData() method, skipping
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Property
> StartCaptureLuminance has no GetData() method, skipping
> 2017-01-04 11:06:44+0530 [HTTPChannel,2,127.0.0.1] Property
> StopCaptureLuminance has no GetData() method, skipping
> *2017-01-04 11:06:47+0530 [HTTPChannel,2,127.0.0.1]
> ================================================================================*
> *2017-01-04 11:06:47+0530 [HTTPChannel,2,127.0.0.1] file not found*
> *2017-01-04 11:06:47+0530 [HTTPChannel,2,127.0.0.1] fileToLoad:  []*
> *2017-01-04 11:06:47+0530 [HTTPChannel,2,127.0.0.1]
> ================================================================================*
> 2017-01-04 11:06:56+0530 [-] Received SIGINT, shutting down.
>
>
>
> Cheers & Best Wishes,
> Debopam
> -------------------------------
> Cell: +91 98304 10041 <+91%2098304%2010041>
>
> On Tue, Jan 3, 2017 at 9:05 PM, Sebastien Jourdain <
> sebastien.jourd...@kitware.com> wrote:
>
>> Ok that mean there is still a path issue when loading a file within
>> ParaViewWeb on Windows.
>>
>> Did you look at the log of that given session to see if any error is
>> printed?
>>
>> You can try to edit the file [lib/site-packages]/paraview/web/protocols.py
>> within the ParaView application (The [...] part is for the path section
>> that I'm not sure of).
>>
>> In the function
>>
>>     @exportRpc("pv.proxy.manager.create.reader")
>>     def open(self, relativePath):
>>         """
>>         Open relative file paths, attempting to use the file extension to
>> select
>>         from the configured readers.
>>         """
>>         fileToLoad = []
>>         if type(relativePath) == list:
>>             for file in relativePath:
>>                 validPath = self.getAbsolutePath(file)
>>                 if validPath:
>>                     fileToLoad.append(validPath)
>>         else:
>>             validPath = self.getAbsolutePath(relativePath)
>>             if validPath:
>>                 fileToLoad.append(validPath)
>>
>>         if len(fileToLoad) == 0:
>>             return { 'success': False, 'reason': 'No valid path name' }
>>
>>         print "=" * 80        # <------ ADD THAT LINE TO SEE THE PATH YOU
>> TRY TO LOAD
>>         print fileToLoad   # <------ ADD THAT LINE TO SEE THE PATH YOU
>> TRY TO LOAD
>>         print "=" * 80       # <------ ADD THAT LINE TO SEE THE PATH YOU
>> TRY TO LOAD
>>
>>         [...]
>>
>> Then look at the log to see which path is used to load that file.
>>
>> Seb
>>
>> On Tue, Jan 3, 2017 at 6:36 AM, Debopam Ghoshal <debop...@gmail.com>
>> wrote:
>>
>>> Hi Seb,
>>>
>>> 1. We are able to see the orientation axis and also able to rotate them.
>>> For example, when we click on can.ex2, we see a blank black screen. Then
>>> after we hide the left panel, we are able to see the orientation axis and
>>> also rotate them.
>>>
>>> 2. When we select the Wavelet we were able to view it properly, and was
>>> also able to rotate the scene.
>>>
>>> 3. We tried with both / and \\ but there is no change. The command we
>>> are using to launch paraview is as below:
>>>
>>> a: .\bin\pvpython.exe "C:\\ParaView-5.2.0-Qt4-OpenGL
>>> 2-MPI-Windows-64bit\\share\\paraview-5.2\\web\\visualizer\\server\\pvw-visualizer.py"
>>> --content "C:\\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit\\share\\pa
>>> raview-5.2\\web\\visualizer\\www" --data 
>>> "C:\\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit\\data"
>>> --port 8080
>>>
>>> b: .\bin\pvpython.exe "C:/ParaView-5.2.0-Qt4-OpenGL2
>>> -MPI-Windows-64bit/share/paraview-5.2/web/visualizer/server/pvw-visualizer.py"
>>> --content 
>>> "C:/ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit/share/paraview-5.2/web/visualizer/www"
>>> --data "C:/ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit/data" --port
>>> 8080
>>>
>>>
>>> Cheers & Best Wishes,
>>> Debopam
>>> -------------------------------
>>> Cell: +91 98304 10041 <+91%2098304%2010041>
>>>
>>> On Mon, Jan 2, 2017 at 9:36 PM, Sebastien Jourdain <
>>> sebastien.jourd...@kitware.com> wrote:
>>>
>>>> Hi Debopam,
>>>>
>>>> Do you see the orientation axis? Does it move when you rotate the scene?
>>>> What happen when you click on "+" and choose the Wavelet? Do you see
>>>> something?
>>>>
>>>> I'm wondering if you still run into an invalid path issue due to / or \.
>>>>
>>>> Seb
>>>>
>>>> On Mon, Jan 2, 2017 at 6:38 AM, Debopam Ghoshal <debop...@gmail.com>
>>>> wrote:
>>>>
>>>>> Hi Seb,
>>>>>
>>>>> 1. "C:/ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit/data" works fine.
>>>>> Now we can see the list of files in the data folder.
>>>>>
>>>>> However, there seems to be some problem with the ParaviewWeb
>>>>> Application (or may be with the graphics driver?). Because we cannot 
>>>>> render
>>>>> the sample mesh files (eg: can.ex2) in the visualizer. When we tried to
>>>>> view the files in the desktop application they are displayed without any
>>>>> problems. A screenshot of the graphics driver is attached for your
>>>>> reference.
>>>>>
>>>>> 2. Ok.
>>>>>
>>>>>
>>>>> Cheers & Best Wishes,
>>>>> Debopam
>>>>> -------------------------------
>>>>>
>>>>> On Fri, Dec 30, 2016 at 9:02 PM, Sebastien Jourdain <
>>>>> sebastien.jourd...@kitware.com> wrote:
>>>>>
>>>>>> Hi Debopam,
>>>>>>
>>>>>> 1) I'm not sure to know what is the issue with the path but try with
>>>>>> either:
>>>>>>
>>>>>> "C:/ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit/data"
>>>>>> or
>>>>>> "C:\\ParaView-5.2.0-Qt4-OpenGL2-MPI-Windows-64bit\\data"
>>>>>>
>>>>>> 2) paraview_console_error.jpg is not an error since you are not using
>>>>>> the launcher. So that part is actually expected.
>>>>>> For the second error when you try to delete the TimeAnnotation, I'm
>>>>>> not sure to know what is the issue. You should know more by looking at 
>>>>>> the
>>>>>> output of the command line.
>>>>>>
>>>>>> Seb
>>>>>>
>>>>>>
>>>>>> On Fri, Dec 30, 2016 at 12:53 AM, Debopam Ghoshal <debop...@gmail.com
>>>>>> > wrote:
>>>>>>
>>>>>>> (Reposting for a larger audience)
>>>>>>>
>>>>>>> Hi Ken,
>>>>>>>
>>>>>>> When we start paraview web we noted two things:
>>>>>>>
>>>>>>> 1. In the Visualizer, the Files tab is not showing any files. Please
>>>>>>> refer to the attached screenshot (paraview_home.jpg)
>>>>>>> 2. There is an error showing up at the browser console
>>>>>>> (paraview_console_error.jpg, paraview_console_error2.jpg)
>>>>>>>
>>>>>>> The paraview startup messages are also given for your reference
>>>>>>> (paraview_log.jpg)
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Cheers & Best Wishes,
>>>>>>> Debopam
>>>>>>> -------------------------------
>>>>>>> Cell: +91 98304 10041 <+91%2098304%2010041>
>>>>>>>
>>>>>>> On Wed, Dec 28, 2016 at 10:35 AM, Debopam Ghoshal <
>>>>>>> debop...@gmail.com> wrote:
>>>>>>>
>>>>>>>> Hi Ken,
>>>>>>>>
>>>>>>>> We finally got a machine where Paraview 5.2 MPI is running without
>>>>>>>> any issues. However, when we start paraview web we noted two things:
>>>>>>>>
>>>>>>>> 1. In the Visualizer, the Files tab is not showing any files.
>>>>>>>> Please refer to the attached screenshot (paraview_home.jpg)
>>>>>>>> 2. There is an error showing up at the browser console
>>>>>>>> (paraview_console_error.jpg, paraview_console_error2.jpg)
>>>>>>>>
>>>>>>>> The paraview startup messages are also given for your reference
>>>>>>>> (paraview_log.jpg)
>>>>>>>>
>>>>>>>>
>>>>>>>> Cheers & Best Wishes,
>>>>>>>> Debopam
>>>>>>>> -------------------------------
>>>>>>>> Cell: +91 98304 10041 <+91%2098304%2010041>
>>>>>>>>
>>>>>>>> On Tue, Dec 13, 2016 at 7:03 PM, Ken Martin <ken.mar...@kitware.com
>>>>>>>> > wrote:
>>>>>>>>
>>>>>>>>> ParaView with the old OpenGL backend should work on any windows
>>>>>>>>> machine. It may be slow and some of the advanced techniques may not 
>>>>>>>>> work
>>>>>>>>> but the basics will all work.
>>>>>>>>>
>>>>>>>>> On Tue, Dec 13, 2016 at 5:57 AM, Debopam Ghoshal <
>>>>>>>>> debop...@gmail.com> wrote:
>>>>>>>>>
>>>>>>>>>> Yes Ken, you are right. This is an older machine. So, will it be
>>>>>>>>>> possible to use ParaView (with the old OpenGL backend) on this 
>>>>>>>>>> machine? Or
>>>>>>>>>> we need to get a machine with better configuration to run ParaView?
>>>>>>>>>>
>>>>>>>>>> Additionally, will it be possible to run ParaView (and
>>>>>>>>>> ParaViewWeb) on a Windows 10 guest running in VirtualBox on a MacOS 
>>>>>>>>>> host?
>>>>>>>>>>
>>>>>>>>>> Cheers & Best Wishes,
>>>>>>>>>> Debopam
>>>>>>>>>> -------------------------------
>>>>>>>>>> Cell: +91 98304 10041
>>>>>>>>>>
>>>>>>>>>> On Mon, Dec 12, 2016 at 8:22 PM, Ken Martin <
>>>>>>>>>> ken.mar...@kitware.com> wrote:
>>>>>>>>>>
>>>>>>>>>>> So if I am reading this correctly the machine has a rv516 GPU
>>>>>>>>>>> which was released in 2007. That GPU does not support anything 
>>>>>>>>>>> beyond
>>>>>>>>>>> OpenGL 2.0 which means you would need to use the old OpenGL backend 
>>>>>>>>>>> with
>>>>>>>>>>> VTK/ParaView.
>>>>>>>>>>>
>>>>>>>>>>> http://www.gpureview.com/ati-rv516-chip-135.html
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> On Mon, Dec 12, 2016 at 9:21 AM, Debopam Ghoshal <
>>>>>>>>>>> debop...@gmail.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Hi Ken,
>>>>>>>>>>>>
>>>>>>>>>>>> This is a standard desktop PC running Window 10 Professional
>>>>>>>>>>>> Edition. If there is something I need to install on this machine, 
>>>>>>>>>>>> please
>>>>>>>>>>>> let me know.
>>>>>>>>>>>>
>>>>>>>>>>>> Cheers & Best Wishes,
>>>>>>>>>>>> Debopam
>>>>>>>>>>>> -------------------------------
>>>>>>>>>>>> Cell: +91 98304 10041
>>>>>>>>>>>>
>>>>>>>>>>>> On Mon, Dec 12, 2016 at 7:18 PM, Ken Martin <
>>>>>>>>>>>> ken.mar...@kitware.com> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Is this a server maybe? It seems like the system lacks any
>>>>>>>>>>>>> OpenGL support beyond the default Microsoft implementation which 
>>>>>>>>>>>>> is circa
>>>>>>>>>>>>> OpenGL 1.4 I believe.
>>>>>>>>>>>>>
>>>>>>>>>>>>> On Sun, Dec 11, 2016 at 11:51 PM, Debopam Ghoshal <
>>>>>>>>>>>>> debop...@gmail.com> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> Hi Ken,
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> When I ran the command: vtkRenderingOpenGL2CxxTests.exe
>>>>>>>>>>>>>> TestAppleBug there was an error. A screenshot of the error is 
>>>>>>>>>>>>>> attached for
>>>>>>>>>>>>>> your reference. Please let me know if you require any other 
>>>>>>>>>>>>>> details.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Cheers & Best Wishes,
>>>>>>>>>>>>>> Debopam
>>>>>>>>>>>>>> -------------------------------
>>>>>>>>>>>>>> Cell: +91 98304 10041
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On Fri, Dec 9, 2016 at 7:17 PM, Ken Martin <
>>>>>>>>>>>>>> ken.mar...@kitware.com> wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Here is a new version of the executable, can you try it?
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On Fri, Dec 9, 2016 at 1:42 AM, Debopam Ghoshal <
>>>>>>>>>>>>>>> debop...@gmail.com> wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Hi Cory and Ken,
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Thanks a lot for your prompt response.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Below are the details you asked:
>>>>>>>>>>>>>>>> 1. display-props.png - screenshot of:  Settings -> System
>>>>>>>>>>>>>>>> -> Display -> Advanced display settings -> Display adapter
>>>>>>>>>>>>>>>> properties
>>>>>>>>>>>>>>>> 2. vtkrendering.png - screenshot of the error which came up
>>>>>>>>>>>>>>>> when I ran: vtkRenderingOpenGL2CxxTests.exe TestAppleBug
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Cheers & Best Wishes,
>>>>>>>>>>>>>>>> Debopam
>>>>>>>>>>>>>>>> -------------------------------
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On Thu, Dec 8, 2016 at 10:49 PM, Ken Martin <
>>>>>>>>>>>>>>>> ken.mar...@kitware.com> wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Can you try running the following executable (rename .foo
>>>>>>>>>>>>>>>>> to .exe) from a cmd shell as
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> vtkRenderingOpenGL2CxxTests.exe TestAppleBug
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> and see if it crashes, and send the output is produces
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Thanks
>>>>>>>>>>>>>>>>> Ken
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On Thu, Dec 8, 2016 at 10:46 AM, Cory Quammen <
>>>>>>>>>>>>>>>>> cory.quam...@kitware.com> wrote:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Hi Depobam,
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Thanks for trying out the other ParaView versions. I
>>>>>>>>>>>>>>>>>> suspect there
>>>>>>>>>>>>>>>>>> might be a problem with the new OpenGL backend on your
>>>>>>>>>>>>>>>>>> system as that
>>>>>>>>>>>>>>>>>> has changed between ParaView 4 and 5. What kind of
>>>>>>>>>>>>>>>>>> graphics card do
>>>>>>>>>>>>>>>>>> you have on your system. You can get some of the display
>>>>>>>>>>>>>>>>>> properties by
>>>>>>>>>>>>>>>>>> going to
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Settings -> System -> Display -> Advanced display
>>>>>>>>>>>>>>>>>> settings -> Display
>>>>>>>>>>>>>>>>>> adapter properties
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Ken,
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Are there any things Depobam can do on his Windows 10
>>>>>>>>>>>>>>>>>> system to help
>>>>>>>>>>>>>>>>>> diagnose whether the OpenGL2 backend is causing the crash
>>>>>>>>>>>>>>>>>> he is seeing
>>>>>>>>>>>>>>>>>> in ParaView?
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Thanks,
>>>>>>>>>>>>>>>>>> Cory
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On Thu, Dec 8, 2016 at 2:51 AM, Debopam Ghoshal <
>>>>>>>>>>>>>>>>>> debop...@gmail.com> wrote:
>>>>>>>>>>>>>>>>>> > Hi Cory,
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>> > I tried to run Paraview 5.1.2, but it gives the same
>>>>>>>>>>>>>>>>>> error. However, I was
>>>>>>>>>>>>>>>>>> > able to run Paraview 4.1 successfully on Window 10.
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>> > But ParaviewWeb failed to run as it seems that version
>>>>>>>>>>>>>>>>>> 4.1 does not have the
>>>>>>>>>>>>>>>>>> > python script used for running ParaviewWeb.
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>> > Cheers & Best Wishes,
>>>>>>>>>>>>>>>>>> > Debopam
>>>>>>>>>>>>>>>>>> > -------------------------------
>>>>>>>>>>>>>>>>>> > Cell: +91 98304 10041
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>> > On Wed, Dec 7, 2016 at 5:14 AM, Sebastien Jourdain
>>>>>>>>>>>>>>>>>> > <sebastien.jourd...@kitware.com> wrote:
>>>>>>>>>>>>>>>>>> >>
>>>>>>>>>>>>>>>>>> >> Cory you need to provide an absolute path as argument
>>>>>>>>>>>>>>>>>> "c:\.....".
>>>>>>>>>>>>>>>>>> >>
>>>>>>>>>>>>>>>>>> >> But the issue seems to be on ParaView itself. The (Qt)
>>>>>>>>>>>>>>>>>> executable crash at
>>>>>>>>>>>>>>>>>> >> startup on there machine, regardless of their goal to
>>>>>>>>>>>>>>>>>> use ParaViewWeb down
>>>>>>>>>>>>>>>>>> >> the road.
>>>>>>>>>>>>>>>>>> >>
>>>>>>>>>>>>>>>>>> >> Seb
>>>>>>>>>>>>>>>>>> >>
>>>>>>>>>>>>>>>>>> >> On Tue, Dec 6, 2016 at 10:06 AM, Cory Quammen <
>>>>>>>>>>>>>>>>>> cory.quam...@kitware.com>
>>>>>>>>>>>>>>>>>> >> wrote:
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> Correction: I could run ParaViewWeb on Windows 10,
>>>>>>>>>>>>>>>>>> but I couldn't load
>>>>>>>>>>>>>>>>>> >>> data through the web client. I didn't get
>>>>>>>>>>>>>>>>>> pvpython.exe to crash,
>>>>>>>>>>>>>>>>>> >>> though.
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> On Tue, Dec 6, 2016 at 11:35 AM, Cory Quammen <
>>>>>>>>>>>>>>>>>> cory.quam...@kitware.com>
>>>>>>>>>>>>>>>>>> >>> wrote:
>>>>>>>>>>>>>>>>>> >>> > Debopam,
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> > I just tried what you ran on Windows 10 and it ran
>>>>>>>>>>>>>>>>>> fine for me. One
>>>>>>>>>>>>>>>>>> >>> > thing I had to fix, which I doubt is the cause of
>>>>>>>>>>>>>>>>>> your crash, is the
>>>>>>>>>>>>>>>>>> >>> > data argument is actually just --data and not
>>>>>>>>>>>>>>>>>> --data-dir.
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> > We've had some other reports of 5.2 crashing on
>>>>>>>>>>>>>>>>>> start up on Windows.
>>>>>>>>>>>>>>>>>> >>> > Did 5.1 run fine for you?
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> > I wonder if you could try installing ParaView 4.4
>>>>>>>>>>>>>>>>>> from
>>>>>>>>>>>>>>>>>> >>> > http://www.paraview.org/download/ to see if it
>>>>>>>>>>>>>>>>>> runs. If it does, that
>>>>>>>>>>>>>>>>>> >>> > gives me a clue on where to look.
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> > Thanks,
>>>>>>>>>>>>>>>>>> >>> > Cory
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> > On Tue, Dec 6, 2016 at 5:23 AM, Debopam Ghoshal <
>>>>>>>>>>>>>>>>>> debop...@gmail.com>
>>>>>>>>>>>>>>>>>> >>> > wrote:
>>>>>>>>>>>>>>>>>> >>> >> Hi,
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> I followed the instructions given here, but I am
>>>>>>>>>>>>>>>>>> getting the following
>>>>>>>>>>>>>>>>>> >>> >> error:
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Paraview Installation Directory:
>>>>>>>>>>>>>>>>>> >>> >> C:\ParaView-5.2.0-Qt4-OpenGL2-Windows-64bit
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Command:
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> .\bin\pvpython.exe \
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> "C:\ParaView-5.2.0-Qt4-OpenGL2
>>>>>>>>>>>>>>>>>> -Windows-64bit\share\paraview-
>>>>>>>>>>>>>>>>>> 5.2\web\visualizer\server\pvw-visualizer.py"
>>>>>>>>>>>>>>>>>> >>> >> \
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>   --content
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> "C:\ParaView-5.2.0-Qt4-OpenGL2
>>>>>>>>>>>>>>>>>> -Windows-64bit\share\paraview-5.2\web\visualizer\www\"
>>>>>>>>>>>>>>>>>> >>> >> \
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>   --data-dir 
>>>>>>>>>>>>>>>>>> >>> >> "C:\ParaView-5.2.0-Qt4-OpenGL2-Windows-64bit\data\"
>>>>>>>>>>>>>>>>>> \
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>   --port 8080
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Output:
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Console: 2016-12-02 10:09:51+0530 [-] Log opened.
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Error Window screenshot attached (PVW-Error.png)
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Other Details:
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> OS: Windows 10 Professional
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> RAM: 8GB
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> A screenshot of the system properties is attached
>>>>>>>>>>>>>>>>>> for your reference
>>>>>>>>>>>>>>>>>> >>> >> (Window10-SystemProps.png)
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Similar error occurred when I launched the
>>>>>>>>>>>>>>>>>> Paraview desktop
>>>>>>>>>>>>>>>>>> >>> >> application
>>>>>>>>>>>>>>>>>> >>> >> (ParaviewError.png).
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Cheers & Best Wishes,
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Debopam
>>>>>>>>>>>>>>>>>> >>> >> -------------------------------
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> _______________________________________________
>>>>>>>>>>>>>>>>>> >>> >> Powered by www.kitware.com
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Visit other Kitware open-source projects at
>>>>>>>>>>>>>>>>>> >>> >> http://www.kitware.com/opensource/opensource.html
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Please keep messages on-topic and check the
>>>>>>>>>>>>>>>>>> ParaView Wiki at:
>>>>>>>>>>>>>>>>>> >>> >> http://paraview.org/Wiki/ParaView
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Search the list archives at:
>>>>>>>>>>>>>>>>>> http://markmail.org/search/?q=ParaView
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >> Follow this link to subscribe/unsubscribe:
>>>>>>>>>>>>>>>>>> >>> >> http://public.kitware.com/mail
>>>>>>>>>>>>>>>>>> man/listinfo/paraview
>>>>>>>>>>>>>>>>>> >>> >>
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> >
>>>>>>>>>>>>>>>>>> >>> > --
>>>>>>>>>>>>>>>>>> >>> > Cory Quammen
>>>>>>>>>>>>>>>>>> >>> > Staff R&D Engineer
>>>>>>>>>>>>>>>>>> >>> > Kitware, Inc.
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> --
>>>>>>>>>>>>>>>>>> >>> Cory Quammen
>>>>>>>>>>>>>>>>>> >>> Staff R&D Engineer
>>>>>>>>>>>>>>>>>> >>> Kitware, Inc.
>>>>>>>>>>>>>>>>>> >>> _______________________________________________
>>>>>>>>>>>>>>>>>> >>> Powered by www.kitware.com
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> Visit other Kitware open-source projects at
>>>>>>>>>>>>>>>>>> >>> http://www.kitware.com/opensource/opensource.html
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> Please keep messages on-topic and check the ParaView
>>>>>>>>>>>>>>>>>> Wiki at:
>>>>>>>>>>>>>>>>>> >>> http://paraview.org/Wiki/ParaView
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> Search the list archives at:
>>>>>>>>>>>>>>>>>> http://markmail.org/search/?q=ParaView
>>>>>>>>>>>>>>>>>> >>>
>>>>>>>>>>>>>>>>>> >>> Follow this link to subscribe/unsubscribe:
>>>>>>>>>>>>>>>>>> >>> http://public.kitware.com/mailman/listinfo/paraview
>>>>>>>>>>>>>>>>>> >>
>>>>>>>>>>>>>>>>>> >>
>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>> Cory Quammen
>>>>>>>>>>>>>>>>>> Staff R&D Engineer
>>>>>>>>>>>>>>>>>> Kitware, Inc.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>> Ken Martin PhD
>>>>>>>>>>>>>>>>> Chairman & CFO
>>>>>>>>>>>>>>>>> Kitware Inc.
>>>>>>>>>>>>>>>>> 28 Corporate Drive
>>>>>>>>>>>>>>>>> Clifton Park NY 12065
>>>>>>>>>>>>>>>>> 518 371 3971
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> This communication, including all attachments, contains
>>>>>>>>>>>>>>>>> confidential and legally privileged information, and it is 
>>>>>>>>>>>>>>>>> intended only
>>>>>>>>>>>>>>>>> for the use of the addressee.  Access to this email by anyone 
>>>>>>>>>>>>>>>>> else is
>>>>>>>>>>>>>>>>> unauthorized. If you are not the intended recipient, any 
>>>>>>>>>>>>>>>>> disclosure,
>>>>>>>>>>>>>>>>> copying, distribution or any action taken in reliance on it 
>>>>>>>>>>>>>>>>> is prohibited
>>>>>>>>>>>>>>>>> and may be unlawful. If you received this communication in 
>>>>>>>>>>>>>>>>> error please
>>>>>>>>>>>>>>>>> notify us immediately and destroy the original message.  
>>>>>>>>>>>>>>>>> Thank you.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>> Ken Martin PhD
>>>>>>>>>>>>>>> Chairman & CFO
>>>>>>>>>>>>>>> Kitware Inc.
>>>>>>>>>>>>>>> 28 Corporate Drive
>>>>>>>>>>>>>>> Clifton Park NY 12065
>>>>>>>>>>>>>>> 518 371 3971
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> This communication, including all attachments, contains
>>>>>>>>>>>>>>> confidential and legally privileged information, and it is 
>>>>>>>>>>>>>>> intended only
>>>>>>>>>>>>>>> for the use of the addressee.  Access to this email by anyone 
>>>>>>>>>>>>>>> else is
>>>>>>>>>>>>>>> unauthorized. If you are not the intended recipient, any 
>>>>>>>>>>>>>>> disclosure,
>>>>>>>>>>>>>>> copying, distribution or any action taken in reliance on it is 
>>>>>>>>>>>>>>> prohibited
>>>>>>>>>>>>>>> and may be unlawful. If you received this communication in 
>>>>>>>>>>>>>>> error please
>>>>>>>>>>>>>>> notify us immediately and destroy the original message.  Thank 
>>>>>>>>>>>>>>> you.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> --
>>>>>>>>>>>>> Ken Martin PhD
>>>>>>>>>>>>> Chairman & CFO
>>>>>>>>>>>>> Kitware Inc.
>>>>>>>>>>>>> 28 Corporate Drive
>>>>>>>>>>>>> Clifton Park NY 12065
>>>>>>>>>>>>> 518 371 3971
>>>>>>>>>>>>>
>>>>>>>>>>>>> This communication, including all attachments, contains
>>>>>>>>>>>>> confidential and legally privileged information, and it is 
>>>>>>>>>>>>> intended only
>>>>>>>>>>>>> for the use of the addressee.  Access to this email by anyone 
>>>>>>>>>>>>> else is
>>>>>>>>>>>>> unauthorized. If you are not the intended recipient, any 
>>>>>>>>>>>>> disclosure,
>>>>>>>>>>>>> copying, distribution or any action taken in reliance on it is 
>>>>>>>>>>>>> prohibited
>>>>>>>>>>>>> and may be unlawful. If you received this communication in error 
>>>>>>>>>>>>> please
>>>>>>>>>>>>> notify us immediately and destroy the original message.  Thank 
>>>>>>>>>>>>> you.
>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>>> Ken Martin PhD
>>>>>>>>>>> Chairman & CFO
>>>>>>>>>>> Kitware Inc.
>>>>>>>>>>> 28 Corporate Drive
>>>>>>>>>>> Clifton Park NY 12065
>>>>>>>>>>> 518 371 3971
>>>>>>>>>>>
>>>>>>>>>>> This communication, including all attachments, contains
>>>>>>>>>>> confidential and legally privileged information, and it is intended 
>>>>>>>>>>> only
>>>>>>>>>>> for the use of the addressee.  Access to this email by anyone else 
>>>>>>>>>>> is
>>>>>>>>>>> unauthorized. If you are not the intended recipient, any disclosure,
>>>>>>>>>>> copying, distribution or any action taken in reliance on it is 
>>>>>>>>>>> prohibited
>>>>>>>>>>> and may be unlawful. If you received this communication in error 
>>>>>>>>>>> please
>>>>>>>>>>> notify us immediately and destroy the original message.  Thank you.
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Ken Martin PhD
>>>>>>>>> Chairman & CFO
>>>>>>>>> Kitware Inc.
>>>>>>>>> 28 Corporate Drive
>>>>>>>>> Clifton Park NY 12065
>>>>>>>>> 518 371 3971 <(518)%20371-3971>
>>>>>>>>>
>>>>>>>>> This communication, including all attachments, contains
>>>>>>>>> confidential and legally privileged information, and it is intended 
>>>>>>>>> only
>>>>>>>>> for the use of the addressee.  Access to this email by anyone else is
>>>>>>>>> unauthorized. If you are not the intended recipient, any disclosure,
>>>>>>>>> copying, distribution or any action taken in reliance on it is 
>>>>>>>>> prohibited
>>>>>>>>> and may be unlawful. If you received this communication in error 
>>>>>>>>> please
>>>>>>>>> notify us immediately and destroy the original message.  Thank you.
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> Powered by www.kitware.com
>>>>>>>
>>>>>>> Visit other Kitware open-source projects at
>>>>>>> http://www.kitware.com/opensource/opensource.html
>>>>>>>
>>>>>>> Please keep messages on-topic and check the ParaView Wiki at:
>>>>>>> http://paraview.org/Wiki/ParaView
>>>>>>>
>>>>>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>>>>>
>>>>>>> Follow this link to subscribe/unsubscribe:
>>>>>>> http://public.kitware.com/mailman/listinfo/paraview
>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview

Reply via email to