I installed a WebSphere Portal 8 and in this installation
I have one server as http server,
one server for Domino server as LDAP
one server for Portal 8.
Now the Portal URL is ibmhttp.XXX.com and I need to change it to w3.XXX.com
Can anybody help me how to do it? Is it simply changing the computer name hosting the web server to w3?
Thanks in advance.
you should reference http://www-01.ibm.com/support/docview.wss?uid=swg21569040
it discusses the changing of your WebSphere Portal name.
if you want to add a subportal at a URL, that's different and documented in the Portal 8 Infocenter http://www-10.lotus.com/ldd/portalwiki.nsf/xpDocViewer.xsp?lookupName=IBM+WebSphere+Portal+8+Product+Documentation#action=openDocument&res_title=Human_readable_URL_mappings_for_virtual_portals_wp8&content=pdcontent
Related
I have a client that needs to connect his website to the Quickbooks Desktop POS 18.0. I Downloaded the Quickbooks webconnector, but the latest version gives an error and says I need quickbooks 2015 or later, so I downloaded the 2.1.0.30 version and was able to install it on the machine.
I then used the following php application https://github.com/consolibyte/quickbooks-php. I installed it on my server, got the ssl certificate and everything needed for security. I'm only using it for tests now, but the problem is that when I generate the .qwc file and use it on the web connector I get the following error: Error QBWC1048: QuickBooks Web Connector Could not verify the web application server certificate.
The domain I use is https://filcp.com/
Here is the certificate for the server
This is how my qwc file looks like
<?xml version="1.0"?>
<QBWCXML>
<AppName>My QuickBooks SOAP Server</AppName>
<AppID></AppID>
<AppURL>https://filcp.com/QuickBooks/SOAP/Server.php</AppURL>
<AppDescription>An example QuickBooks SOAP Server</AppDescription>
<AppSupport>https://filcp.com</AppSupport>
<UserName>userName</UserName>
<OwnerID>{57F3JK78-86F1-4FCC-B1FF-9H64VB813D20}</OwnerID>
<FileID>{57F3JK78-86F1-4FCC-B1FF-9H64VB813D20}</FileID>
<QBType>QBPOS</QBType>
<Notify>false</Notify>
<Scheduler>
<RunEveryNMinutes>10</RunEveryNMinutes>
</Scheduler>
<IsReadOnly>false</IsReadOnly>
</QBWCXML>
I followed many tutorials about configuring ie and all, but nothing has worked so far. I can access the application through ie, but I still get that error on the web connector.
Can someone help me to figure out what may be causing it and if there is any other way that I can connect the client's website to Quickbooks POS?
If you visit the URL you're referencing in the .QWC file:
https://filcp.com/QuickBooks/SOAP/Server.php
You can clearly see that you're getting back a response of:
500 Internal Server Error
Your code is broken. Fix your code. If you need further hope, post your code so we can help you. Also, post your logs from the Web Connector (hit the View Log button).
After installing BPM 8.5.5, I could see process portal page loading the below way:
enter image description here
Tried both the http and https protocol. Need suggestions...
Use FQDN (fully qualified domain name) instead of "localhost" in the URL and it should work. E.g. use the hostname of the BPM server that was used during the IBM BPM installation.
If not, then perform verification of Process Portal using the instructions from this link and post screenshot(s) of what you see -
https://www.ibm.com/support/knowledgecenter/en/SSFTBX_8.5.6/com.ibm.wbpm.imuc.doc/topics/tcfg_process_portal_verify.html
i have tried to deploys the MVC Application in IIS Server (Windows 7 Ultimate (32 bit)) i have configured my web site in localhost:81 is perfectly working. when i have use my computer name : 81 (Server-PC:81) is showing Service Unavailable HTTP Error 503. I have entered the same url (http://Server-PC:81) in network connected System is showing Web page as not found
Please notify me if i have missed any setting such as firewall etc in my pc or any other step i need to do. thanks in advance.
I have a rails application running on nginx + unicorn and I want that users can login in with their Active Directory crendentials. I've already implemented connecting to AD server and authenticating users, but they need to enter passwords.
Is it possible to somehow get this information on this setup? I've found some topics about this problems, but they don't quite explain how to solve this problem and most of the answers are for IIS sever.
I know that it propably can work only in Internet Explorer.
Signing in automatically is handled by the web server, not your application. Since you are using nginx, there are a couple of third party modules you can use, such as spnego-http-auth-nginx-module or nginx-mod-auth-kerb. IIS has support built-in, of course.
Once you've set up the web server, your application can retrieve the user's username from the REMOTE_USER environment variable. Internet Explorer will automatically log in; Firefox and Chrome will do so if they have been configured for the domain by the system administrator, but this is off by default.
I am running IIS 8 on a Windows 8.1 home premium machine. I'm trying to publish for my home network an MVC application that logs in to SQL Server (2012 Developer Edition) on the same machine.The SQL Server is set up to use Windows Authentication.
The published (to the local file system) MVC application works fine when used from Visual Studio 2013. When ran via IIS, it connects to the home page, but crashes the moment data is accessed with the message "Login failed for user 'WORKGROUP[my home machine]"
Can I get there from here? After research, I see that I cannot set the Authentication for IIS to Windows Authentication for a Home Premium machine (option is not there, only Anonymous, ASP.NET Impersonation and Forms Authentication are there and I could make none work). So what should I do? Change authentication on SQL Server? It should be so easy--both Web and Sql Servers are on the same machine! Any/all ideas very welcome!
Well, first off, there's no such thing as Windows 8 or Windows 8.1 Home Premium. There is only Windows 8.1 and Windows 8.1 Pro. The Home and Home Premium version names were dropped after Windows 7. Additionally, the IIS in Windows 8 does not have the same limitations that were present in earlier versions of IIS, although you still can't connect to a domain. You need 8.x Pro for that.
So, your problem here is that, by default, IIS uses the computer name (including Workgroup or Domain) to login to Sql Server when using Windows Authentication and Integrated security. All you have to do is add your computer to the authorized users for the database.
Simply go into SQL Server Management Studio, open up the server, go to Security->Logins and add the machine, then go to the database and add the newly created machine account to the database.
Ok , you need just add Authencitcated user ( if both IIS and sql server are on same Computer ) , ( NetworkService if they aren't on same Computer ) to database login .