<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Open a document &amp;quot;on server&amp;quot; using Python: ask password problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1819104#M1232181</link>
    <description>&lt;P&gt;If the password-popup is related to a section access it should be possible but not for the authentication, see:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Administration/url-with-user-and-password/td-p/551793" target="_blank"&gt;Solved: url with user and password - Qlik Community - 551793&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/QVP-Syntax-for-passing-an-authentication/td-p/223700" target="_blank"&gt;Solved: QVP Syntax for passing an authentication - Qlik Community - 223700&lt;/A&gt;&lt;/P&gt;&lt;P&gt;An alternatively may be to access the applications directly with the desktop client with a file-share or probably much easier to do the automating already on the server-machine.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jul 2021 13:25:45 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2021-07-01T13:25:45Z</dc:date>
    <item>
      <title>Open a document "on server" using Python: ask password problem</title>
      <link>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1818762#M1232179</link>
      <description>&lt;P&gt;I have to open a QlikView document with Python to do some automation, as long as I open it locally everything is ok ... but I would like to open it remotely so I use the call to open it remotely:&lt;/P&gt;&lt;P&gt;doc = q.OpenDoc ("qvp: // [user] @ [host] / [document]")&lt;/P&gt;&lt;P&gt;It open correctly but then puts me the screen for entering the password ... and therefore the automation cannot go on.&lt;BR /&gt;Is it possible to insert the password already in the opening link string of the document in some way so that will not asked?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1818762#M1232179</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Open a document "on server" using Python: ask password problem</title>
      <link>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1819104#M1232181</link>
      <description>&lt;P&gt;If the password-popup is related to a section access it should be possible but not for the authentication, see:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Administration/url-with-user-and-password/td-p/551793" target="_blank"&gt;Solved: url with user and password - Qlik Community - 551793&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/QVP-Syntax-for-passing-an-authentication/td-p/223700" target="_blank"&gt;Solved: QVP Syntax for passing an authentication - Qlik Community - 223700&lt;/A&gt;&lt;/P&gt;&lt;P&gt;An alternatively may be to access the applications directly with the desktop client with a file-share or probably much easier to do the automating already on the server-machine.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 13:25:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1819104#M1232181</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-07-01T13:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Open a document "on server" using Python: ask password problem</title>
      <link>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1819318#M1232183</link>
      <description>&lt;P&gt;Thanks, but it is not a section access but a domain one, as regards the automation on the server I have already done it and there are no problems, now instead I want to start it from the client ..... in each case I found a solution, and it is this:&lt;/P&gt;&lt;P&gt;from the Python program I launch the opening of Qlik, when I open the dialog where to type the password I launch the pywinauto library in order to automatically insert the pwd and click on the confirm button, I put the code here if it can be of help someone:&lt;/P&gt;&lt;P&gt;app = Application().connect(title='QlikView x64')&lt;BR /&gt;app = Application(backend="uia").connect(process=[PROCESSID])&lt;BR /&gt;app.window(best_match='PasswordDialog').print_control_identifiers()&lt;BR /&gt;top_level_main_window = app.window(title="QlikView x64")&lt;BR /&gt;top_level_main_window.wrapper_object()&lt;BR /&gt;nPDialog = top_level_main_window.child_window(title="Password", control_type="Window")&lt;BR /&gt;nPDialog.wrapper_object()&lt;BR /&gt;msg = nPDialog.child_window(class_name="Edit")&lt;BR /&gt;print(msg.legacy_properties()['Name'])&lt;BR /&gt;print(msg.is_editable())&lt;BR /&gt;msg.set_edit_text("*******")&lt;BR /&gt;msgB = nPDialog.child_window(class_name="Button",title="Conferma")&lt;BR /&gt;print(msgB.legacy_properties()['Name'])&lt;BR /&gt;msgB.click()&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 09:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Open-a-document-quot-on-server-quot-using-Python-ask-password/m-p/1819318#M1232183</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2021-07-02T09:43:11Z</dc:date>
    </item>
  </channel>
</rss>

