Questions tagged [new-webserviceproxy]

24 questions
0
votes
2 answers

Datapower Web Service Proxy: "Match by URL" processing action does not work in response rule

I am trying to configure a Web Service Proxy in Datapower, one that can be activated with multiple local URI's. In the WSP Policy, transactions are routed into different Processing Rules using a Match processing action that matches transactions by…
lng
  • 1
0
votes
1 answer

Is there a way to call a Web Service with Client and Service Certificates in powershell?

I'm working on a Powershell script, that needs to call a web service, with a Client and Service Certificate. I have the connect semi-working in C# .Net. In .Net app.config i have these configurations: ...
0
votes
1 answer

Error passing New-WebServiceproxy as a function parameter

I'm trying to create a function that uses New-WebServiceProxy as a parameter, but I get an error. My function code: function Execute-SOAPRequest () { [CmdletBinding()] Param ( [Parameter(Position = 0, Mandatory = $true)] …
Nikolas
  • 2,322
  • 9
  • 33
  • 55
0
votes
2 answers

How to perform a post request with loopback 4

After some research I found the loopback proxy sevices which allowed me to do some queries with the get method. But I do not know how I can perform a POST request with the data in the body of the request. my service import {getService} from…
kfir88
  • 380
  • 2
  • 16
0
votes
0 answers

Remote Powershell session not loading assemblies

I have a powershell script file, that when executed via winrm, wont get executed correctly in some windows environment. The below script executes fine in that machine. $ssrsEndpoint =…
Jimson James
  • 2,937
  • 6
  • 43
  • 78
0
votes
0 answers

Correct number of arguments to SOAP Webservice with PowerShell

I have just started out with PowerShell and SOAP Webservices. I'm using New-WebserviceProxy and I have trouble finding the correct number of arguments for a query. The service method I'm trying to use looks like this:
0
votes
1 answer

How to call a SOAP operation on a specific named WSDL port?

Previously when working with calling SOAP web services from PowerShell life's been easy. Run $myProxy = New-WebServiceProxy -Uri 'https://example.com/some/web/service.aspx?wsdl', then all actions are magically available on the $myProxy…
JohnLBevan
  • 22,735
  • 13
  • 96
  • 178
0
votes
1 answer

Send New-WebServiceProxy SOAP request to multiple endpoints

first ever time with PS, first ever time scripting in general! I have a wsdl stored locally on my host machine, which points to a localhost endpoint. This is necessary, as the remote servers do not serve the wsdl. They are, however, valid endpoints…
Chris
  • 1
  • 1
-2
votes
1 answer

Blazor WebAPI to Client deserialization exception (PocoJsonSerializerStrategy)

I am able to generate a proxy (using VS 2017) via the Microsoft OData Connector Service Nuget. This generates the proxy just fine. However, when i try to send a entity over the wire to the client side, i get a deserialization exception. Is there any…
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
1
2