1
vote
1answer
38 views

How to get value from array XML

I want to develop chat with facebook by jaxl.v3. This is my code `$client->add_cb('on_chat_message', function($stanza) { global $client; // echo back ...
3
votes
2answers
141 views

64-bit libjingle failing to parse login XML with expat error: ERROR_INVALID_TOKEN

Only upon attempting to run my login code under 64-bit, am I getting a failure to login to talk.google.com for my initial tests. 32-bit works fine. Upon enabling logging macros and siginput logging, ...
0
votes
2answers
266 views

Upload an image to OpenFire via PHP API service

I am building a PHP API that deals with an image upload. The image is uploaded normally to apache server using $_FILES and PHP move_uploaded_file() - this saves the file locally and is now available ...
1
vote
0answers
120 views

How to subscribe to real-time XMPP RSS feeds with Superfeedr

I'm trying to subscribe to feeds with Superfeedr, and I've got a python wrapper for XMPP up and running, and I'm receiving the dummy.xml successfully. I don't quite understand how to add more ...
0
votes
4answers
319 views

How to use WebSocket with a Jetty emdedded custom server [closed]

I'm new to StackOverflow. I've searched about the topic, but I did not find anything really relevant. Basically I need to develop a web 'Support Chat' system for our company. I know that there are a ...
-2
votes
1answer
114 views

how to make call on xmpp [closed]

I have to use XMPP for processing below request. <query xmlns='http://rappidcars.co.uk/protocol/venue#search'> <location> <lat>52.397476</lat> ...
0
votes
0answers
103 views

Configuring XMPP vines chat server built in ruby [closed]

I am trying to configure the Ruby XMPP server Vines so I can send messages over the Internet and not just locally. At the moment I have to connect to localhost. I tried changing the config file so ...
0
votes
1answer
415 views

Disposing of XmlReader with pending async read

I'm writing a .NET XMPP library for fun and as has been discussed elsewhere the XmlReader implementation in versions prior to .NET 4.5 was not suitable for parsing XML from a NetworkStream as it would ...
2
votes
1answer
107 views

pyxmpp - How to send raw XML

How can I send raw XML code using pyxmpp? something like: c.send("<presence to='jid@domain.com/resource'/>")
1
vote
1answer
704 views

Issues XMPP framework (iOS) and EJabberd server

I want to create a chat application that uses Ejabberd as the server. I setup the ejabberd on my laptop Ubuntu 12.04 and port forward to my public ip. I try to use Pidgin(Ubuntu), Adium(MacOS), ...
0
votes
2answers
132 views

XPath Namespace issues

When connecting to an XMPP server I get one of these two responses: <stream:features xmlns:stream="http://etherx.jabber.org/streams"> <mechanisms ...
2
votes
2answers
148 views

Python and XPath

I'm trying to parse this XML I want to get a list of all of the mechanisms, so I'm trying to use XPATH (please suggest if theres an easier way) to get the mechanisms... Here is my code: ...
4
votes
1answer
246 views

Optimization tips and guidelines for xml parsing on ios

I am looking for optimization tips and guidelines for xml parsing on ios. I am using currently KissXML in one of my projects to parse messages in about 50 Hz. With this rate, i can see clearly that ...
0
votes
1answer
302 views

Python TLS handshake XMPP

I'm trying to connect to an XMPP server using python. I have the XML to connect, I'm just not sure how to do the TLS portion of the connection? I can find lots of examples for HTTPS TLS and examples ...
0
votes
0answers
63 views

how to cache the same page with different dynamic xml data

I've got a jquery-mobile webapp. On some pages the lists will be filled with dynamic data which is coming from xmpp server (pubsub items). Once I visit a page with different groups say #pageGroups ...
1
vote
0answers
265 views

sleekxmpp 'error reading from xml stream' connected <--> disconnected loop

I am on the develop branch. I modified EchoBot just a little bit, below is the changed/added code, otherwise I took the rest from the example included with the source: ...
0
votes
2answers
605 views

Sending XHTML messages with Strophe in a muc room

I'm trying to send a html message using Strophe to a muc room. I also tried to send the following xml over the XML console in Psi but it doesn't work, only Hello World is displayed. Is there something ...
3
votes
4answers
428 views

How to efficiently define End-of-Transmission for XML-based text protocol?

I want to develop a text protocol based on XML and transmitted via TCP/IP sockets. Let's say I have a simple request/response mechanism to be send over a persistent TCP/IP connection between client ...
0
votes
0answers
58 views

Is there some standard effecient way to log data written to stream in Java

I'm writting tiny XMPP client as university project. To generate valid XML markup I use XMLStreamWriter from standard library. For debugging purposes I want to see all content that was written by it ...
11
votes
4answers
2k views

JSON Schema compared with XML Schema and their futur

I was looking for JSON schema standards and their corresponding php implementations. Expecting some open source out there and I was surprised, to find only one php implementation. I was about using ...
1
vote
1answer
234 views

XmlWriter leave element open

I am looking at the XMPP protocol and testing some basic interaction with a server. XMPP interacts by exchanging XML forward and backwards, but this XML is part of an ongoing stream, effectively ...
0
votes
1answer
646 views

How to send message body in CDATA with strophe?

I am generating messages like this $msg({to: 'user', from: 'me', type: 'chat'}).c("body").t('some data'); that generates: <message to='user' from='me' type='chat' xmlns='jabber:client'> ...
0
votes
1answer
68 views

XMPP as Messaging solution between software components / servers?

I would like to look into the possibility to use XMPP as a messaging solution between mutiple servers to effectively have one system where not only users but also the software itself communicates with ...
1
vote
2answers
210 views

XML parsing ':' in XElement

I am creating XElement object on name "stream:stream" but it raises XMLException such that ':' cannot be included in a name. here first stream is a namespace.
0
votes
1answer
295 views

parsing xml content coming through TCP sockets in windows phone 7

I am working on a xmpp chat application for windows phone 7. It receives xmpp packets through the stream. Now I need to parse the xml content which comes through sockets. For windows phone 7 we do ...
0
votes
2answers
486 views

parsing xml content on windows phone 7 using tcp sockets

I am working on an application for windows phone 7. I have a to parse xml stream using tcp sockets in c# silverlight. I am trying it using xmlreader and memory stream but it is of no help. When ...
0
votes
3answers
158 views

Read string without parsing in Python xml.dom

As you probably know, Pythons xml.dom readString() throws an exception, if there is anything wrong with the xml code. I am currently writing a simple xmpp chat server, and as you probably also know, ...
2
votes
2answers
306 views

XMPP asmack problem missing attribute

I encountered a problem where an attribute within an XML stanza is missing. Based on the log file on the server side, I can confirm that the attribute is sent from the client to server. Also, when the ...
1
vote
2answers
469 views

Java, from XMPP server response string to XML Document

I have a client which connects to a XMPP Server, and the server send me the answer <?xml version="1.0"?><stream:stream id="119B61FB" from="chat.facebook.com" version="1.0" ...
2
votes
3answers
3k views

How to send custom XML packet using Java's Smack API?

I'm using the Smack API in Java to connect to my XMPP server. I want to send a customized message packet like this: <message to="you@MyServer.com" type="chat" MYFIELD="custom stuff"> ...
0
votes
1answer
530 views

parsing an XMPP stream with libxml2

I'm a beginner when it comes to libxml2, so here is my question: I'm working at a small XMPP client. I have a stream that I receive from the network, the received buffer is fed into my Parser class, ...
1
vote
4answers
413 views

erlang mysql result to xml

I have an output : MysqlResult = {selected,["id","first_name","last_name"], [{1,"Matt","Williamson"}, {2,"Matt","Williamson2"}]} how to make it look like : XML = " <result ...
3
votes
1answer
977 views

How can I integrate FaceBook with XMPP?

I want to integrate Facebook with xmpp and want to make a chat facility for my website, please assist me.
1
vote
1answer
2k views

best way to exchange custom XML elements in XMPP?

I have an XMPP application where two clients interact (1) a bot programmed with Smack (Scala/Java) and (2) a GUI chat client programmed in strophe (Javascript). The app needs to exchange custom XML ...
0
votes
2answers
410 views

Looking to build a web based chat. Any suggestions?

I was looking to build a web based chat application. My primary idea was in the direction of using AJAX and transferring XML messages to-and-fro a centralized server (used for synchronization) ...
3
votes
4answers
327 views

Using Ruby, how can I confirm that an XML snippit is valid?

As some of you make know, I'm working on XMPP (Jabber) integration for the StackOverflow chat system, as an XMPP component written in Ruby using the xmpp4r package. I'm struggling with one issue ...
2
votes
2answers
1k views

Best way to parse XMPP-like XML streams?

I am working on a server application which receives data over a TCP socket in an XMPP-like XML format, i.e. every child of the <root> element essentially represents one separate request ...
9
votes
3answers
9k views

Where can I find a good XMPP (Jabber) tutorial?

Where can I find a good XMPP (Jabber) tutorial with detailed information on the XML that's sent to/from a Jabber client and server. I've looked at the xmpp.org website, but what they show there is ...
7
votes
6answers
2k views

Asynchronous XmlReader in .NET?

Is there a way to access a XmlReader asynchronously? The xml is coming in off the network from many different clients like in XMPP; it is a constant stream of <action>...</action> tags. What ...
0
votes
2answers
431 views

Secure iPhone-Desktop Connection

Background There are a lot of App Store released iPhone apps that require an IP based server on the desktop so that the iPhone can connect to the desktop as a client. For example, there are many ...
2
votes
5answers
659 views

Which format for transmitting data over TCP?

I'd like some advice on which format to use for transmitting data over TCP. Currently, I have devised a simple text-protocol with delimited strings. I'm thinking I should use something out there ...
2
votes
1answer
2k views

How do you display an XMPP (Jabber) vcard photo in Delphi?

How can I read a photo from an XMPP vcard (an avatar picture, which I think is in JPEG format) and display it in a Delphi TImage control? The XMPP server sends this XML: <presence id="e3T50-75" ...
2
votes
1answer
1k views

LINQ: Get attribute with any namespace but specific name

I need to be able get a single specific attribute from an element with a specific local name but any namespace (if you are familiar with XMPP you will understand why). Apart from writing my own ...