OK , I knew that it wont be easy, but I have no choice.
It will be a server for Advanced Device Management, this is server
that configures your compatible mobile device. Just like when you ask
for MMS settings , and your mobile operator sends it on your device
via sms. This server will send a connection request to the mobile
phone after introducing the tel. number , and after accepting it , you
can configure the device from the server, without doing anything on the
phon itself. So, I recevide a War file, and I think this is the server
application. But after spending two days with searching the net for
some details, I found nothing.. That is why i thought somebody from
this group could help me.
> OK , I knew that it wont be easy, but I have no choice.
> It will be a server for Advanced Device Management, this is server
[quoted text clipped - 7 lines]
> some details, I found nothing.. That is why i thought somebody from
> this group could help me.
Well, you already seem to have the application (war-file). This is an
application format that is supposed to run in a web-container. It
probably also means that the application does not utilize a full stack
of j2ee-technologies (ie no ejb's), which makes things a little easier.
Now, you need an application server with a web-container to run the
application. If you don't already have one, I'd recommend Tomcat, which
is the most widely used one. Chances are your app already has been
tested on Tomcat and will run without problems. Download from
tomcat.apache.org if you don't have it already (or you intend to run the
app at a web-hotel with java support)
It is quite likely that the application needs a database to store data.
Part of installing the application in the application server (a process
called deployment), would then be to configure the database (create
tables etc.). Some web-applications does this by themselves, as soon as
they're given connection data (database host,username,password etc.),
others require you to do this manually or by running supplied sql scripts.
Finally it seems your application will need some sort of gateway to a
phone system. Setting up the connection here will likely require some
configuration steps, just like setting up the database. Exactly what
this involves is impossible to say...
I have no idea where you've gotten your application, but specific
instructions on how to install, configure and run should be available at
the same source. Also, war-files are basically zip-archives with a
specific file-structure inside. You can try to unzip and look for files
like *.xml and *.properties that may hold configuration data. Also maybe
(hopefully) you'll find some documentation inside the archive, look for
*.html, README, *.pdf etc.

Signature
jon martin solaas
Kudee - 20 Apr 2006 07:07 GMT
Thanky you wery much!! It worked.. The aplication is running, but the
part withy the gateway not...Anyway.. thanky.. I solved the problem.