0 Replies Latest reply on Jan 3, 2006 9:59 PM by rgimbel

    [DeserializationContextImpl] Ignoring invalid namespace mapp

    rgimbel

      Hello!

      First this is not a JBoss problem but I am hoping someone might help me understand this. I created a HelloWorld webservice that passes a string in and sends a string back. Nothing out of the normal. I have it deployed and am using a C# app to consume this webservice. The webservice works fine I pass my string in and get a string back. I get on my console every time the webservice is executed the warning:

      [DeserializationContextImpl] Ignoring invalid namespace mapping: [prefix=,uri=]
      


      <?xml version="1.0" encoding="utf-8"?>
      <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <soap:Body><sayHowdy xmlns="http://com.mine.ws/mysrv/types">
      
      <String_1 xmlns="">JBoss Rocks!</String_1>
      
      </sayHowdy></soap:Body></soap:Envelope>



      I guess my question is two-fold. Is that warning caused by the String_1 parameter being passed into the webservice with xmlns=""? And second what can I do to fix this WARNING from coming up? My webservice was created in VS .NET 2003 with .NET 1.1

      Thanks in advance!