-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Semantical Error #4
Comments
Hallo Mika, which Composer Version do you use? |
Hello jkahnt,
i use the
Composer version 1.6.5 2018-05-04 11:44:59
Thank you!
Yours Sincerely
Mika
Von: jkahnt <[email protected]>
Gesendet: Donnerstag, 21. Februar 2019 06:19
An: sveneisenschmidt/opentrans <[email protected]>
Cc: Maykil Kucin | EDV-Service Schmidt GmbH <[email protected]>; Author <[email protected]>
Betreff: Re: [sveneisenschmidt/opentrans] Semantical Error (#4)
Hallo Mika,
which Composer Version do you use?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#4 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AZ9O048y-m2nWzr7DNWFym5LyonaWmySks5vPixQgaJpZM4bFXLB>.
|
Hello Mika, is it possible to upgrade your composer Version to the current build. I had the same problem and with an upgrade of composer I was able to fix it. |
Dear jkahnt,
to update compose is not resolve the problem! I find a solution… , this helps:
https://stackoverflow.com/questions/25937261/autloading-not-working-correct-using-autoloader-php-in-vendor-directory
the use of this package is resolved all my problems:
https://github.com/indigophp/doctrine-annotation-autoload
THANK YOU!
Vielen Dank
Mit freundlichen Grüßen
Maykil Kucin
[cid:ESS_logo_HELLBLAU_neu_70a42483-f7ab-4e79-902f-326b9fd90f3b.png]
EDV-Service Schmidt GmbH | Weißhausstraße 21a | 50939 Köln
Zentrale: +49 (221) 936 456 -0 | Fax: +49 (221) 936 456 -20 | www-ess-koeln.de<http://www.ess-koeln.de/>
Durchwahl: +49 (221) 936 456-37 | Mobil: +49 (1578) 3364565 | [email protected]
Sitz der Gesellschaft ist Köln, HRB 35081
Geschäftsführung Dagmar Schmidt, Dipl.- Kfm. Stephan Schmidt
Diese Email enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese Email irrtümlich erhalten haben, informieren Sie uns bitte und vernichten Sie diese Email. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Email ist nicht gestattet. Diese Email wurde auf Viren überprüft. Dies garantiert aber keine Virenfreiheit. Wir übernehmen keine Haftung für eventuelle Schäden, die durch diese Email oder deren Anhänge entstehen können.
Von: jkahnt <[email protected]>
Gesendet: Freitag, 22. Februar 2019 14:11
An: sveneisenschmidt/opentrans <[email protected]>
Cc: Maykil Kucin | EDV-Service Schmidt GmbH <[email protected]>; Author <[email protected]>
Betreff: Re: [sveneisenschmidt/opentrans] Semantical Error (#4)
Hello Mika,
is it possible to upgrade your composer Version to the current build. I had the same problem and with an upgrade of composer I was able to fix it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#4 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AZ9O05ZogixCPogM4eZySb9GzeFb5d61ks5vP-xqgaJpZM4bFXLB>.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello Sven,
today i use your opentrans lib....
All things are working well, but when i want to serialize like in your example i get the following error:
Here is the code i use:
`<?php
use \SE\Component\OpenTrans;
//$serializer = \JMS\Serializer\SerializerBuilder::create()->build();
// Pick a factory to create your document (i.e. an Order)
$loader = new OpenTrans\NodeLoader();
$factory = new OpenTrans\DocumentFactory\OrderFactory($loader);
$builder = new OpenTrans\DocumentBuilder($factory);
$builder->build(); // bootstraps the default document structure
$document = $builder->getDocument();
// ... build your document
$document->getHeader()->getOrderInfo()->setOrderId('00000000001');
$orderLine1 = new OpenTrans\Node\Order\ItemNode();
$orderLine1->setLineId('P00000001');
$document->addItem($orderLine1);
//var_dump($document);
$xml = $builder->serialize(); //-> here i get the error!!!!
`
Thank you in advance for your support.
Yours sincereley
Mika
The text was updated successfully, but these errors were encountered: