Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
How to Invoke a Web Service using cssdk
sowri
some web services are running in TeamSite Server , I need to invoke them and need to get the data .
From this I need to invoke getGroupData() method .(While I am calling this method I am getting null values )
Sample Code :
CSContext csContext = new CSContext();
AccessServiceProxy accessServiceProxy = new AccessServiceProxy();
try {
accessServiceProxy.getGroupData(csContext, "hr");
} catch (RemoteException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
I am new to this technology
Can any one have solution please reply to this .
Thanks in advance
Find more posts tagged with
Comments
Rick Poulin
What are you actually trying to do, and in what context are you looking to do it?
Shashanka
Hello,
My requirement is to connect to Teamsite from .net client and get the data from getBranches() method, using webservice (fileService).
I am able to create a proxy and am able to see the method.
For that i need CSContext. For that what values are to be passed and how ?
Can any one suggest me appropriate values...
Please help.
Shashanka
Rick Poulin
Post the code you have so far.