ok, this is starting to look like work:) - Do you have by any chance seen this 
error: 


  | javax.xml.soap.SOAPException: org.jboss.axis.AxisFault: The prefix "xmlns" 
cannot be bound to any namespace explicitly; neither can the namespace for 
"xmlns" be bound to any prefix explicitly.
  |         at org.jboss.axis.MessagePart.getEnvelope(MessagePart.java:1107)
  |        ...
  | 

What bothers me, is the fact, that jboss complains about the envelope. The 
SOAPElement itself seems to be ok, as I can still parse it with XMLBeans, even 
after the createSOAPElement. I'm using: 


  | SignupPort signupPort = (SignupPort)signupPort_Stub;
  | File orderXML = new File("src/test/resources/order.xml");
  | UllOrderDocument orderDocument = UllOrderDocument.Factory.parse(orderXML);
  | 
  | Element el = ((Document)orderDocument.getDomNode()).getDocumentElement();
  | SOAPElement element = createSOAPElement(el, SOAPFactory.newInstance(), 
false);
  | 

to get from my XML to a SOAPElement and finally send it away using: 

  | signupPort.signup(element);
  | 

Has anybody seen this error?!

cheers
stf

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3912085#3912085

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3912085


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to