I’ve used your service and i can see this in the server.log
[10388]2006-03-22 19:35:24 WET [ISP.0090.0002C] — END tracePipeline — swapRows(); writeTDnowrap(“row-l”);
[10387]2006-03-22 19:35:24 WET [ISP.0090.0008C] 0 node {com.wm.lang.xml.Document} = ‘DOCUMENT System ID: null Public ID: null’ swapRows(); writeTDnowrap(“row-l”);
[10386]2006-03-22 19:35:24 WET [ISP.0090.0001C] — START tracePipeline [3/22/06 7:35 PM] —
So there is something in my pipeline named ‘node’ but i don’t know how to use it.
For information to invoke my service i used a java program:
[highlight=java]
conn=(HttpURLConnection)mURL.openConnection();
conn.setRequestMethod(“POST”);
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setUseCaches(false);
conn.setRequestProperty(“Cache-Control”, “no-cache”);
conn.setRequestProperty(“Accept”,“text/xml”);
conn.setRequestProperty(“Content-Encoding”,“UTF-8”);
conn.setRequestProperty(“Content-Type”,“text/xml”);
conn.setRequestProperty(“Content-Length”,“”+((contratStream)?contratFile.length():contrat.length()));
conn.connect();
OutputStreamWriter out = new
OutputStreamWriter(conn.getOutputStream(),“UTF-8”);
if (! contratStream)
{
out.write(contrat,0,contrat.length());
out.write(“\r\n”,0,2);
}else
{
try {
BufferedReader in = // new BufferedReader(new
FileReader(contratFile));
new BufferedReader(
new InputStreamReader(
new FileInputStream(contratFile)
,“UTF-8”
)
);
int c ;
String str;
while ((str = in.readLine()) != null)
{
out.write(str,0,str.length());
out.write(“\r\n”,0,2);
}
in.close();
}catch (IOException e){e.printStackTrace();}
}
out.flush();
out.close();
System.out.print("reponse du serveur : ");
System.out.println(idContrat + " : " +
conn.getResponseMessage());
conn.disconnect();
[/highlight]
Regards,
#Flow-and-Java-services#Integration-Server-and-ESB#webMethods