Ricardo Costa
Register Trixbox with Netcall.pt for incoming and outgoing calls
Go to freePBX à Trunks and create a SIP trunk.
Then trunk settings are:
General Setting
Outbound Caller ID: "YOUR NAME" <YOUR NUMBER>. Type exactly with ""...
How to use FullTextSqlQuery to search in WSS
First, you have to add the following references:
Microsoft.Sharepoint
Microsoft.Sharepoint.Search
Second:
DataTable resultsDataTable = new DataTable();
using (SPSite site = new SPSite("http://server"))
{
FullTextSqlQuery query = new FullTextSqlQuery(site);
...
How to use KeywordQuery to search in WSS
First, you have to add the following references:
Microsoft.Sharepoint
Microsoft.Sharepoint.Search
Second:
DataTable resultsDataTable = new DataTable();
using (SPSite site = new SPSite("http://server"))
{
KeywordQuery query = new KeywordQuery(site);
query.QueryText = queryText;
query.ResultTypes =...
Different web.configs
In the project that I'm currently working I had a problem because my connection strings are different from the other developers: I want to...
Recursive Queries in SQL Server 2005
For building recursive queries In SQL Server 2005 we have to use a new functionality called Common Table Expressions.
Let's see how we can...
List User Profiles from MOSS 2007
using (SPSite site = new SPSite(siteUrl)){ ServerContext context = ServerContext.GetContext(site); UserProfileManager profileManager = new UserProfileManager(context); foreach (UserProfile userProfile in profileManager) Console.WriteLine(userProfile.Value);}
Problems with ItemAdded and ItemUpdated in MOSS
Just followed the steps described by Ted Pattison at Creating and Using Event Handlers in Windows SharePoint Services 3.0 in my MOSS virtual machine...
“Wait for field change in current item” workflow action in Sharepoint...
The "Wait for field change in current item" workflow action in the Sharepoint Designer only detects the change after the item is checked in....
GRANT permission to all stored procedures
If you need to grant a specified permission to all stored prcedures you can execute the following scriptDECLARE @User sysname SET @User = '<USER>'...
Setting the original file name when using Response.BinaryWrite()
Imagine you have file saved in a database. Then you have an aspx page that gets that page and sends it back to the user.If you...
![[FIX] BizTalk Server 2010, 2013, 2013 R2 & 2016 errors “Class not registered (WinMgmt)” or “Access denied”](https://i1.wp.com/blogit.create.pt/wp-content/uploads/2018/07/access-black-and-white-blur-270514.jpg?resize=218%2C150&ssl=1)















