Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sebastiandperei
Specialist
Specialist

EDX Enable?

When I try in IE:

http://localhost:4720/qtxs.asmx?WSDL

Received this message:

"The method or operation is not implemented"

My version should have this service implemented?

Thanks:

Information of server:

Qlikview Management Service

Product Information


Product NameQlikView Management Service


Client Build Number9.0.7644.9


Target Platform

Machine Information


Computer NameUSWSAPT10038


Operating System VersionWin32_OperatingSystem=@ X64 (Microsoft Windows NT 6.0.6002 Service Pack 2)


.NET Version2.0.50727.4216


Physical Memory32510Mb


Available Memory27163Mb

CPU Information


CPU 0Dual-Core AMD Opteron(tm) Processor 8220


CPU 1Dual-Core AMD Opteron(tm) Processor 8220


CPU 2Dual-Core AMD Opteron(tm) Processor 8220


CPU 3Dual-Core AMD Opteron(tm) Processor 8220

CommandCenter

Product Information


Product NameQlikView Publisher Command Center x64


Client Build Number9.0.7644.9


Target Platformx64


Serial Number4603460583919302

Machine Information


Computer NameUSWSAPT10038


Operating System VersionWin32_OperatingSystem=@ X64 (Microsoft Windows NT 6.0.6002 Service Pack 2)


.NET Version2.0.50727.4216


Physical Memory32510Mb


Available Memory27163Mb

CPU Information


CPU 0Dual-Core AMD Opteron(tm) Processor 8220


CPU 1Dual-Core AMD Opteron(tm) Processor 8220


CPU 2Dual-Core AMD Opteron(tm) Processor 8220


CPU 3Dual-Core AMD Opteron(tm) Processor 8220

QDS@uswsapt10038 at http://uswsapt10038:4720/qtxs.asmx

Product Information


Product NameQlikview Distribution Service x64


Client Build Number9.0.7644.9


Target Platformx64

Machine Information


Computer NameUSWSAPT10038


Operating System VersionWin32_OperatingSystem=@ X64 (Microsoft Windows NT 6.0.6002 Service Pack 2)


.NET Version2.0.50727.4216


Physical Memory32510Mb


Available Memory27163Mb

CPU Information


CPU 0Dual-Core AMD Opteron(tm) Processor 8220


CPU 1Dual-Core AMD Opteron(tm) Processor 8220


CPU 2Dual-Core AMD Opteron(tm) Processor 8220


CPU 3Dual-Core AMD Opteron(tm) Processor 8220

DSC@uswsapt10038 at http://uswsapt10038:4730/qtds.asmx

Product Information


Product NameQlikView Directory Service Connector


Client Build Number9.0.7644.9


Target Platformx64

Machine Information


Computer NameUSWSAPT10038


Operating System VersionWin32_OperatingSystem=@ X64 (Microsoft Windows NT 6.0.6002 Service Pack 2)


.NET Version2.0.50727.4216


Physical Memory32510Mb


Available Memory27163Mb

CPU Information


CPU 0Dual-Core AMD Opteron(tm) Processor 8220


CPU 1Dual-Core AMD Opteron(tm) Processor 8220


CPU 2Dual-Core AMD Opteron(tm) Processor 8220


CPU 3Dual-Core AMD Opteron(tm) Processor 8220

QVWS@uswsapt10038 at http://uswsapt10038:4750/qvws.asmx

Product Information


Product NameAccessPoint


Client Build Number9.0.7644.9


Target Platform

Machine Information


Computer NameUSWSAPT10038


Operating System VersionWin32_OperatingSystem=@ X64 (Microsoft Windows NT 6.0.6002 Service Pack 2)


.NET Version2.0.50727.4216


Physical Memory32510Mb


Available Memory27163Mb

CPU Information


CPU 0Dual-Core AMD Opteron(tm) Processor 8220


CPU 1Dual-Core AMD Opteron(tm) Processor 8220


CPU 2Dual-Core AMD Opteron(tm) Processor 8220


CPU 3Dual-Core AMD Opteron(tm) Processor 8220


1 Solution

Accepted Solutions
Bill_Britt
Former Employee
Former Employee

What it is telling you is that the WSDL is not implemented. It uses wget and wget requires that NTLM Credentialsare included in the script, because the QDS Web Service requires authentication.

@ECHO OFF
REM --- Start a Publisher EDX Task ---
SETLOCAL

SET EDXTASK=%1
SET EDXPSWD=%2
IF .%EDXTASK%. == .. GOTO Help

REM Credentials requiredfor WebService Authentication
SET HTTPuser=%COMPUTERNAME%\qlikview
SET HTTPpswd=admin1234

REM URL for the QlikViewDistribution Service (QDS)
REM formerly known as the Execution Service (XS)
SET QDS=http://localhost:4720/qtxs.asmx

REM This is the XMLRequest that is submitted to QDS/XS
REM See http://www.tomshardware.co.uk/forum/page-35565_35_0.html
REM for discussion of the ^ character used to force <> to echo properly
SET DOCUMENT=%TEMP%\%EDXTASK%.post
ECHO ^<Global method="RequestEDX"^>      > "%DOCUMENT%"
ECHO ^<i_TaskIDOrTaskName^>%EDXTASK%^</i_TaskIDOrTaskName^>   >> "%DOCUMENT%"
ECHO ^<i_Password^>%EDXPSWD%^</i_Password^>     >> "%DOCUMENT%"
ECHO ^</Global^>     >>"%DOCUMENT%"

REM HTTP Responsewritten to here
SET RESPONSE=%TEMP%\%EDXTASK%.xml
IF EXIST "%RESPONSE%" DEL "%RESPONSE%"

REM wget is acommand-line browser available from
REM http://gnuwin32.sourceforge.net/packages/wget.htm
WGET --debug --user=%HTTPuser% --password=%HTTPpswd%--post-file="%DOCUMENT%" -O "%RESPONSE%" %QDS% 2>NULSET RC=%ERRORLEVEL%
DEL "%DOCUMENT%"
TYPE "%RESPONSE%"
GOTO End

:Help
ECHO Usage: %0 taskName taskPassword
SET RC=100
GOTO END

:End
EXIT  /B  %RC%
ENDLOCAL

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.

View solution in original post

6 Replies
sebastiandperei
Specialist
Specialist
Author

Nobody knows about it?

Bill_Britt
Former Employee
Former Employee

What are you asking about. EDX is enable by default. You have to write the code to trigger it.

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
sebastiandperei
Specialist
Specialist
Author

My question is:

Why when I try in IE: http://localhost:4720/qtxs.asmx?WSDL

i received this message:

"The method or operation is not implemented"  ???

If its working, i would receive the WSDL table...

Bill_Britt
Former Employee
Former Employee

What it is telling you is that the WSDL is not implemented. It uses wget and wget requires that NTLM Credentialsare included in the script, because the QDS Web Service requires authentication.

@ECHO OFF
REM --- Start a Publisher EDX Task ---
SETLOCAL

SET EDXTASK=%1
SET EDXPSWD=%2
IF .%EDXTASK%. == .. GOTO Help

REM Credentials requiredfor WebService Authentication
SET HTTPuser=%COMPUTERNAME%\qlikview
SET HTTPpswd=admin1234

REM URL for the QlikViewDistribution Service (QDS)
REM formerly known as the Execution Service (XS)
SET QDS=http://localhost:4720/qtxs.asmx

REM This is the XMLRequest that is submitted to QDS/XS
REM See http://www.tomshardware.co.uk/forum/page-35565_35_0.html
REM for discussion of the ^ character used to force <> to echo properly
SET DOCUMENT=%TEMP%\%EDXTASK%.post
ECHO ^<Global method="RequestEDX"^>      > "%DOCUMENT%"
ECHO ^<i_TaskIDOrTaskName^>%EDXTASK%^</i_TaskIDOrTaskName^>   >> "%DOCUMENT%"
ECHO ^<i_Password^>%EDXPSWD%^</i_Password^>     >> "%DOCUMENT%"
ECHO ^</Global^>     >>"%DOCUMENT%"

REM HTTP Responsewritten to here
SET RESPONSE=%TEMP%\%EDXTASK%.xml
IF EXIST "%RESPONSE%" DEL "%RESPONSE%"

REM wget is acommand-line browser available from
REM http://gnuwin32.sourceforge.net/packages/wget.htm
WGET --debug --user=%HTTPuser% --password=%HTTPpswd%--post-file="%DOCUMENT%" -O "%RESPONSE%" %QDS% 2>NULSET RC=%ERRORLEVEL%
DEL "%DOCUMENT%"
TYPE "%RESPONSE%"
GOTO End

:Help
ECHO Usage: %0 taskName taskPassword
SET RC=100
GOTO END

:End
EXIT  /B  %RC%
ENDLOCAL

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
Bill_Britt
Former Employee
Former Employee

One more thing. If you don't have publisher you have to use the qvw name. If you have publisher you can use the task name.

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
sebastiandperei
Specialist
Specialist
Author

Thanks!!!

In wich format are Pass and Task? Simple Text?