If no one is visiting the site there will be no sessions"
I think that's absolutely right.
"If one comes a session will be created but first app_start will fire."
That's right, assuming that the application was just started on the web server.
"When will the application_start fire again (after...
Not really.
What happens in this scenario is that Application_start will fire as soon as the first user visits the page. As you said, two session_start will fire. However even if the user'session has ended, application_end will not fire. Application end will fire only if the IIS Worker process...
I Think that:
Application_start is raised immediately after the FIRST application is created, meaning after it's compiled and starts for the first time on the web server. This event occurs only once in the lifecycle of the application.
Application_End is raised before the end of all...
The third party app I was talking about is an automatic dialler developped by Convertec Inc. which integrates with Norstar PBX's.
It follows a client/server architecture, whereby the client can be either the provided client in the application or a customizaed, programmed client using the API's...
I had the same problem once, here's how I solved it:
Assuming that tbl1 is the table that holds your data, run this query:
SELECT tbl1.EqNum, tbl1.OpHours,tbl1.fld1,tbl1.fld2
FROM tbl1 INNER JOIN
(
SELECT EqNum,MAX(OpHours) OpHours
FROM tbl1
GROUP BY EqNum) A
ON tbl1.EqNum=A.EqNum AND...
Thank you both for your valuable answers.
winthropdc, out of all the integration methods I had considered, I didn't really consider eConnect. But after reading more about it in the article you have attached, it definetly seems to be the way to go!
Dukester0122, I had considered that option as...
Thank you for your answer Jazgeek
I have researched integration using IM, but unfortunately I think I'll need a bit more flexibility than that. The problem with IM is that transactions have to be processed in a batch, typically following a schedule. I need more of a real time approach, that will...
Hello,
I have been placed in charge of Great Plains deployment throughout my company. Accounting Dep't took the decision to use great plains as the accounting software because of all the functionality it offers. Only my problem is this:
The company has a very specific sales workflow, which is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.