Giter Site home page Giter Site logo

Null => Nill value about phpxmlrpc HOT 6 CLOSED

HMAZonderland avatar HMAZonderland commented on July 30, 2024
Null => Nill value

from phpxmlrpc.

Comments (6)

HMAZonderland avatar HMAZonderland commented on July 30, 2024

My bad, I guess overlooked something. I had to set PhpXmlRpc::$xmlrpc_null_extension = true

from phpxmlrpc.

gggeek avatar gggeek commented on July 30, 2024

yup :-)

from phpxmlrpc.

gggeek avatar gggeek commented on July 30, 2024

Side note: any feedback on the php53 branch? Things you'd like to see added or changed?

from phpxmlrpc.

HMAZonderland avatar HMAZonderland commented on July 30, 2024

Well I have to say using this branch feels better. I do have to change ALOT of code to be compatible with this, but its for a better cause.

I did find something weird tho. It seems as if the php53 branch RPC => function map is much stricter. I have to add that I did write a class on top of the Server class to parse a token I send with each call.

This used to work (please note, there is a double entry in the signature. I just discovered this as a bug)

'Article.ArticleCount' => array(
    'class' => 'Wiq_ArticleController',
    'function' => 'Article_ArticleCount',
    'signature' => array(
        array($xmlrpcArray, $xmlrpcString, $xmlrpcInt, $xmlrpcInt),
        array($xmlrpcArray, $xmlrpcString, $xmlrpcNull, $xmlrpcNull),
        array($xmlrpcArray, $xmlrpcString, $xmlrpcNull, $xmlrpcInt),
        array($xmlrpcArray, $xmlrpcString, $xmlrpcNull, $xmlrpcInt)
    ),
    'docstring' => '[token] [active] [public]',
    'cache' => true
),

Updating to this (please note, bug still there):

'Article.ArticleCount' => array(
    'class' => 'Wiq_ArticleController',
    'function' => 'Article_ArticleCount',
    'signature' => array(
        array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcInt, Value::$xmlrpcInt),
        array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcNull, Value::$xmlrpcNull),
        array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcNull, Value::$xmlrpcInt),
        array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcNull, Value::$xmlrpcInt)
    ),
    'docstring' => '[token] [active] [public]',
    'cache' => true
),

Now the Server responded with Incorrect signature when sending: Article.ArticleCount('token', 1, null)

ps: I did correct the bug by now. ;-)

from phpxmlrpc.

gggeek avatar gggeek commented on July 30, 2024

Interesting use case - I do not think there's any scenario in the test suite which uses xmlrpc null values.
I will try to look over it in the weekend (no promise given though).
Otoh: what about not sending a value at all when it is NULL?
eg:
'signature' => array( array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcInt), array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcInt, Value::$xmlrpcInt), array(Value::$xmlrpcArray, Value::$xmlrpcString, Value::$xmlrpcNull, Value::$xmlrpcInt), ),

pps: if you don't wanna go over changing your code, there's still the compatibility layer available...

from phpxmlrpc.

HMAZonderland avatar HMAZonderland commented on July 30, 2024

I wanted to update the code, its time to do some refactoring etc. And it helps to find old bugs.

I do need the null value. For instance counting articles that are public(1) or not-public(0) or where this status does not matter, null

from phpxmlrpc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.