Tagged Questions
The wsf tag has no wiki summary.
3
votes
2answers
685 views
How can I edit the SOAP envelope and header with Perl's SOAP::Lite?
I'm trying to modify the soapenv:Header to include addressing in my soap request
my $header=SOAP::Header->name("Header")->prefix("soap")->uri("http://www.w3.org/2005/08/addressing");
When ...
3
votes
3answers
1k views
Is there a log4j equivalent for VBScript?
I need to instrument a series of .wsf and .vbs files with debug statements; before I go off and roll my own, does something like log4j exist for WSF/VBScript?
2
votes
1answer
266 views
Can I initialize objects written in JScript from VBScript?
I am trying to write a WSH logon script. Administrators throughout the company need to be able to customize the execution of the script, and execute additional scripts, for specific locations and ...
1
vote
1answer
386 views
PHP WSO2's WSF/PHP
I am trying to use WSO2' WSF for PHP and I am using a WS Security object. I am making the request to the server and getting an Authentication error. I believe the WS Security Object is missing ...
1
vote
1answer
1k views
WSF and ADO with DB2 , recordset.MoveNext not supported error in vbscript
I am trying to loop on a recordset returned from db2 using a .wsf file and vbscript .
the vbscript libfile(lib.vbs) is as follows
'***************
Const ...
0
votes
0answers
30 views
Consume WsHttpBinding with WS-Security webservice from PHP
I am struggling to consume a WsHttpBinding webservice that uses WS-Security from PHP.
From a working example in .NET I have found that there is a 3-way handshake to establish the security token, and ...
0
votes
0answers
119 views
WSO2 WSF PHP SOAP XML request payload format
I have set-up wso2 PHP WS 2.1.0 framework on a centos server (PHP 5.2.10, apache/2.2.3) with the native PHP SOAP extension active. The sample WS clients work fine. The only difference in my WS ...
0
votes
1answer
154 views
Apache2 restart while using wsf/php
I have another problem with framework WSF/PHP. Most of the time (not always, but still), when i run my script it ends with lost connection. There's no error page or anything, just error connecting ...
0
votes
1answer
58 views
Example of outMessagePolicy option in WSPolicy class in WSO2 WSF/PHP
i need some information on how to put data in this property. In docs there's no info, google is dumb about this. All i need is tiny little example how to initialize this:) My code looks like this:
...
0
votes
0answers
44 views
knowing the current client at service end in WSO2
I am stucked at one place while writing a web service using wso2/php.
I want to use secure mtom.
While using either encryption or signing, how do I come to know which client's public certificate to ...
0
votes
1answer
79 views
PHP Web services problem
i need to implement a web service using PHP , i tried WSO2/WSF PHP framework but it was every hard to install on Apache (XAMPP) ... followed many tutorials but i think because of a version problem it ...
0
votes
0answers
84 views
Encrypting passwords within a WSF file
I am currently trying to encrypt some passwords that are contained within some .wsf files.
What happens at the moment is that via the command line I can install via the command:
cscript Install.wsf
...
0
votes
1answer
207 views
Test whether SOAP is running properly
Programatically, I want to test whether SOAP is working fine on my clients machine.
The machine can be windows/linux.
I want to get the SOAP version as well.
I'm using PHP.
Similarly, I want to do it ...
0
votes
1answer
318 views
Save a file in a new folder
I'm working inside a wsf file so I'm not even 100% sure this is javascript.
See this?
ppPres.SaveAs (file.path.replace(/\.ppt$/i, "_c.ppt"));
It adds a "_c" to the end of a file its just done ...
0
votes
0answers
243 views
Visual Studio add-in for WSF and WSC files
Are there any add-ins for Visual Studio that assist with editing WSF and WSC files?
WSF and WSC (Windows Script Component) files are XML files that are interpreted by the WIndows Script Host. They ...
0
votes
1answer
584 views
WSO2 WSF/PHP - Soap fault: XML builder done with pulling. Pull parser cannot pull any more
I use WSO2 WSF/PHP. I have the WSF extension compiled and enabled in PHP. But I receive this Soap fault response when sending a request to the webservice:
soapenv:Client
XML builder done with ...
0
votes
1answer
439 views
Missing UsernameToken element
I am getting a request in the following method but the soap message does not appear to contain the UsernameToken Element:
$policy = new WSPolicy(
array(
'useUsernameToken'=>true
)
...
0
votes
4answers
243 views
Cannot retrieve referenced URL
I have JavaScript inside a .wsf file and I'm getting the error:
C:\bin\LDLSInfo.wsf(53, 34) Windows Script Host:
Cannot retrieve referenced URL: S:\tools\JScript\lib\StandardWSH.js
At line 53, it ...
0
votes
1answer
252 views
Running multiple JScript files in a separate process
I am looking for a way to launch multiple scripts in a separate process from my main script, but in such a way that they can access copies of variables I've declared. Consider the following example:
...