I have an XML file which I need to parse using PHP and send the parsed data to Java, what are some best practices to accomplish it ?
|
up vote
2
down vote
favorite
1
|
|||||||||||||
|
|
up vote
4
down vote
accepted
+75
|
This is a case study for a web service like SOAP. |
||||||||||
|
|
up vote
2
down vote
|
If data size is quite big and you need fast transfer, then you would like to consider protobuf (http://code.google.com/p/protobuf/). It is a comparable to SOAP but communicates entirely in binary. |
||
|
|
|
up vote
2
down vote
|
I guess it might help to know a little more about the premise of what you are trying to do and what your limitations are. Are you only coding the PHP side and sending the data to a Java application that's already created? Or are you doing both sides? What kind of protocols are available to you to interface with Java? //-> After Clarification // I don't have much knowledge of the ILOG Engine, however I took a look at the API to kind of get an idea of where I would start. Obviously I don't know how everything is setup for you but it appears that ILOG has an API for handling XML already built into it? http://ilog.cn/products/jrules/documentation/jrules67/api/html/index.html Personally I would make the required modifications to the XML file and hand it off to the Java program to take care of using that API. Sorry if I went the wrong direction with this! |
|||
|
up vote
2
down vote
|
So you want to: parse the xml. Extract some data and insert it into MySql. Analise the incoming data and construct some JRules parameters. Then invoke Jrules. Right? As far as I can work out JRules doesnt have a command line API -- if it did you could just kick of the app using a System(...) call. My best advice would be to do everything in Java! JRules is running in Websphere so you have a Servlet engine running for sure. Java comes complete with all the APIs you need to parse XML, update a database and invoke JRules. Why go to the pain of invoking a Java class from php? Alternativly! I notice that JRules has a web service interface. Somewhere on the web is a php SOAP::Client interface (its optional but should be provided as default in most php 5 distros)so you could configure the WebService on JRules, get the xml schema and load it up into the php engine. Its then relativly easy to use phps SOAP::Client classes to invoke the Web Service. See http://th2.php.net/manual/en/book.soap.php Still prefer the pure Java option though. |
|||
|
|
up vote
1
down vote
|
What do you mean by "parse"? What, precisely, is the PHP code doing? You could use something like SOAP or XMLRPC or Thrift or Protobuf to get the two languages talking to one another, but it might be simpler just to have the PHP code load the XML and simply send it byte-for-byte to the Java program via HTTP or something. Java code can then do the parsing work, which might be as easy as handing the XML data to the library you're using. |
||
|
|
up vote
0
down vote
|
You can also use PHP SimpleXML (PHP v5) to read the data from the XML file |
||
|
|
|
up vote
0
down vote
|
There is a PHP / Java bridge implementation: http://php-java-bridge.sourceforge.net/pjb/ my previous company used it once in a project and as far as I know it worked, but I was not involved in that project so I cant tell you exactly about any problems. If that is not an option, a Webservice either via SOAP or maybe a more "lightweight" exchange format would be your best bet I guess. |
||
|
|
|
up vote
0
down vote
|
Why do you have to parse this file using PHP? Is porting this code over to Java out of the question? What does the PHP code return? How easily can the be read by Java (or is this part of the overall question?) As I see it you have the following options: Rewrite the logic in Java, a web service (SOAP, REST what have thee), a PHP/Java bridge or a PHP scripting engine in Java. |
||||||||
|
|
up vote
0
down vote
|
I would suggest this alternative- a) Parse the XML and convert it into JSON (Java script object notation) in PHP. (Manipulating JSON objects are very easy, just like handling maps/arrays in PHP) |
||||
|
|
up vote
0
down vote
|
The following scenarios apply:
|
||
|
|