I am new to GIS and I am writing a simple C# .NET application which interacts with the GIS to get information from the CME to update the details.
I am following the code as mentioned in the Configuration SDK 7.2 Web Services dev guide and i am able to connect to the Config Service successfully but when retriving the data ,am facing the following issues :
I have added the web reference successfully for Session Service, Stat Service and Config Proxy ,i am trying to use the following methods after getting the session ID:
DisplayResults(queryAgents,(XmlElement)cfgService.get(queryAgents)), - says there is no such method found.
I am using GIS 7.5 and trying to retrieve values from CME 7.2 will this be a problem??
Will i be able to retrieve the T-Server options using the GIS- Config proxy once i get the connection, do we have any document for this?
Any help regarding the above query will be helpful and apologies if the query seems basic
1. I have added the web reference successfully for Session Service, Stat Service and Config Proxy ,i am trying to use the following methods after getting the session ID:
DisplayResults(queryAgents,(XmlElement)cfgService.get(queryAgents)), - says there is no such method found.
Have you created the method DisplayResults? You can find the code in Developers Guide.
2. I am using GIS 7.5 and trying to retrieve values from CME 7.2 will this be a problem??
There should be no problem as Genesys usually maintains backward compatibility.
3. Will i be able to retrieve the T-Server options using the GIS- Config proxy once i get the connection, do we have any document for this?
Yes. You should use the method āGetā. XPath query should look like this one āCfgApplication[@name=āā¦name of your T-Server appā]ā.
R.
PS. You should use Developerās Guide for release 7.5 as you have GIS 7.5 and not 7.2.
Thanks for your reply ill follow the hints given by you and proceed and to answer your 1st Question, i had created a method after referring to the dev guide and as suggested ill look at 7.5 rather than 7.2