The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
48 views

Manage connections in Aleph (clojure) based on metadata

I've written a very simple broadcast/echo server that uses web sockets with clojure and aleph. I spent a lot of time looking through the aleph and lamina sources to get a decent, basic understand ...
0
votes
3answers
71 views

Implement Broadcast receiver inside Service

I want to check internet connection through out the run time of my android application. I tried using services but seems like it is not the best option. is there any possible way for me to implement a ...
0
votes
0answers
100 views

SSIS 2012 Dynamic OLE DB ConnectionString using a parameter

I have a project which I will need to deploy to servers not in our network and thus will not know certain attributes such as the server and database names. So I set up a parameter in the ...
0
votes
1answer
19 views

Oracle connection manager

I am considering introducing Oracle Connection Manager into my network architecture. This should allow me to manage access of specific hosts to the database. Could experienced users say if Connection ...
0
votes
1answer
47 views

How to create activity for browse a url with onpause and onresume?

Can you please help me on this? How to create a activity which runs a url at oncreate method if Internet connection is available? I want to check Internet connection is available or not every 5 ...
0
votes
2answers
81 views

Entity Framework: Should I close the connection if I open it?

I am grabbing the underlying connection from my ObjectContext. I need to check the state of the connection and open it if necessary. I am wondering whether I need to close it or if this will be taken ...
0
votes
0answers
112 views

Properly shutting down ClientConnectionManager

In an android applicatin I am using a HttpClient with a ClientConnectionManager created like this: SchemeRegistry schemeRegistry = new SchemeRegistry(); schemeRegistry.register(new Scheme("http", ...
0
votes
1answer
94 views

windows mobile force dhcp renew

We have several Windows Mobile 6.5 device deployed and a few of them will occasionally lose the ability to connect to the Internet. I've been able to reproduce the issue by switching from Wi-Fi to 3G ...
0
votes
0answers
105 views

SQL Agent Step Succeeds But Log Shows Multiple Errors

I have an SSIS package where I set the ConnectionString to the ConnectionManager with Expressions by using a variable and /SET commandline parameter. This seems to work fine but I still get multiple ...
0
votes
1answer
135 views

Difference between ThreadSafeClientConnManager and SingleClientConnManager

I understand that ThreadSafeClientConnManager uses a connection pool and, when the client needs a connection, picks a connection from that one. SingleClientConnManager, instead, uses just one ...
1
vote
1answer
1k views

Overriding The SSIS Connection Manager ConnectionString During Run-Time

I have a SSIS package that I execute several times in parallel from different SQL Server Agent Jobs. I set the ConnectionString to the Connection Manager by using the command line parameter ...
0
votes
0answers
153 views

How to integrate punjab bosh connection manager with ejabberd xmpp server

I am using ejabberd as xmpp server and candy chat as client and apache as web server, it is working fine for me, and I want to use punjab as bosh connection manager for persistent connection. I ...
0
votes
0answers
203 views

how to release leased connection in httpclient PoolingClientConnectionManager

I run a crawler with httpclient. PoolingClientConnectionManager used in the process of crawling. I monitor the PoolStats with one monitor thread. And when my crawling website list is zero, and the ...
0
votes
0answers
74 views

How to make BIDS use DtsConn.dll 64 bit version?

I ma working on 64 bit windows 7 machine, I am using BIDS 2008 and want it's connection manager to use 64 bit version of library DtsConn.dll . Currently 32 bit version is getting used. I am having ...
2
votes
1answer
930 views

Network Data Packet connectivity intent

I am writing an Android application which can enable and disable the Network Data packet connection. I am also using one broadcast receiver to check the Network Data packet connection. I have ...
1
vote
1answer
168 views

Windows Mobile 6 CM provisioning explanation

We have a provisioning XML file that in the first line sets <nocharacteristic type="CM_ProxyEntries" /> However a need arose to expose one of the CM proxy entries, after largely trail and ...
1
vote
1answer
671 views

Hiding GPRS connection fail notifications on Windows Mobile 6 doesn't appear to be working

I'm adding Windows Mobile Connection Manager support to my .NET Compact Framework 3.5 application. I need to hide connection errors from the user, I've read the MSDN documentation and followed it to ...
0
votes
2answers
710 views

Passing ConnectionString from SqlConnectionSringBuilder to ConnectionManager

I want to get a ConnectionString from an instance of SqlConnectionStringBuilder as a String. This seems simple, and should be as easy as this: String conString = builder.ConnectionString; However ...
1
vote
2answers
869 views

How to check for phone network on Android devices

I know how to check if I have internet access (using the code from this post),but is it possible to check if a phone has telephone network access? For example someone might have access to the ...
0
votes
1answer
487 views

unable to install PunJab

I am unable to install PunJab on my system. PunJab is a HTTP jabber client interface. It is a BOSH connection manager that allows persistent client connections to a XMPP server. When I ...
1
vote
4answers
4k views

Configuring punjab to send xmpp requests to Openfire

I am trying to use the punjab connection manager with Openfire. I have an already running Openfire server. I have also installed punjab and the server starts properly, allowing me to navigate to the ...
1
vote
3answers
1k views

Windows Mobile: “My network card connects to” registry settings

Can anybody please tell me the registry setting(s) that are affected in Windows Mobile 6.1 when a user selects Start -> Settings -> Connections -> Wi-Fi and then changes the value of the "My network ...
0
votes
3answers
882 views

How to create dynamic number of output files with SSIS?

I will be creating flatfiles and based on the data in the batch, it might be necessary to split the data into an undetermined number of files. I can make the connection string dynamic with an ...
1
vote
1answer
919 views

Windows Mobile 6 intermitent connection problem NOPATHTODESTINATION

On a Windows Mobile 6 device we are trying to open an internet connection. This usually works but sometimes we get a return code of 0x80004005 with a status of CONNMGR_STATUS_NOPATHTODESTINATION. ...
2
votes
9answers
4k views

How do I use a different database connection for package configuration?

I have an SSIS Package that sets some variable data from a SQL Server Package Configuration Table. (Selecting the "Specify configuration setings directly" option) This works well when I'm using the ...
6
votes
5answers
16k views

How do I access Excel data source from an SSIS package deployed on a 64-bit server?

I have an SSIS package that exports data to a couple of Excel files for transfer to a third party. To get this to run as a scheduled job on a 64-bit server I understand that I need to set the step as ...