Re: Unable to reach Nabble site

2021-08-31 Thread John F. Berry
Thanks, Andrea, for the heads up. I had the same question.. It's a pity, it was a great place as a "source".If it is defunct, are we left now with only strict documentation sites, and not to see how people overcome technical struggles?Or is it we are waiting out some technical work to restore

Re: Help for my bachelor thesis

2020-06-09 Thread John F. Berry
Greetings Dennis,  No worries, your English is coming across fine. I've been in your shoes (still.. to be honest). Trying to understand Camel can seem like trying to drink from a firehose. What is it that you "don't get", exactly?  Is it a part of your development as you make it? the book? or

Re: CXF soap call complains of missing portType?

2019-11-15 Thread John F. Berry
... right? On Thursday, November 14, 2019, 4:51:57 PM EST, John F. Berry wrote: I have used the wsdl2java to generate my classes off of a vendor provided wsdl.Perhaps it is a malformed cxf endpoint.. but it currently is just complaining of the portType.the -impl is under extraargs

CXF soap call complains of missing portType?

2019-11-14 Thread John F. Berry
I have used the wsdl2java to generate my classes off of a vendor provided wsdl.Perhaps it is a malformed cxf endpoint.. but it currently is just complaining of the portType.the -impl is under extraargs in the plug in.. and no change to the error.. other than giving me hundreds of warnings about

Re: Problem with .transform(ack())

2019-11-14 Thread John F. Berry
That worked.  Thanks! On Thursday, November 14, 2019, 1:38:43 PM EST, WEIQUAN YUAN wrote: did you try inOnly option on seda on the first route? On Thu, Nov 14, 2019 at 12:36 PM John F. Berry wrote: > I have an HL7 listener that should be placing the inbound message onto a >

Problem with .transform(ack())

2019-11-14 Thread John F. Berry
I have an HL7 listener that should be placing the inbound message onto a seda message queue for a second route to proccess.If I run .from(mllp:).transform(ack()).to(seda:...) my second route that performs .from(seda:..).process(...).to(mock) gets the HL7 ack in the exchange, rather then

Re: Java DSL cxf SOAP call (client)..

2019-11-05 Thread John F. Berry
there is no Spring). Cheers, Dmitry -Original Message- From: John F. Berry [mailto:bohnje...@yahoo.com.INVALID] Sent: Monday, November 4, 2019 12:55 PM To: users@camel.apache.org Subject: Java DSL cxf SOAP call (client).. OK.. I've tried to google this to death to avoid asking someth

Java DSL cxf SOAP call (client)..

2019-11-04 Thread John F. Berry
OK.. I've tried to google this to death to avoid asking something so embarrassing.. but to no avail..So, without making eye contact with anyone here.. How do I construct a call using cxf and utilizing wsdl2java in Java DSL?  I've had a project that receives a message and decodes a base64

Re: mllp receiver of HL7.. Sender is sending simultaneous "conversations"

2019-01-07 Thread John F. Berry
> On Jan 4, 2019, at 10:06 AM, John F. Berry > wrote: > > > > Thanks Quinn, > > I've attempted to increase the consumers with the uri option of > maxConcurrentConsumers=15 > [from("mllp://0.0.0.0:9020?maxConcurrentConsumers=15")]  to see if there's a

Re: mllp receiver of HL7.. Sender is sending simultaneous "conversations"

2019-01-04 Thread John F. Berry
ages with camel-mllp, you’ll probably want to adjust the buffer sizes to handle them a little better. HTH > On Dec 28, 2018, at 9:41 AM, John F. Berry > wrote: > > It seems over the years that an understanding existed in client/server HL7 > interfaces that one client sends one

mllp receiver of HL7.. Sender is sending simultaneous "conversations"

2018-12-28 Thread John F. Berry
It seems over the years that an understanding existed in client/server HL7 interfaces that one client sends one message at a time to one port.  Any more and you're asking for trouble.  We moved an interface I have referenced here before recently off of our interface engine to a direct point to

[Solved] XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-13 Thread John F. Berry
Path tmpmove1 = Files.move    (Paths.get("MGH16557\\c$\\TWtoFUSvoice\\src\\data\\" + XMLFN),     Paths.get("MGH16557\\c$\\TWtoFUSvoice\\target\\messages\\others\\" + XMLFN));    }   } } On Thursday, December 13, 2018, 12:28:56 PM EST, John F. Berry

Re: XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-13 Thread John F. Berry
()] DefaultCamelContext    INFO  Apache Camel 2.23.0 (CamelContext: camel-1) started in 1.581 seconds On Thursday, December 13, 2018, 12:14:11 PM EST, John F. Berry wrote: OK.. I currently have it configured to read in the XML, pull the contained second filename, log it, but send

Re: XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-13 Thread John F. Berry
ds to be extracted via xpath. You can also just move that other file yourself, so when you have the file name extracted via xpath, then you can use a bit of java code to check if it exists, and if so then move this file, and let Camel move the xml file afterwards. Or you can move both of them m

Re: XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-13 Thread John F. Berry
ss); >    assertEquals("1", xpb.evaluate(context, xml)); > } > On Thu, Dec 13, 2018 at 2:58 PM John F. Berry > wrote: > > > >  Thank you Claus.. it's great to hear from you again.. > > I did see an example close to this on stackoverflow.. someone refer

Re: XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-13 Thread John F. Berry
  .to("file:target/messages/others"); >    } > } > > > Now I will need to not move the XML I'm consuming if the file named in > SOURCE_FILENAME doesn't yet exist, and go on to the other XML files in the > directory and come back to check this one. > I was going to use a choic

Re: XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-12 Thread John F. Berry
the other XML files in the directory and come back to check this one.  I was going to use a choice to perform both those moves in.. but struggling to check for the named SOURCE_FILENAME's existance. Suggestions? Thanks! On Monday, December 10, 2018, 3:10:09 PM EST, John F. Berry wrote:

XML file contains filename to be moved (with itself).. what packages should I use?

2018-12-10 Thread John F. Berry
Figured I'd try something new and ask for advice here first before hitting a brick wall and asking after I hit that dead end...I need to poll for XML files dumping into a specific NFS directory, read in the XML, find the "work" file generated by the task that generated the XML, and move both

Re: Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-10-23 Thread John F. Berry
.0)(!(version>=3.0.0)))] Are these dependencies supposed to be listed under the Felix plugin as export packages? On Monday, October 22, 2018, 9:32:22 PM EDT, Quinn Stevenson wrote: You’ll need to add HAPI to the container install mvn:ca.uhn.hapi/hapi-osgi-base/2.3 > On Oct 22, 20

Re: Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-10-22 Thread John F. Berry
I have added these to the POM... just in case that solved the Karaf issue.  No luck!   ca.uhn.hapi   hapi-base   2.1     ca.uhn.hapi     hapi-osgi-base     2.0 On Monday, October 22, 2018, 9:34:31 AM EDT, John F. Berry wrote: You've been so much help Quinn, thanks! I did

Re: Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-10-22 Thread John F. Berry
wrong when Blueprint tried to execute the definitions in your Blueprint XML file. > On Oct 17, 2018, at 8:53 AM, John F. Berry > wrote: > > Thanks Quinn for your advice and patience (and for the rest of the forum > members!) > > I did attempt to make the changes be

Re: Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-10-17 Thread John F. Berry
l had the Blueprint/XML version of the route, you could put the XML file into the deploy folder as well - Karaf would run it for you, and you wouldn’t have to package it in bundle (I have a few customers that do this in some cases). > On Sep 5, 2018, at 7:17 AM, John F. Berry wrote: > &g

[Solved] Consuming MLLP uri cannot be "seen" with localhost or 127.0.0.1 from external

2018-10-05 Thread John F. Berry
lly. Best regards Stephan -Original Message----- From: John F. Berry Sent: Donnerstag, 4. Oktober 2018 15:55 To: Users Subject: Consuming MLLP uri cannot be "seen" with localhost or 127.0.0.1 from external I have an external system sending HL7 messages via MLLP (I could use nett

Consuming MLLP uri cannot be "seen" with localhost or 127.0.0.1 from external

2018-10-04 Thread John F. Berry
I have an external system sending HL7 messages via MLLP (I could use netty) and if I specify localhost or 127.0.0.1 the external system says the port is not open.  If I use hostname, it works fine. from("mllp://HOSTNAME:") This works from("mllp://localhost:")  this doesn't (for

Re: Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-09-05 Thread John F. Berry
...@apache.org Le 05/09/2018 à 17:17, John F. Berry a écrit : > Thanks Quinn, > I haven't converted my jar at all.. I've only packaged my camel java DSL > project into an executable jar from maven. > So I think you're giving me step #2 of a process if I already converted my > jar to an

Re: Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-09-05 Thread John F. Berry
/xmlns/blueprint/v1.0.0;>     http://camel.apache.org/schema/blueprint;>         HTH > On Sep 4, 2018, at 10:10 AM, John F. Berry > wrote: > > I've posted a few questions over the past month about various steps in a > camel route.  I had developed both a Spring v

Established Java DSL route into Camel Spring OSGi container - for use with Kataf container

2018-09-04 Thread John F. Berry
I've posted a few questions over the past month about various steps in a camel route.  I had developed both a Spring version and a Java DSL version simultaneously at the beginning, because of either the lack or abundance of certain endpoint development in each.  The Java DSL version  worked out

[Solved] Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-08-09 Thread John F. Berry
). > On Aug 1, 2018, at 1:40 PM, John F. Berry wrote: > > > > Thank you! > > I do now get this error: > 2018-08-01 15:31:08,943 [105.13.206:] ERROR DefaultErrorHandler            > - Failed delivery for (MessageId: ID-MGH16557-1533151818778-0-6 on > ExchangeId:

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-08-01 Thread John F. Berry
to("psoft-sql:") On Wed, Aug 1, 2018 at 9:24 PM, Claus Ibsen wrote: > Hi > > You have set the datasource already on the sql component, so in your > Camel sql endpoint you should not have ?dataSource=# - that can be > removed > > On Wed, Aug 1, 2018 at 8:53 PM,

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-08-01 Thread John F. Berry
   ;     } } error is:  No bean could be found in the registry for: psoft-sql of type: javax.sql.DataSource On Tuesday, July 31, 2018, 2:04:32 PM EDT, John F. Berry wrote: Nevermind... found to import org.apache.camel.component.sql.SqlComponent On Tuesday, July 31,

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-31 Thread John F. Berry
Nevermind... found to import org.apache.camel.component.sql.SqlComponent On Tuesday, July 31, 2018, 1:27:58 PM EDT, John F. Berry wrote: Also, in compiling in maven, it doesn't find "SQLComponent".  Isn't that part of camel-sql?  or am I configuring a different entity?     On Tue

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-31 Thread John F. Berry
Also, in compiling in maven, it doesn't find "SQLComponent".  Isn't that part of camel-sql?  or am I configuring a different entity? On Tuesday, July 31, 2018, 12:29:49 PM EDT, John F. Berry wrote: Sorry, that was a bit of an incomplete thought: In another java IDE

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-31 Thread John F. Berry
driver?  I cannot find a writeup about it. On Tuesday, July 31, 2018, 12:17:09 PM EDT, John F. Berry wrote: Thanks again Quinn, What is the "derby" element in this solution?  I can't seem to find information in this in my searches. I'm trying to analyze the parameter string

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-31 Thread John F. Berry
w SqlComponent(); >  sqlComponent.setDataSource(basicDataSource); >  >  getContext().addComponent("my-sql", sqlComponent); >  >  from() >      ... > } > HTH > >> On Jul 30, 2018, at 9:45 AM, John F. Berry > <mailto:bohnje...@yahoo.com.INVALID>

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-30 Thread John F. Berry
, 2018 at 11:45 AM, John F. Berry wrote: > Thanks Quinn for the helping hand. > > I've been looking for examples of how to declare the servername/instance > name, username password to utilize a MS SQL endpoint.  Looking at the > Apache Camel: SQL Component page, it shows utilizin

Re: Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-30 Thread John F. Berry
0, 2018, 10:43:34 AM EDT, Quinn Stevenson wrote: >From my experience, I’ve always been able to to more with the Java DSL than >with Spring.  I think routes written using the Spring XML are easier to read >than routes written the Java DSL, but that’s just me. If you could post you’re

Java DSL route now needs a MS SQL .to( How do I declare connection info?

2018-07-30 Thread John F. Berry
I've been perusing ways to declare connection to a MS SQL server.  There are plenty of Spring examples.. but how about Java DSL?  I have been attempting to utilizing the JDBC endpoint provided though camel-sql.. but I cannot seem to either find documentation of how to place a configuration file

SOLVED: [Camel route help] HL7 listener, to parse body, to base64 decode, pdf to file on filesystem

2018-06-22 Thread John F. Berry
erser = new Terser(hapiMessage);   String obx5 = terser.get(“/OBX-5-5”);   String decoded = Base64.getDecoder().decode(obx5); } I know that the above probably won’t run (just made it up for the email) - but hopefully it give’s you an idea. > On Jun 19, 2018, at 8:06 AM, John F. Berry > wrote:

[Camel route help] HL7 listener, to parse body, to base64 decode, pdf to file on filesystem

2018-06-19 Thread John F. Berry
I appologize.. Newbie here to the open source/project world.  Long time programmer in other realms. I have a base64 encoded pdf that will be sent to me via HL7 in the OBX-5-5 field of this message body that I need to decode and create an actual pdf file on a filesystem.  I have tried various