[JBoss JIRA] Updated: (JBWS-925) Provide initial support for FastInfoset
by Thomas Diesler (JIRA)
[ http://jira.jboss.com/jira/browse/JBWS-925?page=all ]
Thomas Diesler updated JBWS-925:
--------------------------------
Summary: Provide initial support for FastInfoset (was: Provide innitial support for FastInfoset)
> Provide initial support for FastInfoset
> ---------------------------------------
>
> Key: JBWS-925
> URL: http://jira.jboss.com/jira/browse/JBWS-925
> Project: JBoss Web Services
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: jbossws-native
> Reporter: Thomas Diesler
> Assigned To: Thomas Diesler
> Fix For: jbossws-native-2.0.4
>
>
> A standard way of doing binary WS is FastInfoset
> http://java.sun.com/developer/technicalArticles/xml/fastinfoset/
> The Fast Infoset standard draft (currently being developed as joint work by ISO/IEC JTC 1 and ITU-T) specifies a binary format for XML infosets that is an efficient alternative to XML. An instance of this binary format is called a fast infoset document. Fast infoset documents are analogous to XML documents. Each has a physical form and an XML infoset. Fast infoset documents are, given the results presented, faster to serialize and parse, and smaller in size, than the equivalent XML documents. Thus, fast infoset documents may be used whenever the size and processing time of XML documents is an issue.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 9 months
[JBoss JIRA] Created: (JBWS-2058) 'wsa:From' header field is assigned to variable 'replyTo' instead of 'from'
by Thomas Lehmann (JIRA)
'wsa:From' header field is assigned to variable 'replyTo' instead of 'from'
---------------------------------------------------------------------------
Key: JBWS-2058
URL: http://jira.jboss.com/jira/browse/JBWS-2058
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: ws-addressing
Affects Versions: jbossws-native-2.0.3
Reporter: Thomas Lehmann
in class org.jboss.ws.extensions.addressing.soap.SOAPAddressingPropertiesImpl the header field wsa:From is assigned to the wrong instance variable of class org.jboss.ws.extensions.addressing.AddressingPropertiesImpl
the method setReplyTo(ref) must be changed to setFrom(ref)
affected method: org.jboss.ws.extensions.addressing.soap.SOAPAddressingPropertiesImpl.readHeaders(SOAPMessage)
...
// Read wsa:From
// This OPTIONAL element (of type wsa:EndpointReferenceType) provides the value for the [source endpoint] property.
Element wsaFrom = DOMUtils.getFirstChildElement(soapHeader, ADDR.getFromQName());
if (wsaFrom != null)
{
EndpointReferenceImpl ref = new EndpointReferenceImpl(wsaFrom);
// change this to setFrom(ref)
setReplyTo(ref);
}
...
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 9 months
[JBoss JIRA] Updated: (JBWS-925) Provide innitial support for FastInfoset
by Thomas Diesler (JIRA)
[ http://jira.jboss.com/jira/browse/JBWS-925?page=all ]
Thomas Diesler updated JBWS-925:
--------------------------------
Summary: Provide innitial support for FastInfoset (was: Add support for FastInfoset)
> Provide innitial support for FastInfoset
> ----------------------------------------
>
> Key: JBWS-925
> URL: http://jira.jboss.com/jira/browse/JBWS-925
> Project: JBoss Web Services
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: jbossws-native
> Reporter: Thomas Diesler
> Assigned To: Thomas Diesler
> Fix For: jbossws-native-2.0.4
>
>
> A standard way of doing binary WS is FastInfoset
> http://java.sun.com/developer/technicalArticles/xml/fastinfoset/
> The Fast Infoset standard draft (currently being developed as joint work by ISO/IEC JTC 1 and ITU-T) specifies a binary format for XML infosets that is an efficient alternative to XML. An instance of this binary format is called a fast infoset document. Fast infoset documents are analogous to XML documents. Each has a physical form and an XML infoset. Fast infoset documents are, given the results presented, faster to serialize and parse, and smaller in size, than the equivalent XML documents. Thus, fast infoset documents may be used whenever the size and processing time of XML documents is an issue.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 9 months
[JBoss JIRA] Created: (JBWS-2057) Metro stax integration has a hardcoded dependency
by Thomas Diesler (JIRA)
Metro stax integration has a hardcoded dependency
-------------------------------------------------
Key: JBWS-2057
URL: http://jira.jboss.com/jira/browse/JBWS-2057
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Thomas Diesler
Fix For: jbossws-metro-1.0.1
The tools scripts in framework somehow try to define a union of all dependencies across stacks.
# JBossWS-Metro stack libraries
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/jbossws-metro-client.jar"
# JBossWS-Native stack libraries
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/javassist.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/jboss-xml-binding.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/jbossws-client.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/jboss-jaxws.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/jboss-jaxrpc.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$LIBDIR/jboss-saaj.jar"
This is incorrect and broken for the stax integration
Metro uses wstx-asl-3.2.1 which should not be hardcoded anywhere. Instead its version needs to be pulled from
version.properties.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 9 months