Join wMUsers | Blog at wMUsers | Edit my wMUsers Profile | Site Map | webMethods Jobs |For Employers

wMUsers  

Go Back   wMUsers > Search Forums

Showing results 1 to 25 of 500
Search took 0.07 seconds.
Search: Posts Made By: reamon
Forum: Managing webMethods Integration Server Today, 08:24
Replies: 4
Views: 30
Posted By reamon
I also strongly encourage the use of Deployer. ...

I also strongly encourage the use of Deployer.

I'd also recommend deploying full packages not partials, along with using the version property of the package to know what has been deployed to each...
Forum: Flow and Java services Yesterday, 15:29
Replies: 5
Views: 106
Posted By reamon
Only if the subscribers are trying to write to...

Only if the subscribers are trying to write to the same file--which should never be the case. One subscriber, one target file.


Which is necessary in any case, correct? It is unlikely that a...
Forum: Flow and Java services 09-01-2010, 17:29
Replies: 2
Views: 46
Posted By reamon
You're not putting the data[] into the pipeline....

You're not putting the data[] into the pipeline. Need to add

IDataUtil.put(pipelineCursor, "datalist", data);
pipelineCursor.destroy();
Forum: JDBC Adapter 09-01-2010, 16:50
Replies: 3
Views: 46
Posted By reamon
What database are you using? DB2 provides a...

What database are you using?

DB2 provides a SELECT FROM INSERT construct that does what you're looking for.

Oracle has PL/SQL that could be used in a stored proc that can use INSERT...RETURNING...
Forum: Flow and Java services 09-01-2010, 10:16
Replies: 1
Views: 44
Posted By reamon
What would the resulting XML look like? The...

What would the resulting XML look like? The question is a bit vague sort of like asking how to convert a Word document to a database. We'll need a bit more detail.
Forum: webMethods EDI 09-01-2010, 10:12
Replies: 47
Views: 938
Posted By reamon
The out-of-the-box default charset is UTF-8. But...

The out-of-the-box default charset is UTF-8. But that can be changed. I've seen at least one installation that changed it to ISO-8859-1 to make bytesToString/stringToBytes service calls easier by not...
Forum: webMethods EDI 09-01-2010, 09:54
Replies: 47
Views: 938
Posted By reamon
It is not replacing anything. As we've discussed...

It is not replacing anything. As we've discussed in our email exchanges, it is a display concern only. The character used for the delimiter in ISO-8859-1 is simply a non-printable character, and is...
Forum: SOA Service Development (Web Services, SOAP and WSDL) 08-31-2010, 11:40
Replies: 1
Views: 48
Posted By reamon
Is none of the wM documentation on this topic...

Is none of the wM documentation on this topic helpful?
Forum: JDBC Adapter 08-31-2010, 10:48
Replies: 6
Views: 59
Posted By reamon
All that said, it may be easier to pass a string...

All that said, it may be easier to pass a string with the appropriate date/time format and let the DB worry about the parsing. The key is in configuring the adapter service to pass the string to the...
Forum: JDBC Adapter 08-31-2010, 10:26
Replies: 6
Views: 59
Posted By reamon
There is absolutely no need to use a Java service...

There is absolutely no need to use a Java service for this formatting. Use pub.date:dateTimeFormat

But I have to wonder why that specific format is necessary? Is that the default format of the DB?...
Forum: Flow and Java services 08-31-2010, 09:21
Replies: 5
Views: 80
Posted By reamon
Do your records have an identifier? If not and...

Do your records have an identifier? If not and you plan to use a default record definition, you'll need to define a dictionary holding the record definition.
Forum: Modeler / Designer / Process Engine 08-30-2010, 12:58
Replies: 7
Views: 53
Posted By reamon
Yes, that was the gist of my suggestion. If the...

Yes, that was the gist of my suggestion. If the steps in the process involve async interactions, then async receives and correlations are the way to go.

The "wait X period of time and continue"...
Forum: Modeler / Designer / Process Engine 08-30-2010, 11:12
Replies: 7
Views: 53
Posted By reamon
Is there a way to have the other system...

Is there a way to have the other system notify/call when it's done? That would seem more reliable than waiting for a period of time, which can be risky when the other system is under load and takes...
Forum: Modeler / Designer / Process Engine 08-30-2010, 09:54
Replies: 7
Views: 53
Posted By reamon
What is driving the use of a delay? Perhaps...

What is driving the use of a delay? Perhaps another approach is workable--can you provide additional detail?
Forum: Flow and Java services 08-28-2010, 12:47
Replies: 5
Views: 106
Posted By reamon
Thanks for the additional information. There...

Thanks for the additional information.

There are a couple of strategies that can be followed to work with large files yet be memory/process efficient.

Option 1:
Publish individual records from...
Forum: Flow and Java services 08-27-2010, 13:30
Replies: 3
Views: 82
Posted By reamon
One way is to use a regex in the child step. For...

One way is to use a regex in the child step. For example, if you want to take specific action when a field starts with "ABC" then you can do the following:

BRANCH on 'myDoc/myVar'
/^ABC/:...
Forum: Flow and Java services 08-27-2010, 10:41
Replies: 5
Views: 106
Posted By reamon
Using iteration, only top level elements will be...

Using iteration, only top level elements will be retained in memory.


ffvalues will be dropped when your FLOW drops it. The iterator manages the amount of source data kept in memory.


Yes,...
Forum: Protocol and Transport 08-27-2010, 10:30
Replies: 3
Views: 84
Posted By reamon
My guess is the issue is with the test service...

My guess is the issue is with the test service that is doing the HTTP post, not with the service being invoked. Can you provide details of the service doing the pub.client:http call?
Forum: Flow and Java services 08-26-2010, 09:05
Replies: 3
Views: 108
Posted By reamon
Ah, I see. Thanks for the clarification. ...

Ah, I see. Thanks for the clarification.

Yes, an input variable of type Object is the right type to use.
Forum: SOA Service Development (Web Services, SOAP and WSDL) 08-25-2010, 12:19
Replies: 7
Views: 114
Posted By reamon
Can you elaborate on "not working?" Do you mean...

Can you elaborate on "not working?" Do you mean you get an error during an import of the WSDL?
Forum: Flow and Java services 08-24-2010, 11:06
Replies: 3
Views: 82
Posted By reamon
You can disable service locking. There is a...

You can disable service locking. There is a property for doing that, but I don't recall its name. The Administrator's Guide should list it.

You can also make the files read-only at the OS level,...
Forum: Flow and Java services 08-24-2010, 11:04
Replies: 9
Views: 200
Posted By reamon
What is the concern/issue with using the typical...

What is the concern/issue with using the typical SEQUENCE structure?
Forum: Trading Networks 08-24-2010, 11:01
Replies: 1
Views: 47
Posted By reamon
You'll need to create your own service. I'd...

You'll need to create your own service. I'd recommend a custom delivery service and register it with TN. Doing so is pretty straight-forward.
Forum: Flow and Java services 08-20-2010, 11:54
Replies: 1
Views: 67
Posted By reamon
A flat file schema and the flat file services...

A flat file schema and the flat file services might be able to assist with some parts of this but my thinking is it would be simpler to create your own custom services to handle this type of parsing....
Forum: Modeler / Designer / Process Engine 08-20-2010, 09:16
Replies: 2
Views: 81
Posted By reamon
Service retries are executed only when the...

Service retries are executed only when the service is the top-level service. When run as a process step, it is not the top-level service. The process development docs indicate, as you mention, that...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -6. The time now is 09:57.


.
All Content Copyright ©2002-2009, Conneva, Inc. DBA wMUsers.Com

wMUsers is an independent organization and is not sponsored in any manner by Software AG or webMethods, Inc.

Page generated in 0.11063 seconds with 12 queries