Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!

DCE SOAP UI

EcoStruxure IT forum

Schneider Electric support forum about installation and configuration for DCIM including EcoStruxure IT Expert, IT Advisor, Data Center Expert, and NetBotz

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • EcoStruxure IT
  • EcoStruxure IT forum
  • DCE SOAP UI
Options
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
Cory_McDonald
Admiral Cory_McDonald Admiral
124
Jef
Admiral Jef Admiral
110
gsterling
Captain gsterling Captain
71
APC_Steve
Captain APC_Steve Captain
65
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure IT forum
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 04:11 PM . Last Modified: ‎2024-04-09 02:54 AM

0 Likes
3
887
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2020-07-02 04:11 PM . Last Modified: ‎2024-04-09 02:54 AM

DCE SOAP UI

Hello All,

I am trying to use SOAP UI to test getting sensor values from DCE using the following steps....

I am using the V2_0 WISDL services

1) Use "initializeSensorService" to initialise the service - This returns true and is OK

2) Use "getDeviceByIPAddress" and it returns data, one of which is

 
              Bfbbfd6_nbSNMPEnc328752EA

3) Taking the ID in 2 above I plug it into the "getSensorsByIDs" as follows....

         Bfbbfd6_nbSNMPEnc328752EA
         

 to get a list of Sensor ID's for that device and it returns...


         soap:Server
         Illegal argument. No enum const class com.apc.stdws.xsd.isxcentral._2009._10.ISXCSensorType.? 

In summary does anyone know the steps, using the SOAP API's to...

1) Init the Service
2 Return the list of Sensors for a known IP address of a device monitored by DCE
3 Return the value of a specific sensor on that Device

Any help would be greatly appreciated....

Thanks

Craig

 

(CID:103584752)

Labels
  • Labels:
  • Data Center Expert
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 3
DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 04:11 PM . Last Modified: ‎2024-04-09 02:54 AM

0 Likes
1
887
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2020-07-02 04:11 PM . Last Modified: ‎2024-04-09 02:54 AM

1) I think you can skip this one, I never had any problems skipping it.

3) There seems to be some confusion, first you talk about "getSensorsByIDs", which will not work in this case because it requires a sensorId and you have a deviceId.

Then the code you quote uses the correct request: "getSensorsForDeviceRequest" - so which one did you use?

I Doubt SOAP UI will work if you mix the request, ie. paste the getSensorsForDeviceRequest code into getSensorsByIDs request.

 

Workaround:  If you you are looking for specific type of sensor you could use the "getSensorsByTypeRequest" instead, e.g. if you are looking for sensors of the type "OUTPUT_POWER_WATTS" you could do:

 

     
         OUTPUT_POWER_WATTS
      

Which will give you all sensors of the given type, and you then manually have to search for the device in question (if the device does not show up it does not have any sensors of the specified type).

 

Hope this helps

Gert

 

 

(CID:103584790)

Reply

Link copied. Please paste this link to share this article on your social media post.

DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 04:11 PM . Last Modified: ‎2024-04-09 02:54 AM

In response to DCIM_Support
0 Likes
0
887
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2020-07-02 04:11 PM . Last Modified: ‎2024-04-09 02:54 AM

Hi Gert,  This is good, I can now use SoapUI to pull data form the sensors I want.  But when I try to put that into PHP (LAMP) environment I get errors like "[WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://server/integration/services/ISXCentralSensorService_v2_0?wsdl' "

The API Call looks like...

$soapURL = "http://server/integration/services/ISXCentralSensorService_v2_0?wsdl" ; $soapParameters = Array('login' => "monitor", 'password' => "monitor") ;
$soapClient = new SoapClient($soapURL, $soapParamaters);

I have also tried...
$soapClient =     new SoapClient ("http://monitor:monitor@server/integration/services/ISXCentralSensorService_v2_0?wsdl");

Dows anyone have any PHP examples of pulling information via the SOAP API from Expert?

Thanks

Craig

(CID:103585352)

Reply

Link copied. Please paste this link to share this article on your social media post.

DCIM_Support
Picard DCIM_Support
Picard

Posted: ‎2020-07-02 04:12 PM . Last Modified: ‎2023-10-31 10:44 PM

0 Likes
0
887
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2020-07-02 04:12 PM . Last Modified: ‎2023-10-31 10:44 PM

superhero.png

This question is closed for comments. You're welcome to start a new topic if you have further comments on this issue.

Reply

Link copied. Please paste this link to share this article on your social media post.

To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of