JohnKenVan / jabber-net

Automatically exported from code.google.com/p/jabber-net
Other
0 stars 0 forks source link

Pubsub 'owner' use cases not implemented #17

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Various pubsub operations are being done under the wrong namespace. For 
example, deleting a node sends this:

 <iq id="42" type="set" to="pubsub.example.com">
   <pubsub xmlns="http://jabber.org/protocol/pubsub">
     <delete node="the_node" />
   </pubsub>

The namespace on the pubsub nodes used for deletions should be 
http://jabber.org/protocol/pubsub#owner.

Original issue reported on code.google.com by jcpst...@gmail.com on 21 Mar 2008 at 12:25

GoogleCodeExporter commented 8 years ago
I must have just completely misread the schemas as I was implementing.  Working 
on
it, but it will take a while.

Frankly, I wish I'd caught this early enough on in XEP-60 to be able to call it 
a
spec bug. :)

Original comment by hil...@gmail.com on 21 Mar 2008 at 3:56

GoogleCodeExporter commented 8 years ago
Fixed delete.  Added purge, configure, and defaults.  Added more support for 
error
conditions.  I have not implemented:
- Manage Subscription Requests
- Process Pending Subscription Requests
- Manage Subscriptions
- Manage Affiliations

nor am I likely to over the short term unless there is a large demand.

Please test head of subversion to see what else you need. 

Original comment by hil...@gmail.com on 2 Apr 2008 at 3:59