Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- General Development
- :
- Create New user in Salesforce using asp.net API
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Create New user in Salesforce using asp.net API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-19-2012 02:25 PM
How can I create user in Salesforce using asp.net API? I can see sObject but I dont see the properties of setField.
Re: Create New user in Salesforce using asp.net API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-21-2012 08:34 AM
Hi,
You can write a custom Web Service in Apex to create a user. Having a custom web service will make it easier for you to set the profile you want and other properties and to make the call.
One you have it writen, import the WSDL of this web service into you Visual Studio (together with the enterprise WSDL of course to login).
From there it is easy. Just call your custom webservice with the parameters you define to it.
Make sure you use an Administrator user for the login to assure priviledge.
Hope this helps,
WW

