BizTalk2013Beta WCF-WebHttp Adapter problems - adapter

I installed new version of BizTalk2013Beta.
When trying to add receive location or send port which use WCF-WebHttp adapter I get this error:
Object reference not set to an instance of an object. (Microsoft.BizTalk.Administration.SnapIn)
How to fix it?

Related

I get error "Failed to create /kylin. Please make sure the user has right to access /kylin" on starting kylin

Whole error is
Retrieving hadoop conf dir...
KYLIN_HOME is set to /data/kylin
Error: JAVA_HOME is not set and could not be found.
Failed to create /kylin. Please make sure the user has right to access /kylin
I have set JAVA Home and path too but it still doesn't work
check the value of entry kylin.env.hdfs-working-dir in your $KYLIN_HOME/conf/kylin.properties file (by default it's /kylin as is shown by your error message), and check whether you have access to this directory on hdfs.

How to set Password property of oledb connection in SSIS package

I am new to SSIS, here is the issue I am facing.
1) Created an OLEDB connection to connect to database. Storing the Connection String in SSIS variable and have added expression to Connection Manager to pick the connection string according to environment.
2) Have used Windows Authentication to connect to database, so that no need to provide user ID and Password. In development environment it worked perfectly fine. But when moved to testing environment, its failing with Error "SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "REGEDB" failed with error code 0xC0202009"
3) Using SQL Server Configuration to deploy the package. But getting error Failed to load at least one of the configuration entries for the package. Check configuration entries for "CBPSSIS" and previous warnings to see descriptions of which configuration failed.
Below is the Connection String
Data Source=abcd\ISQLQ02;Initial Catalog=DRIP;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;
COuld you please let me know how to set Password property? I tired in Script file but its not working. Thank you
ConnectionManager OldedbConn;
OldedbConn = Dts.Connections["QAREGE"]; Dts.Connections["QAREGE"].Properties["ServerName"].SetValue(OldedbConn, Dts.Variables["User::dbServerName"].Value); Dts.Connections["QAREGE"].Properties["InitialCatalog"].SetValue(OldedbConn, Dts.Variables["User::dbCatalog"].Value); Dts.Connections["QAREGE"].Properties["UserName"].SetValue(OldedbConn, Dts.Variables["User::dbUserID"].Value); Dts.Connections["QAREGE"].Properties["Password"].SetValue(OldedbConn, Dts.Variables["User::dbPwd"].Value);
Since you are using ssis-2008 you can create a ssis configFile with .dtsConfig format with xml configuration file type. Include all your Database connection string in the config file. So when you moved your ssis package to another server you just need to edit the config file and set your connection based on your target server.

Binding Ethereum node into a Rails app, get 'JSON::ParserError: 776'

I'm new to the field, I'm trying ethereum-ruby to bind Ethereum node into a Rails app.
I have a node running APIs via IPC like
geth --ipcapi "admin,eth,debug,miner,net,shh,txpool,personal,web3"
and in Rails console I can do
client = Ethereum::IpcClient.new("#{ENV['HOME']}/.ethereum/geth.ipc")
but when I try puts client.coinbase["result"] I get and error:
JSON::ParserError: 776: unexpected token at '{"jsonrpc":"2.0","error":{"code":-32600,"message":"EOF"}}
Most likely the call to node resulted in error (no coinbase set?) and therefore there is no "result" field, only "error".
You can also check the other ruby ethereum library ethereum.rb. It was designed to be easy to use for the programmer.

Rancher imageUuid not Unique

While adding a service i forgot to add a part in the url, should be xxx/yyy/zzz but input xxx/zzz.
After stopping the stack and trying to correct the error i get the following error:
Validation failed in API: imageUuid
I've tried removing all stacks and reinserting the service. It however won't add it again and i've found no way to remove it from the server.
Think this is a bug, i'm using a private repository, so the address is:
private.dns.name:8080/project/tools/toola
This is not supported by Rancher, the following does work:
private.dns.name:8080/tools/toola

Windows Service Starts then Stops

I have a Windows Service that I inherited from a departed developer. The Windows Service is running just fine in the QA environment. When I install the service and run it locally, I receive this error:
Service cannot be started. System.InvalidOperationException: The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly.
Here is the code:
ExternalDataExchangeService exchangeService = new ExternalDataExchangeService();
workflowRuntime.AddService(exchangeService);
workflowRuntime.AddService(new SqlTrackingService(AppContext.SqlConnectionImportLog));
ChallengerWorkflowService challengerWorkflowService = new ChallengerWorkflowService();
challengerWorkflowService.SendDataEvent += new EventHandler<SendDataEventArgs>(challengerWorkflowService_SendDataEvent);
workflowRuntime.AddService(challengerWorkflowService);
workflowRuntime.StartRuntime(); <---- Exception is thrown here.
Check for installer code. Often you will find counters are created within an installation (which is going to of been run under admin privledges on client site) and the code then uses them as though they exist - but will not try create them because they do not expect to have the permissions.
If you just get the source and then try run it, the counters / counter classes do not exist so you fall over immediately. (Alternatively check whether the counter exists / you have local admin if they wrote the code to create it in the service.)
Seen it before so mentioned it.
Attach Debugger and break on InvalidOperationException (first-chance, i.e. when thrown)?

Resources