function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Bhaskar-PrithviBhaskar-Prithvi 

Help: Creating cases by Self-Service User via API

hi,
I want to create Self servcie page i my web application.I want use my own UI not salesforce.com UI
I am ale to login as selfservice (see below code),but i want create cases and View cases for the logged in self-service user via API,
I want to display in my own way (like in Datagrid etc).
 
Please Guide me
 
MyCode:
--------------

public string GetUserCases()

{

sforce.SforceService binding = new sforce.SforceService();

sforce.LoginResult logResult = null;

binding.LoginScopeHeaderValue = new sforce.LoginScopeHeader();

binding.LoginScopeHeaderValue.organizationId = "MyOrgId"; // My Org Id

try

{

logResult = binding.login("slefservcieUserName", "SSPwd"); //Self-Service Username and Password

binding.Url = logResult.serverUrl;

//I am able to logged In

Now i wat to View SSUser cases

}

catch (Exception ex )

{

return ex.Message;

}

return "My return data";

}