Click here to Skip to main content
15,917,793 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
GeneralRe: How to make sure records were not temper changed Pin
krumia16-Feb-12 19:26
krumia16-Feb-12 19:26 
GeneralRe: How to make sure records were not temper changed Pin
Eddy Vluggen16-Feb-12 19:44
professionalEddy Vluggen16-Feb-12 19:44 
GeneralRe: How to make sure records were not temper changed Pin
krumia16-Feb-12 21:02
krumia16-Feb-12 21:02 
AnswerRe: How to make sure records were not temper changed Pin
jschell29-Dec-11 14:30
jschell29-Dec-11 14:30 
GeneralRe: How to make sure records were not temper changed Pin
songbo073-Jan-12 16:28
songbo073-Jan-12 16:28 
QuestionNekustamais īpašums Pin
Paradupi16-Dec-11 0:38
Paradupi16-Dec-11 0:38 
QuestionHow to develop real time alert system Pin
shelltton13-Dec-11 16:07
shelltton13-Dec-11 16:07 
AnswerRe: How to develop real time alert system Pin
V.16-Dec-11 1:45
professionalV.16-Dec-11 1:45 
Outside of your normal n-tier approach there is not so much different going on.

email
for email you can always write it to use smtp. This implies you have an smtp server. (IIS eg is already capable of doing this, so I guess a java equivalent can also)
An smtp mail is pretty straightforward, to, cc, bcc, from, subject, mailbody and attachments depending on what you need and I'm pretty sure Java has objects available.

Sms.
To send an sms you'll need an application that can do this and provides a component that you can use. I say application, because that will have to go through a phone central or something similar. The best thing you can do is check with the provider, who knows they have a webservice that you can use. Once you have that, it's basically the same as an email: phonenumber sender, phonenumber receiver, smstext.

shelltton wrote:
when a vehicle arrive or aprouch in an pre definined route

This will be the hard part depending on your needs. If it is a real route they're following you'd somehow need to match the 'triggering' route with the real followed route. Can't help you here.
If the 'route' corresponds to an area and you need to trigger if an object entered that area this might be simpler, unless the area is polygon (polygons can be pretty complex), in that case you need a special algorithm that divides the polygon in seperate regular polygons (square, triangle, ...). If the area is a circle or a square or something like that you just need to check if the XY coordinate of the object is within the regular square/triangle/circle/... If you can go for a square or circle.

Triggering
Normally you can subscribe to a callback of the object that provides the coordinates of the moving vehicle (GPS?). In that callback you need to check whether it is within the boundaries of the area or is on the triggering route for an email/sms and send.

I realize that this not a complete answer to what you probably want, but I hope it might give you enough information to start. if you have more detailed questions, shoot, I'm no wizard, but I can try to answer Smile | :)
V.

AnswerRe: How to develop real time alert system Pin
Luc Pattyn16-Dec-11 3:49
sitebuilderLuc Pattyn16-Dec-11 3:49 
AnswerRe: How to develop real time alert system Pin
jschell16-Dec-11 8:44
jschell16-Dec-11 8:44 
AnswerRe: How to develop real time alert system Pin
gentlegod00125-Dec-11 4:34
gentlegod00125-Dec-11 4:34 
AnswerRe: How to develop real time alert system Pin
gentlegod00125-Dec-11 4:35
gentlegod00125-Dec-11 4:35 
QuestionChallenges in storing files in ftp path Pin
jith - iii10-Dec-11 9:05
jith - iii10-Dec-11 9:05 
AnswerRe: Challenges in storing files in ftp path Pin
jschell12-Dec-11 8:45
jschell12-Dec-11 8:45 
AnswerRe: Challenges in storing files in ftp path Pin
dawmail33313-Dec-11 2:59
dawmail33313-Dec-11 2:59 
AnswerRe: Challenges in storing files in ftp path Pin
gentlegod00125-Dec-11 4:35
gentlegod00125-Dec-11 4:35 
QuestionDiagramming Standards? Pin
dawmail3337-Dec-11 2:02
dawmail3337-Dec-11 2:02 
AnswerRe: Diagramming Standards? Pin
jschell12-Dec-11 8:46
jschell12-Dec-11 8:46 
GeneralRe: Diagramming Standards? Pin
dawmail33313-Dec-11 2:54
dawmail33313-Dec-11 2:54 
GeneralRe: Diagramming Standards? Pin
Nagy Vilmos13-Dec-11 5:24
professionalNagy Vilmos13-Dec-11 5:24 
AnswerRe: Diagramming Standards? Pin
Stefan_Lang13-Dec-11 2:53
Stefan_Lang13-Dec-11 2:53 
GeneralRe: Diagramming Standards? Pin
dawmail33313-Dec-11 2:55
dawmail33313-Dec-11 2:55 
GeneralRe: Diagramming Standards? Pin
Stefan_Lang13-Dec-11 3:45
Stefan_Lang13-Dec-11 3:45 
GeneralRe: Diagramming Standards? Pin
Nagy Vilmos13-Dec-11 5:23
professionalNagy Vilmos13-Dec-11 5:23 
QuestionInheritance - what's your take on this? Pin
lclarsen5-Dec-11 23:02
lclarsen5-Dec-11 23:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.