You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Dan Diephouse (JIRA)" <ji...@apache.org> on 2008/03/12 18:52:51 UTC

[jira] Created: (CXF-1471) HTTP GET support doesn't work with Aegis Databinding

HTTP GET support doesn't work with Aegis Databinding
----------------------------------------------------

                 Key: CXF-1471
                 URL: https://issues.apache.org/jira/browse/CXF-1471
             Project: CXF
          Issue Type: Bug
    Affects Versions: 2.0.4
            Reporter: Dan Diephouse


I get this error:

INFO: Interceptor has thrown exception, unwinding now
org.apache.cxf.interceptor.Fault: NO_MESSAGE_FOR_PART
	at org.apache.cxf.aegis.databinding.XMLStreamDataWriter.write(XMLStreamDataWriter.java:72)
	at org.apache.cxf.aegis.databinding.XMLStreamDataWriter.write(XMLStreamDataWriter.java:45)
	at org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor.writeParts(AbstractOutDatabindingInterceptor.java:93)
	at org.apache.cxf.interceptor.BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:208)
	at org.apache.cxf.interceptor.OutgoingChainInterceptor.handleMessage(OutgoingChainInterceptor.java:74)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:208)
	at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:77)

when calling this url:

http://localhost/EchoService/echo/echo/hello

On this service:

public class EchoService {
  public String echo(String string) { return string; }
}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-1471) HTTP GET support doesn't work with Aegis Databinding

Posted by "Dan Diephouse (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-1471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12578132#action_12578132 ] 

Dan Diephouse commented on CXF-1471:
------------------------------------

I'm referring to JAX-WS services. I believe it was James who wrote a way which mapped URLs to operations for JAX-WS services.

> HTTP GET support doesn't work with Aegis Databinding
> ----------------------------------------------------
>
>                 Key: CXF-1471
>                 URL: https://issues.apache.org/jira/browse/CXF-1471
>             Project: CXF
>          Issue Type: Bug
>    Affects Versions: 2.0.4
>            Reporter: Dan Diephouse
>
> I get this error:
> INFO: Interceptor has thrown exception, unwinding now
> org.apache.cxf.interceptor.Fault: NO_MESSAGE_FOR_PART
> 	at org.apache.cxf.aegis.databinding.XMLStreamDataWriter.write(XMLStreamDataWriter.java:72)
> 	at org.apache.cxf.aegis.databinding.XMLStreamDataWriter.write(XMLStreamDataWriter.java:45)
> 	at org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor.writeParts(AbstractOutDatabindingInterceptor.java:93)
> 	at org.apache.cxf.interceptor.BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)
> 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:208)
> 	at org.apache.cxf.interceptor.OutgoingChainInterceptor.handleMessage(OutgoingChainInterceptor.java:74)
> 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:208)
> 	at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:77)
> when calling this url:
> http://localhost/EchoService/echo/echo/hello
> On this service:
> public class EchoService {
>   public String echo(String string) { return string; }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-1471) HTTP GET support doesn't work with Aegis Databinding

Posted by "Sergey Beryozkin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-1471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12577958#action_12577958 ] 

Sergey Beryozkin commented on CXF-1471:
---------------------------------------

Aegis is indeed not supported with our JAX-RS impl just yet unless it's not JAX-RS which is what your're dealing with... 
In case it's JAX-RS you're trying Aegis with then we'd need to have a simple provider but I don't know what hints are available in the generated Aegis class.
Shall we introduce @Aegis annotation ? That would do just fine


> HTTP GET support doesn't work with Aegis Databinding
> ----------------------------------------------------
>
>                 Key: CXF-1471
>                 URL: https://issues.apache.org/jira/browse/CXF-1471
>             Project: CXF
>          Issue Type: Bug
>    Affects Versions: 2.0.4
>            Reporter: Dan Diephouse
>
> I get this error:
> INFO: Interceptor has thrown exception, unwinding now
> org.apache.cxf.interceptor.Fault: NO_MESSAGE_FOR_PART
> 	at org.apache.cxf.aegis.databinding.XMLStreamDataWriter.write(XMLStreamDataWriter.java:72)
> 	at org.apache.cxf.aegis.databinding.XMLStreamDataWriter.write(XMLStreamDataWriter.java:45)
> 	at org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor.writeParts(AbstractOutDatabindingInterceptor.java:93)
> 	at org.apache.cxf.interceptor.BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)
> 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:208)
> 	at org.apache.cxf.interceptor.OutgoingChainInterceptor.handleMessage(OutgoingChainInterceptor.java:74)
> 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:208)
> 	at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:77)
> when calling this url:
> http://localhost/EchoService/echo/echo/hello
> On this service:
> public class EchoService {
>   public String echo(String string) { return string; }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.