The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
173 views

Find node id by field value

I am loooking for the way to find a node by the value of custom field using XMLRPC. Here is more context: I am developing an application to integrate our software with drupal 7. The application is ...
0
votes
1answer
138 views

Services 3 Drupal7 xmlrpc java [closed]

I would like to see some examples using retrieve method for getting a node using xmlrpc from java accessing to Services 3. Since I have troubles getting data from custom fields. I expect getting a ...
2
votes
1answer
328 views

how to obtain proper 'call back URL'

I have installed drupal 7 using MAMP and following this tutorial to configure drupal with oAuth, While adding consumer I tried call back URL with domain name like ...
2
votes
2answers
34 views

xmlrpc function in another file

I would like to put all my xmlrpc functions in a separate inc file and the problem is, how would we tell drupal it is in another file. Right now, my hook_xmlrpc in my module file looks like this: ...
0
votes
1answer
201 views

Using Views with XMLRPC

I need to load data from a Drupal View into an external (non-Drupal) site using PHP. I'm using XML-RPC for PHP. I'm able to connect to the system and login, but I'm unable to retrieve a View. I get ...
2
votes
0answers
246 views

use xmlrpc to create a node via services module 3.x and drupal 7

I want to use services module 3.x, drupal 7 and xmlrpc to create a node from a php client. However, I don't know how to deal with the authentication. I enable the session authentication but I don't ...
1
vote
1answer
153 views

xmlrpc_server has no settings

How do I configure xmlrpc_server? I am using the Service module, and I need xmlrpc_server. I installed, and enabled it, and it is showing me the following error: xmlrpc_server has no settings ...
3
votes
1answer
443 views

How to obtain Drupal session cookie via an XMLRPC request?

I would like to implement single sign-on to Drupal and other site (not PHP) via xmlrpc. Is there a way to make an xmlrpc call with user name & password and in return obtain information on success ...
1
vote
2answers
226 views

XML-RPC Custom Hooks Request

I have developed my own xmlrpc hook, which have certain functions. Basically I need to call that functions outside Drupal. So I can't use xmlrpc() function. What is most simple method to call that ...
2
votes
4answers
814 views

Adding listener in Drupal Services API to handle XMLRPC request from Titanium Appcelerator

everyone. I'm a newbie in Drupal Services API. I figured out how to create an XMLRPC request and as far as I understood the data is posted using the HTTP POST request. Now, how do I handle it? Do I ...
1
vote
1answer
280 views

Use Drupal as a 'cloud system' frontend, what is your opinion?

I'm working on a small project where I need implement some kind of cloud architecture. I'd like to deploy multiple Drupal installs among multiple servers; one would act as a domain controller and ...
1
vote
1answer
131 views

Which criteria should I adopt when deciding to implement hook_xmlrpc() or supporting the Services module?

If I should decide between implementing hook_xmlrpc() and supporting the Services module, what should I consider on taking this decision?