Java-Generic Interface
Hi Friends,
The current connector for accepting request to our existing system is written in C language,we had build a ".so" file by compiling c program using MF cobol.
-Cobol application calls this ".so" files and passes the required buffer.The current data structure in our application is simple string.
Current Structure:-
C Connector receives data and publish it to java program
-Now we are getting request from other modules in our organisation which are written in J2ee, PHP they want to send data through our connector.(We will define the data structure whether they should use soap or xml).
Could some one guide me what are the possible way I can go about it,How can I replace C connector by java program which can receive xml messages and parse it to string.also is there any possibility that I can use simple java program to send the xml
message from application to our system.
Any sample program for learning will be helpful.
Thanks in advance.
-Lisha
View Answers
Ads
Related Tutorials/Questions & Answers:
Java-Generic Interface
Java-
Generic Interface Hi Friends,
The current connector... and publish it to
java program
-Now we are getting request from other modules in our... replace C connector by
java program which can receive xml messages and parse
interface
interface what is the use of marking
interface
Advertisements
interface.
interface. Write short note on
interface.
Please visit the following link:
Java Interface
interface
interface will the
interface implements a
interface
Hi Friend,
No.
Interface can extends another
interface but cannot implements it, because
interface will not contain the implementation.
Thanks
interface
interface Hi
I have
interface in that
interface 3 methods are there , after some days client said that,i want to add one more method in that
interface ,so how can add 4 method so that the implemented class did not affect
INTERFACE
INTERFACE how
interface support multiple inheritance in
java
interface
interface can we extend
interface?
Hi Friend,
Yes an
interface can be extended by other
interface like using extends keyword
interface A{
}
interface B extends A{
}
For Example:
interface IntefaceA {
void
interface
interface what the use of
interface?
An
interface is one... variables.Any class can
implement(inherit)the
interface and make use of the methods(functions) and variables within it.
In
java, multiple inheritance
interface
interface What is marker
interface ??
what is its use in
java programming??
is this us in programming ??Explain is implementation with code
interface
interface develop a library
interface which has drawbook(),returnbook()(with fine),checkstatus()
and reservebook() methods.all the methods tagged with public
interface
interface develop a library
interface which has drawbook(),returnbook()(with fine),checkstatus()
and reservebook() methods.all the methods tagged with public
interface
interface why do we need
interface in
java..if it`s usefull for to obtain multiple inheritance in the sense how it gonna be achieved...and i can...)...the y we need
interface...THis is question often i heard from my developer
Interface
for
Interface in
java? and want to know why they used
interface instead of multiple inheritance? Thanks in advance
An
interface is one which has abstract... method it will take.It creates complexity.Therefore
java uses
Interface
Interface
Interface I need to implement the
interface without overriding its method and also don't use abstract class for this. How to do
interface
; Through
interface, we can achieve the multiple inheritance.
Java does...interface What is the exact use of
interface in real time scenario? some people says that
interface provides multiple inheritance. Is it true
Interface
Interface 1.Create an
interface names ShapeInterface that has two... class
a.Rectangle that uses the
interface
b.Circle that uses the
interface and abstract class
interface ShapeInterface{
int l=0,b=0;
public
Interface
Interface 1.Create an
interface names ShapeInterface that has two... class
a.Rectangle that uses the
interface
b.Circle that uses the
interface and abstract class
interface ShapeInterface{
int l=0,b=0;
public
Interface
Interface Declare an
Interface called property containting a method compute price to compute &return the price.The inerface is to be implemented by follwaing two class
(1)Bungalow&(2)Flat
both the lasses have following
Interface implimentation
Interface implimentation How to impliment an
interface For Achieveing MVC & loosCupling in Any Project
callable interface
callable interface When we use the callable
interface instated of runable
interface
logfile interface
logfile interface How to create logfile
interface for programs in
java
Marker interface
Marker interface what is a marker
interface?
what is its significance
Abstract and Interface
Abstract and Interface what is the difference between Abstract and
Interface accurateatly
null interface
null
interface what is the null
interface and what is the use of it in real
java project ?
Hi Friend,
A null
interface is an
interface...
interface informs
Java that objects of the implementing class can be serialized
interface_querry
interface_querry By using
interface we have to implement all unimplemented methods into our class, even though we are not using all of methods, what is the alternative
Interface in java
Interface in java An
Interface method implemented in more than one different class with same method name. To avoid overriding of methods, we use ObjectReference for that class
Marker Interface
Marker Interface What is the need of Marker
Interface?When should we use
Abstract and Interface
Interface and Abstract Class
1)Main difference is methods of a
Java interface... declared in a
Java interface is by default final. An abstract class may contain non-final variables.
3)Members of a
Java interface are public by default. A
Java