I am having issues with setting up the Inbound Email with SP 2010. I have enabled the settings in Central Admin for Inbound Email, set up an MX record, added the IP to my Exchange Server, then created a new doc-lib in SP and i am still not seeing the "Incoming e-mail settings" option under communications in the doc-lib setup screen.
Can someone let me know what I may be doing wrong, or missing?
I want to develop a Web applications to collect or exchange sensitive or personal data, this system would give user a detailed automated report on :
• How secure user's website is?
• How easily it can be hacked?
• Where exactly is the problem and
• What are the remedies?
Any suggestions????
Anyone having any experience using the Norken Technologies Parser Development Toolkit ?
I would like to ask some questions about it but i dont think its used very much at least not many files on google about it. I used it for a Portable Game Notation parser, maybe we could exchange some thoughts about the toolkit.
What is the fastest and most stable non-sql database to store big data and process thousands requests during the day (it's for traffic exchange service)? I've found Kdb+ and Berkeley DB. Are they good? Are there other options?
Is this possible to have two (or more) different kinds of cells to be displayed interchangeably in single column of C# .Net 3.5 DataGridView?
I know one column has specified single EditingControl type, yet I think grid is flexible enough to do some tricks, I may think of only:
Adding as many invisible columns to grid as required types of cells and on CellBeginEdit somehow exchange current cell with other column's cell
Create custom column and custom cell with possibility of changing EditingControl for single cell
Which approach is better, are there any examples ?
Hi all
i am new to this technology.
i have configured ESS server with Microsoft Outlook for sending email from simulator. But i am not able to send image as a attachment from simulator to outlook. html attachement is working fine.
Should i configure BES server with Microsoft Exchange for testing the image attachment.
is it possible.
can any one provide me suggestion.
Hi ,
I am doing the small application for link exchange,
so before i approve the URL , i want to check his/her site page rank,
I know , there some site tell the Google page rank position ,
But am looking some API , for page rank checking...
Thanks
Bharanikumar
I have an idea i thinking of creating a website whereby a traveler can exchange itinerary activities and form their own ideal itinerary.
Any ideas? Has a similar website been done? Is it worth coming up with another similar application?
A situation that may be quite common in offices is:
We communicate with clients over e-mails, exchange documents and spreadsheets with them. Is there any tool which will help me in binding all these outputs. Maybe I may get flamed on this as this is not exactly a programming question.
But some inputs may certainly help me.
Thanx
I'd like to know if listing a set of partner sites/blogs is useful for the pagerank growth.
Does Google see it as an incorrect act? I read somewhere that if people exchange links, google seeks it and marks as a bad technique.
If it doesn't matter, is the content of the linked site relevant?
Hi,
On this site I found a lot of cool examples of PHP OOP.
Maybe you know where to find complete examples?
Guest books, registration forms, blog...
When I look at the full model is much easier to understand OOP PHP.
As different classes interacting with each other, exchange data
How to use the generic class for sending data to the database
Thanks
What are the best or most useful dev-related PowerShell modules that exist today? Not looking for sys admin management tools for Active Directory/Microsoft Exchange/etc., but more for development utilities.
Please list one module per answer, so they can be voted up accordingly.
I'll provide a few to start off.
The wifi network is connected, the application setup a socket connection and exchange data with the remote server. But when turn off the wifi, the inteface is removed, while socket operation read/write on this socket is still like normal, no any IO exception reported. The application has to do some extra checking to avoid waiting for the data forever.
Is this the normal case for Android design? Is there any plan to fix it?
the users on a website need to have the possibility to buy/sell website's currency (credits in exchange for real money), is there some easy to use API to do this (that is usable in asp.net mvc) ?
I'd like to know if listing a set of partner sites/blogs is useful for the pagerank growth.
Does Google see it as an incorrect act? I read somewhere that if people exchange links, google seeks it and marks as a bad technique.
If it doesn't matter, is the content of the linked site relevant?
I am trying to open a remote shell via ssh to send commands from R.
As long as I send commands, I need to get results and send new commands that depends on the output of the previous ones.
For this reason I am looking for a solution to open a connection and manage it from within the R code until I have finished. I also need to open the connection with ssh key exchange (so without password authentication).
Looking at CRAN I didn't find anything useful.
use heap sort to sort this in descending order and show the steps or explanation please
below is the tree
79
33 57
8 25 48
below is the array
79 - 33 - 57 - 8 - 25 - 48
ok ascending is easy because the largest element is at the top we can exchange the last element and the first element and then use heapify as the sample code in wikipedia describes it.
Hi,
Does anyone has Exchange Trader server design.
I want to understand how does it work, does it required queues, to handle multiple trades
how to add various observers to the each request .
Including data exchange. I can not find such api in apple doc site. If it is not open in 3.1.2 sdk ,would apple release it in sdk4.0? I've heared that google released wireless api on android earlier . Thanks!
I just followed How to use Group Policy to remotely install software in Windows Server 2003 to try publishing a software (MSI file). I could follow all the steps, but the supposedly successfully published software does not appear on client/user machine's Add/Remove Programs.
Could some help figure why this may not be working.
Update:
On reading this question on Experts-Exchange, tried gpresults. Output extract follows:
COMPUTER SETTINGS
The following GPOs were not applied because they were filtered out
XADistribution
Filtering: Denied (Security)
Default Domain Policy
Filtering: Denied (Security)
Is this possible to have two (or more) different kinds of cells to be displayed interchangeably in single column of C# .Net 3.5 WinForms DataGridView?
I know one column has specified single EditingControl type, yet I think grid is flexible enough to do some tricks, I may think of only:
Adding as many invisible columns to grid as required types of cells and on CellBeginEdit somehow exchange current cell with other column's cell
Creating custom column and custom cell with possibility of changing EditingControl for single cell
Which approach is better, is there any other solution, are there any examples ?
Example for threading queue book "Accelerated C# 2008" (CrudeThreadPool class) not work correctly. If I insert long job in WorkFunction() on 2-processor machine executing for next task don't run before first is over. How to solve this problem? I want to load the processor to 100 percent
public class CrudeThreadPool
{
static readonly int MAX_WORK_THREADS = 4;
static readonly int WAIT_TIMEOUT = 2000;
public delegate void WorkDelegate();
public CrudeThreadPool() {
stop = 0;
workLock = new Object();
workQueue = new Queue();
threads = new Thread[ MAX_WORK_THREADS ];
for( int i = 0; i < MAX_WORK_THREADS; ++i ) {
threads[i] = new Thread( new ThreadStart(this.ThreadFunc) );
threads[i].Start();
}
}
private void ThreadFunc() {
lock( workLock ) {
int shouldStop = 0;
do {
shouldStop = Interlocked.Exchange( ref stop, stop );
if( shouldStop == 0 ) {
WorkDelegate workItem = null;
if( Monitor.Wait(workLock, WAIT_TIMEOUT) ) {
// Process the item on the front of the queue
lock( workQueue ) {
workItem =(WorkDelegate) workQueue.Dequeue();
}
workItem();
}
}
} while( shouldStop == 0 );
}
}
public void SubmitWorkItem( WorkDelegate item ) {
lock( workLock ) {
lock( workQueue ) {
workQueue.Enqueue( item );
}
Monitor.Pulse( workLock );
}
}
public void Shutdown() {
Interlocked.Exchange( ref stop, 1 );
}
private Queue workQueue;
private Object workLock;
private Thread[] threads;
private int stop;
}
public class EntryPoint
{
static void WorkFunction() {
Console.WriteLine( "WorkFunction() called on Thread {0}",Thread.CurrentThread.GetHashCode() );
//some long job
double s = 0;
for (int i = 0; i < 100000000; i++)
s += Math.Sin(i);
}
static void Main() {
CrudeThreadPool pool = new CrudeThreadPool();
for( int i = 0; i < 10; ++i ) {
pool.SubmitWorkItem(
new CrudeThreadPool.WorkDelegate(
EntryPoint.WorkFunction) );
}
pool.Shutdown();
}
}
I am willing to build an email application which runs on the server side.
Not being familiar with any particular server I wonder if I can get some recommendations based on experience.
I have seen many great startups which built some neat apps on the email platform (for instance, friendfeed's notification mechanism, or surely posterous which mail is at the heart of their business logic), and wonder about which mail server have they found easy to learn and integrate with.
PS:
MSExchange or any other not open-source are not an option
Must run on linux
Hello, I have implemented a routing protocol on an Android 1.6 mobile that uses wireless (ad-hoc) network in order to exchange messages. Now I would like to evaluate it under an energy consumption point of view, the base would be to try to calculate the energy wasted to transmit a single packet, do anybody has any idea how to do that? Software/hardware solutions are welcome! Thanx :)