Docusign Connector not available in library settings of custom document library - visual-studio-2010

I have created a custom document library using Visual Studio in Sharepoint 2010. When i deploy the docusign it is available on other Document libraries that was created directly on site but is not available with the custom form i have created using the Visual Studio. The Docusign connector is also not available with the "Permissions and Management" in the Library settings of the custom form but is available with the other document library settings.
Any ideas ?
thanks in advance.

The installer script will install the DocuSign Sharepoint connector for any SPList of BaseType == SPBaseType.DocumentLibrary (1) and the Hidden property == false.

Related

Integrate External javascript SDK into Dynamcis crm 2016

This is all new to me. I know Dynamics CRM developing more customised forms etc, you will use the Visual Studio. Also within Visual studio you can create plugins, solutions etc.
I'm more inclined to the web resources. what I have done so far, is just to upload HTML within which has an API to call a map service LIKE google but in this case its ESRI maps as a web resource into one of the Dynamics forms. This creates my map within the specified form.
This is not however the ideal way to do this, as it will mean going to every form to load HTML.
Now ESRI has a JavaScript SDK which I would imagine, I can load into Dynamics as an external plugin to have access to ESRI javascript Library.
This is where I'm stuck at the moment.
Could anyone point me to how to install an external library into dynamics visual studio?
Also, is there a way of avoiding not having to manually add html as a web resource into every forms in Dynamics?
You can upload the 3rd party JavaScript library as a web resource of type Script (JScript).
You can create the HTML resource once and reference it on all the forms, but yes, you do need to add it to each form initially.

How do I modify Adxstudio online's aspx file?

How do I modify Adxstudio online's aspx file?
For example, Case Page Template is linked to an aspx file at ~/Areas/HelpDesk/Pages/Case.aspx. How do I modify that Case.aspx file? I've looked around in both CRM and Adxstudio portal site but still cannot find any aspx file.
I'm using Adxstudio online trial, version 7 and CRM Online 2016.
If you are working in an online trial of Adxstudio I suspect you won't have access to the server side code files.
If you want to edit the server side code you should download the SDK, that has all the aspx files in. You can then self host the portal, whilst having full access to the aspx files in something like Visual Studio.
Is this Adxstudio Cloud Service?
https://www.adxstudio.com/adxstudio-portals/features/cloud-hosted-saas/
If so, the answer is you cannot. For the cloud offering, you get what they give you out of the box.
If you are using the on-premise or 'standard' version - you download the SDK which contains a sample/starter project. Open that, configure the connection string and then you can edit the ASPXs (Page Templates) in the Pages folder.

OData Default company and adjusting Service Config Files in Silverlight App being built in MS Visual Studio 2013

I'm building a Lightswitch application using MS Visual Studio 2013. As part of this I access data through an OData url (referencing a dynamics nav project) which does not seem to want to pick up the company data in the url. (It does without it). However then within Visual Studio I only see the column headers and no data. When I debug I get the following error message:
"Cannot process the request because the default Microsoft Dynamics NAV company cannot be found. You can specify a default company in the service configuration file, or specify one for each tenant, or you can add a query string in the form of "company=[name]". You can see the available companies by accessing the default OData web service, Company. For more information, see "OData Web Services" in Help."
For example: (OData url):
localhost:7048/DynamicsNAV70/OData/Company('CRONUS%20International%20Ltd.')/SalesOrder
But only viewable as:
localhost:7048/DynamicsNAV70/OData/ and then selecting SalesOrder
My question is, what config files are they refering to? (Visual studio?If so how do I add the company name?) "OData Web Services" in Help was of no use.
I had to add additional code within Visual Studio to reference the company, for example:
ServiceReference1.NAV nav = new ServiceReference1.NAV(new Uri("http:...../OData/Company('company_name')/"));
nav.Credentials = new System.Net.NetworkCredential("user", "password", "domain");

Cannot add MSCRM 2011 WCF service reference in Visual Studio 2010

Tech Friends,
I could not add MSCRM 2011 WCF service reference in Visual Studio 2010. It throws error when try performing this action. How do we add this service as service reference in Visual Studio 2010 and generate all proxy classes?
Have you tried following these instrutions? Download the Endpoints Using the Dynamics CRM Developer Resources Page.
Specifically in the "Using the WSDL" section.
To add a service reference for these services to a Microsoft Visual
Studio 2010 project, you must append ?WSDL to the service URL when
specifying the address in the Add Service Reference dialog box. For
example, the discovery service WSDL address is
http://servername/xrmservices/2011/discovery.svc?wsdl.
I found the resolution for the problem and I have tested it :)
To add discovery service and organization service as reference in Visual Studio we have to add query strings: ?wsdl=wsdl0
eg:-
.api.crm4.dynamics.com/XRMServices/2011/Organization.svc?wsdl=wsdl0
The same applies for discovery service also.
Check this link:
http://social.msdn.microsoft.com/Forums/en-US/crmdevelopment/thread/033f9831-5e88-4b85-a4eb-a55985f39997

How to deploy Excel 2010 add-in for Office 2007 .NET 3.5 target environment?

Installing Excel 2010 add-in on the target machine with Office 2010 + .Net framework 4.0 is absolutely fine. However, I am not sure whether or not Excel 2010 add-in is compatible with Excel 2007 and .Net 3.5.
Would someone give me some basic ideas about deploying Excel 2010 add-in for that target environment?
Also, in the Prerequisites of setup project, I have currently got .NET 4 client profile , VS2010 tools for office runtime, Windows Installer 3.1 checked. Do I need to check any other options?
Do you have the primary interop assemblies for Excel 2007 installed?
See this for detailed documentation on how to deploy VSTO 2010 add-in.
(Posted solution on behalf of the question author).
Managed to install Excel 2010 Add-in onto target machine that runs Office 2007. Mostly the steps have been covered by this tutorial but there are a few tricks that we need to be aware of.
Main project
Be sure to check the target framework of your application in your main project
Setup project
In registry editor, create following new keys in additional to those suggested in the above tutorial, if you are deploying automation add-in (e.g. HKCR \ CLSID \ {your custom class id} \ Programmable)
Set Programmable key to AlwaysCreate = True ( The UDF will not appear in the automation server list if you don't create this Key and set it properly )
In launch conditions editor, Add Windows Installer Search, and rename it Search for Office 2007 Shared PIA
Set ComponentId to {1ABEAF09-435F-47D6-9FEB-0AD05D4EF3EA} ( This is Excel 2007 Component ID )
(For Excel 2010, use {EA7564AC-C67D-4868-BE5C-26E4FC2223FF})

Resources