Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
232 views

What is the simplest way to interact between a SAP OMS and Websphere Commerce?

Would it be using a Websphere Adaptor for SAP or webmethods or something else?? Does something else need to be considered while opting for one of these??? The final system needs to be synchronous ...
2
votes
1answer
139 views

STL: calling bind2nd with ptr_fun for “const T &” types

Calling std::count_if(vec.begin(), vec.end(), std::bind2nd(std::ptr_fun(foo), 17)) works fine with bool foo(int, int), but I can't make it work with bool foo(const int &, const int &) ...
1
vote
1answer
28 views

BizTalk NSoftware SFTP - Read first file only when second file received

I have a scenario where client drop an XML and a .FINISHED file. Client create the .FINISHED file once it’s finishes writing XML file. Both file have same name. As you can see, I can’t start reading ...
1
vote
2answers
259 views

Don't want to JSON serialize the whole list of classes

I've got a IList of Sites in my application and Site has a large amount of properties. I'm wanting to convert this list to JSON to be used in a dropdownlist similar to this var sites = ...
0
votes
0answers
23 views

Is it possible in openadaptor bean to specify the exception type?

From tutorial example: <bean id="Pipeline" class="org.openadaptor.core.router.Pipeline"> <property name="processors"> <list> <ref bean="Servlet"/> <ref ...
0
votes
4answers
50 views

ListView items are not clickable. why?

I have a ListView that uses a customized adapter, but I can't click on the ListView Item .. Activity for list view .. package com.adhamenaya.projects; import java.util.ArrayList; import ...
0
votes
1answer
98 views

Network Adaptro configured with ip address or not? How to check using vc++/Windows api?

Hi Could any one share about Network Adaptor configured with ip address or not eithor using dhcp or manual. How to check using vc++/Windows api?
0
votes
1answer
696 views

Simple Hello World Zend frameworks for PHP Script Required

According to Phpinfo Zend is installed (Zend Engine v2.1.0) . How ever when I call zend database commands they are swallowed without response or error message. (The script has been tested on my local ...
0
votes
3answers
313 views

BizTalk : Removing “spam” messages on receive location using File adaptor

My customer sometimes receives "spam" messages on their BizTalk file drop locations i.e files not of the type expected by the receive location filter eg a .doc instead of a .xls. The file adaptor does ...
-2
votes
1answer
58 views

how to implement filter in listview with custom array adaptor?

I have went through other similar questions, but I'm unable to find a solution. I want to make my custom array adapter filterable, when user presses a key sequence. I'm new at it. Please let me know ...