Bulding first app in Adobe livecycle - livecycle

hi i just installed workbech and livecycle server.i have to create an app in livecycle.
when i goto file >New >Application
a dialog appears in which have to fill
username,
password ,
Log onto
what should e the value of all these three field so that i will able to create an app on live cycle.
can any one please help .i am new to livecycle didn't create any app please help from where i will get these values!!

Adobe's LiveCycle workbench connects directly to a LiveCycle server and the application is saved and deployed on the LiveCycle server itself.
You will have to enter the username and password associated with the server you are connecting to. You will also have to specify the hostname/IP address of the server to allow Workbench to connect and authenticate your credentials against the server. More details can be found in the Adobe help Documentation.
Hope this helps. Let me know if you have any other questions.
Thanks,
Armaghan.

Related

SSRS In WPF-How to avoid giving each indivdual user permissions to access report in client WPF application?

We had a web forms applications deployed in IIS with SSRS reports in a different servers .We used to give full permissions In report server for the system where our code was deployed and things were working fine. Now we are re writing the same code to client WPF applications ,since code is downloaded to individual client PC ,we are get an error "the permissions granted for this User is not enough" .So now do I have to give each individual user who is using WPF application access in reporting server? Is there any way to impersonate an id ?or any better solution to this problem?
Give 1 user access in SSRS for the folders of datasource,datsets and the reports folder .
Then in c# where you interact with the report at the starting of the function use these two lines and then do all your other functionality related to reports .
NetworkCredential reportCredentials = new NetworkCredential("username", "password", "domain");
rptReportViewer.ServerReport.ReportServerCredentials.NetworkCredentials = reportCredentials;

Is there a way to export a sql server database from a windows form app to a web app in visual studio?

i'm working on a vb application that uses a sql server database in a desktop module(windows form) which is supposed to export this database to a web application(in vb.net).
so my question is : is there a way i can export this database from my desktop app to the web app and vice versa(from the web abck to the desktop app)
thnx in advance
Most Database servers have the possibility to Replicate their Database even over the Internet. That would be the simplest solution and you can find some very good articles. If you have differnet Databases types, this can be tricky or even impossible.
Second possibility: make a database dump, ftp the dump to your server, and the a program imports that dump. You must read if the "Web database" cann import that dump
Otherwise you have to have a server component that can Receive Data from your windos app and save that in the "Web Database".
Your windws Program is the client who opens a connection to the web app, opens the dDatabse and sends the database, for example as sql statement text to the wep app.
The cpnnection should be encrypted, and your wep app as server also shold include a login procedure, with very good passwort. You know that every Ip gets scanned permanently.
for such client server combination, you will find also lots of examples.
Good luck

MSSQL Single user mode block

I am a web design so I dont understand almost nothing of servers and stuff.
I was working with MSSQL Server and ASP.NET to create a form that save its information in a database. But it was failing because my account in MSSQL was asking "Please change your password" because it had a "Enforce password expiration". I needed the "sa" account password to change it (I was using SQL Authentication) but I didnt know about the "sa" password.
I searched in Internet and I found out about "single user mode". I added the "-m" to the startup parameters but I am so stupid that I forgot about stop sql agent.
Result? I cant use MSSQL now. Neither with administration account. Is there any way to solve this problem?
I am so sorry about this and thanks so much to who try to help me. :)
Did you add this via configuration manager? You should be able to just edit the startup parameters again and restart the service, and it should come back online in multi user mode.
Edit: Just checked and this definitely works.
Launch SQL Server Configuration Manager
Right click your SQL Instance > Properties
On the Startup Parameters tab, remove the -m flag youve added
Click OK, OK to apply
Right click the service and click restart
You will be back in multi user mode.

how to tell if oracle database is installed on pc

i work for a company as java developer, they gave me laptop that was previously used by another person, to test my java application i need to have oracle on laptop and create some sample database with sample data. when I got the laptop i found that there is oracle installed on it, but i don't know if this is only oracle client or full oracle installation (server + client)
please can you tell me how to figure out if there is only oracle client on laptop or full database installation, plus i need to know if there is some default username and password so that i can access the database and create schema and tables in it, so that i can test my java application.
i thinking to see DBA but i thought of dropping a question here first, maybe i can solve the problem by myself
If it is an Oracle Client, it doesn't have bin/dbca
Oracle Home may indicate the installation's type. The default Oracle Home folder names are:
Oracle Database: dbhome_1
Oracle Client: client_1
Although to make sure, you should check the services looking for OracleServiceSID entry on Windows.
Run Command sqlplus on command prompt.
Check services of windows to know that the oracle database was installed on laptop or not.
Try to find oracle universal installer in all programs by this also you can get which version of database is installed.
Your second question is about default username/password
For this you can give username : "/ as sysdba".
It will not ask for password because it will authenticate thorugh OS authentication.
after login you can able to create new schema or user and tables.
You can check simply using command prompt. Open command prompt and type connect. Provide the username and password and press Enter. It will show "connected" if the database is in your system.
Username: system (default)
Password: (what you provided while installing)
Firstly goto my computer/ this pc and then click on
downloads option and see your app and check that Oracle
is available there or not.

Directly connecting to working default AspNetSqlProvider Database in App_Data? It's not visible

Working on a project for myself doing OpenID integration with a simple MVC3 RC2 webapp.
I'm using AspNetSqlProvider as the provider, and asp.net configuration can see / modify the database (add users / roles, etc.)
My next step was to add a table to the DB to store userIDs to OpenIDs.
However, I cannot see the database under the App_Data folder in my solution. Previously with ASP.NET / VS 2010 I thought I remembered being able to click on the DB file under that directory in my solution to connect to it.
Does anyone have an idea why it is there and works and yet I'm unable to see it in my VS solution?
Thanks in advance for any help you can give!

Resources