Displaying 6 results from an estimated 6 matches for "mtom".
Did you mean:
atom
2006 Aug 31
1
SOAP MTOM
Any thoughts on extending ActionWebService to handle MTOM?
http://www.w3.org/TR/soap12-mtom
basically, this allows some flexibility when it comes to base64
encode/decode on the message, binary attachments can pass without being
encoded...
am I on my own here?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you...
2006 May 02
0
Self-referential MtoM implementation
ok, guys i have followed the self referential recipe from the book it
works perfect but now i have some doubts, at the end the model are
modified to force the user beign added as a friend that add too who are
adding him so how i can make that the full relationship doesn?t be
complete until the friend beign added approves it(talking in the
implementation of the code of course)?
by the way,
2008 Jul 23
0
WSO2 Web Services Framework For Ruby (WSF/Ruby) - 1.1.0 Released
...====
WSO2 WSF/Ruby team is pleased to announce the release of WSO2 WSF/Ruby
1.1.0.
WSF/Ruby is the Ruby language extension to WSO2 WSF/C. This enables
you
to consume/provide Web Services both with REST and with the power of
WS-* stack including WS-Reliable Messaging, WS-Security, WS-Addressing
and MTOM Attachments.
For more information, please visit our project home page,
http://wso2.org/projects/wsf/ruby
You can download this release from: http://wso2.org/downloads/wsf/ruby
Key Features
============
1. Client API to consume Web services
* WSMessage class to handle message level optio...
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with
multiple networks and vice-versa. updated patchset so
as to be applicable against current oVirt server HEAD
these patches may be applied in any order, they all
need to be pushed together
2009 Jul 09
2
permit many-to-many vms / networks relationship
This patchset contains changes to the ovirt server
frontend, backend, and tests components, permitting vms
to be associated with multiple networks and vice versa.
Also included are two patches which are required for the frontend
bits; a patch adding collapsable sections to the vm form, which
in itself depends on the second patch that provides default values
for the cpu and memory vm table fields
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...able
+ add_column :vms, :network_id, :integer
+ add_column :vms, :vnic_mac_addr, :string
+ execute 'alter table vms add constraint fk_vm_network_id
+ foreign key (network_id) references networks(id)'
+
+ # copy network id over
+ # NOTE since we're going from a MtoM relationship to a 1toM
+ # we're just gonna associate the last network found
+ # w/ the vm, so this operation is lossy
+ Nic.find(:all, :conditions => 'vm_id IS NOT NULL').each{ |nic|
+ vm = Vm.find(nic.vm_id)
+ vm.vnic_mac_addr = nic.mac
+ vm.network_id...