Chris

Results 15 comments of Chris

I haven't really tested checking multiple shipment numbers, but i think this should work... have you tried looking at the xml again? does it look weird or different than what...

Allright. I guess the implementation i did in the lib is wrong for that then. Does it work if you just seperate it with semicolons?

Hello @Flaschenzug you are using the wrong Client. The Client class is actually deprecated and will be removed soon. Its just there for compatibility. It is the old class that...

Hello, You're trying to create a response, but this class shouldn't be instantiated by you. This is the object for the... well response from dhl. You need to use the...

Thats odd... However i don't really know what could cause this just with this information... Could be a bug actually. Could you please copy the string you get if you...

What PHP Version are you using? And what version of this library?

Another way to get the xml request beforehand is doing this: use ChristophSchaeffer\Dhl\BusinessShipping\Utility\XmlParser; XmlParser::buildXmlRequest($request);

Yes the empty ones will be removed before sending the request

All i can think of now is debugging it step by step to be honest. Try to copy those functions and look at the var_dump outputs one by one maybe...

It's kind of weird if it really is the problem, but could you try to change the line 54 in ChristophSchaeffer\Dhl\BusinessShipping\Protocol\Rest::callRestFunction? `$url .= '?xml='.rawurlencode($xml);` to `$url .= '?xml='.$xml;` and just...