Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ed5e83d3 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- corrected a bug introduced by moving fileToString

parent 56a4e5a6
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ public class OnlineAlign { ...@@ -84,7 +84,7 @@ public class OnlineAlign {
public String uploadAlign( String alignId ) { public String uploadAlign( String alignId ) {
SOAPAction = "loadRequest"; SOAPAction = "loadRequest";
String content = OfflineAlign.fileToString( new File( alignId ) ); String content = fileToString( new File( alignId ) );
String answer = sendFile( content, alignId ); String answer = sendFile( content, alignId );
String result[] = getResultsFromMessage( answer, "loadResponse" ); String result[] = getResultsFromMessage( answer, "loadResponse" );
//System.out.println("Loaded Align="+ result[0]); //System.out.println("Loaded Align="+ result[0]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment