Hi, It seems that server uses another encoding then your client app. Client writes database name to the network but server reads with other encoding.
Try following, add -Dfile.encoding=ISO8859-1 parameter to server and client JVM. You can add this parameter to OrientDb server in server.sh Best regards, Artem Orobets *Orient Technologies the Company behind OrientDB* 2014-02-12 13:47 GMT+02:00 Dante <[email protected]>: > Hi Artem, > > I downloaded the Multiplatform binary for OrientDB 1.6.3 version. I faced > some problems in extracting it into a proper format first, since > conventional methods won't work on USS(on z/OS). I did that using pax > utility and it somehow extracted the product but the xml files (like > orientdb-server-config.xml) had a tag ^M attached to it wherever a new-line > character is there. Then I did some manipulation to remove those and > changed the xml encoding to ISO-1047(EBCDIC), and it finally ran(without > the encoding, it throws JAXBMarshaller exceptions). But when I accessed the > database using the following line in my Java Code. > > new OrientGraph("remote:<myserver>/GratefulDeadConcerts", "admin", > "admin"); > > It throws a long list of exceptions and the root of it is not being able > to find the above database with a changed text, > > Caused by: > com.orientechnologies.orient.core.exception.OConfigurationException: > Database 'åÊ/ÈÁÃÍ%àÁ/Àä?>ÄÁÊÈË' is not configured on server > > Same is observed if it is a JDBC connection. I am new to USS so I am not > at all sure what is happening. Even the Web-UI is giving response but it > gives junk characters on the page if the server is running. This is some > sort of encoding issue I think. Will building the JNA for z/OS resolve this > error? > > Thanks, > Dante > > On Tuesday, 11 February 2014 19:59:53 UTC+5:30, Artem Orobets wrote: > >> Hi, >> >> z/OS is supported platform by OrientDB. The only inconvenience that there >> is no JNA distribution for this os, so you should build them by yourself >> from sources >> (https://github.com/twall/jna<https://www.google.com/url?q=https%3A%2F%2Fgithub.com%2Ftwall%2Fjna&sa=D&sntz=1&usg=AFQjCNEvsae_ZnZ6xpTlIs_li7Z10Z4ASg> >> ). >> >> >> >> Best regards, >> Artem Orobets >> >> *Orient Technologies the Company behind OrientDB* >> >> >> 2014-02-11 15:12 GMT+02:00 Dante <[email protected]>: >> >>> Hi, >>> >>> If it runs, then how to handle the EBCDIC to UTF-8 or vice-versa >>> encodings? >>> >>> Thanks, >>> Dante >>> >>> -- >>> >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "OrientDB" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >> >> -- > > --- > You received this message because you are subscribed to the Google Groups > "OrientDB" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
