IP address query

What is the IP address of the Adobe web server as I want to repoint the domain name of my website from BT to the new live site I have uploaded from Muse to Business Catalyst

Hi,
This depends on which datacenter your site is hosted via BC.  The list of IPs can be found below.
- http://kb.worldsecuresystems.com/601/bc_601.html#main_IP_addresses_to_use_setting_up_an_ex ternal_DNS
Kind regards,
-Sidney

Similar Messages

  • Ship To Address Query

    Hi Gurus,
    I am trying to add a oe_order_lines_all table to the following Ship to Address Query but joining the table is giving duplicate results. Could you please let me know the right joins
    select distinct ooh.order_number,hl.address1,hl.address2,hl.address3,hl.city,
    hl.state,hl.postal_code,poh.segment1 po_number,poh.approved_date,
    hpz.party_number,hca.account_number,ool.fulfillment_date,
    ooh.booked_date,ooh.booked_flag,ooh.ship_to_org_id
    from apps.oe_order_headers_all ooh,
    apps.oe_order_lines_all ool,
    apps.hz_cust_site_uses_all hcsu,
    apps.hz_cust_acct_sites_all hcas,
    apps.hz_cust_Accounts_all hca,
    apps.hz_parties hpz,
    apps.hz_party_sites hps,
    apps.hz_locations hl,
    apps.oe_drop_ship_sources odss,
    apps.po_headers_all poh
    where odss.header_id = ooh.header_id
    AND odss.line_id = ool.line_id
    AND odss.po_header_id = poh.po_header_id
    and hcsu.site_use_id = ooh.ship_to_org_id
    AND hca.party_id = hpz.party_id
    and hcas.cust_acct_site_id = hcsu.cust_acct_site_id
    and hca.cust_account_id = hcas.cust_account_id
    and hps.party_site_id = hcas.party_site_id
    and hpz.party_id = hps.party_id
    and hl.location_id = hps.location_id
    Regards

    Hi Sandeep,
    I am not getting any duplicates when i remove ool field from the SELECT statement
    Regards

  • Email address query

    I have 2 email addresses. One is via Telkom the other is [email protected] NOBODY can get this set up on my Blackberry Am on prepaid so can't get Activation P/W. What or how must I do please?

    When you say Activation P/W do you mean it is asking for your Enterprise Activation Password?
    If so it sounds like your account is not properly provisioned for Blackberry data. In order to use the push features of a blackberry you need a blackberry data plan rather than a standard carrier data plan.
    Give your carrier a call and see what options they have.

  • New Address creation on Shipping Page

    Hey All,
    I have a .net user control running on the shipping.aspx page that retrieves the selected address from the drop down list or radio button of addresses in the users account.
    This works great for existing addresses and I can save the info.
    How can my control know what the address ID is when the user adds a new address? I get the order.GetShippingId it always has the value of the last selected address when adding a new address or 0 which is no good.
    Any suggestions on how I can figure out what address ID has been assigned to the new address that was created?

    Hi Curtis,
    Since my previous suggestions haven't panned out, I guess you can try getting it form the account object or go straight to the DB.
    NPBasePage bp = (NPBasePage)Page;
    NPAccount a = new NPAccount(bp.AccountID);
    // get the last address in the collection
    NPAddress address = null;
    if (a.Addresses.Count > 0){
       address = ((NPAddress)a.Addresses[a.Addresses.Count -1]);
    if (address != null){
        int addressid = address.AddressID;
    Note that addresses are not sorted in the NPAddress.Addresses query, so it is possible that SQL Server will not return them in order of AddressID.  If you are worried about this, you can check the ids to make sure you've got the highest.  That will be the one that was just created.
    or you could go straight to the DB:
    NPBasePage bp = (NPBasePage)Page;
    StringBuilder sb = new StringBuilder();
    sb.Append("SELECT TOP 1 AddressID ");
    sb.Append("FROM UsersAccountAddress ");
    sb.Append("WHERE AccountID = @accountid ");
    sb.Append("ORDER BY AddressID DESC");
    DataParameters dp = new DataParameters(1);
    dp.Add(NPDataType.NPInt, "@accountid", bp.AccountID);
    object o = DataFunctions.ExecuteScalar(sb.ToString(), bp.Parameters, bp.ConnectionString);
    if (o != null){
      int addressID = Convert.ToInt32(o);

  • Mapping 3 columns to 3 attributes in the same element

    Hi,
    I have 3 columns which are not in a collection as part of my result set. I need to map these 3 columns to an attribute in my result xsd in the transformer.
    eg on the left I have :
    addrline0, addrline1, addrline2. On the right I have an element called ADDR with an index attribute, so I want the right to display
    <ADDRESS>
    <ADDR index="0">my address1</ADDR>
    <ADDR index="1">my address 2</ADDR>
    <ADDR index="2">my address 3</ADDR>
    </ADDRESS>
    this seems not possible in the transformer out of the box - is there a way I can achieve this ? I know that addrline0 will always map to index 0 and addrline1 always map to index 1 etc.
    thanks

    The way to do it would be:
    Assign the first one normally:
    <assign name="first">
    <copy>
    <from variable="addrlin0" query="pVariable"/>
    <to variable="ADDR" query="/tns:ADDRESS"/>
    </copy>
    </assign>
    then assign the following using :
    <bpelx:assign>
    <bpelx:append>
    <from variable="addrlin1" part="return" query="/pVariable"/>
    <to variable="ADDRESS" query="/tns:ADDRESS"/>
    </bpelx:append>
    </bpelx:assign>
    Instead of append you can also use InsertAfter or InsertBefore.
    hth,
    Mike van Alst

  • Delete a list in one shot

    Hi,
    I'm using Hibernate 3 with Oracle 10, and in my next query I delete a list of objects one by one; I was wondering if it's possible to optimize my delete method so I delete the complete set of objects in one shot instead iterating my list of retrieved objects.
    Please consider that I'm requested to maintain an ORM style so writing a delete sentence is not an option.
    Thanks a lot.
    public void deleteClientOrder(final Address userAddress, final ClientID clientID) throws HibernateException {
    HibernateCommand command = new HibernateCommand() {
    public Object execute(Session hibernateSession) {
    List<String> list = hibernateSession
    .createCriteria(ClientOrder.class)
    .add(eq("userAddress", userAddress))
    .add(eq("clientID", clientID))
    .setProjection(Projections.projectionList()
    .add(Projections.property("id")))
    .setCacheable(false)
    .list();
    for (String persistenID : list) {
    ClientOrder tmp = (ClientOrder) hibernateSession.get(ClientOrder.class, persistenID);
    if (tmp != null) {
    hibernateSession.delete(tmp);
    return null;
    }

    TopLink provides bulk delete operations.
    JPA:
    em.createQuery("DELETE FROM Employee WHERE firstName LIKE 'D%' AND address = :ADDRESS")
         .setParameter("ADDRESS", address)
         .executeUpdate();Native:
    DeleteAllQuery query = new DeleteAllQuery(Employee.class);
    ExpressionBuilder eb = query.getExpressionBuilder();
    Expression fnExp = eb.get("firstName").like("D%");
    Expression aExp = eb.get("address").equal(address);
    query.setSelectionCriteria(fnExp.and(aExp));
    uow.executeQuery(query);Doug

  • Map/Reduce and Affinity

    First of all, let me describe use case.
    Where are two types of objects (and accordingly two distributed caches): Child(cid, pid, cdata1, ....) and Parent(pid, pdata1, ...). Child's key have key association so, child objects stored in the same partition where its parent stored. So, I need to run the query against parents with several constraints applied. These set of constraints contains constraint which is based on data from corresponding child objects. How to do it efficiently without precalculation and putting precalculated value in Parent objects and applying constraint to it?
    Example:
    User(uid, firstname, lastname) and Address(aid, uid, zip) (user can have several addresses)
    query is: select all users which firstname equal to 'John' and have address with zip equal to '65535'
    The second case is pretty the same, but the query is slight different: select all addresses with zip equal to '65535' and which user's firstname equal to 'John'

    Hi,
    I was asking about immutability of fields used to establish the join relationship between the parent and the child and the rest of the attributes in one of the tables.
    But it makes too many restrictions, I believe.
    Ok, in the general case of map reduce you can just do an aggregation and idempotently put the reduced info to a cache in a DIFFERENT cache service from what you aggregating in an idempotent way (always the same data on the same key even for retries), which also means that the granularity of such data must be so that an entry of the reduced data must be reduced from entries only in a single partition of the mapped data if this is not the final reduce step.
    Let's look at an example: you are doing a two step map/reduce.
    First step maps entries like this:
    Mapped data keys are:
    P1K1
    P1K2
    P2K3
    P3K4
    where with the notation P2K3 I mean that Coherence assigned the key to partition 2. This assignment has to do with Coherence's key-partitioning strategy (which is pluggable, by the way), you cannot explicitly decide it on an entry-by-entry basis.
    Let's assume that P1 and P2 are at the time both owned by node X, P3 is owned by node Y.
    When you are doing an aggregation of this cache, it is possible (likely) that your aggregator on node X will get entries for keys P1K1, P1K2, P2K3.
    Your aggregator must create a reduced result for (P1K1 + P1K2) which is a separate from the reduced result entry from P2K3. That result entry must only depend on the data in the entries from which it was reduced respectively (P1K1 + P1K2 or P2K3, but not both) and not on anything else. This is because Coherence may reexecute that
    aggregation later on a node which has only P1 but not P2 if node X died, and the cache might also have one of the reduced results and you would end up either with corrupt results or you would have to write more complex code to cover this case.
    You have to put these RP1K12, RP2K3, RP3K4 reduced entries to a cache separate from the mapped cache so that you are not facing the possibility of deadlocks or thread-starvation in the service of the aggregated cache.
    This unfortunately will mean that the reduced result will likely not be on the same node as the mapped data, and that would mean lower performance compared to if you were able to do this in the same node in case your both caches you want to join together were on the same node.
    Another approach, for affine data is that from the aggregator you locally enqueue the reduced data to a local queue from which its consumer fires off the second step of aggregations to the other cache to be mapped which aggregation holds the first reduced data in its state. You will have to care about duplicate checking of partial reduced data on the final reduce step so each step of your reduced data must carry its source partitions from all preceeding steps.
    I will possibly show an example of this in a couple of days, but I will have to iron out a couple of things, first, like ensuring at-least once guarantees for starting the next step.
    Alternatively you can build something similar with InvocationService which helps a bit by providing an asynchronous invocation possibility.
    Best regards,
    Robert

  • Mail to internet

    Have:
    1. Exchange 2013: mailserver2013 and Exchange 2007: mailserver2007, edgeserver2007
    2. Send connectors on mailserver2013: ...send email through a smart host mailserver2007
    3. different public ip address for mailserver2013 and edgeserver2007
    All work, but i want send mail from mailserver2013 directly (without exchange 2007).
    A try:
    1. create new connector on mailserver2013: ...use standard DNS look-ups (MX record associated with recipient domain)
    2. try send email to internal address - all ok.
    3. try send email from external address - all ok.
    4. try send email to external address - query and don't recive
    5. try send email directly with telnet - all work.
    What i need to check? MX? Log (which and wheare)?
    Thanks.

    Hi,
    Do you mean you cannot send emails to the Internet? Please check whether you can receive emails from Internet.
    Is there any error message or NDR when you fail to send email to Internet? Please collect it and post it here for further analysis. We also can enable
    Protocol logs and
    Connectivity logs to check the Outbound message.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Considering buying a MacBook Pro

    I'm considering buying a MacBook Pro once I get a job, which should be soon, and I was wondering how I can have it connected to the internet with my wireless router. There are two PCs in my house and they will still be in use once I buy one so there will already be a wireless router anyways. I'm not sure if I'm making sense but any help is appreciated.

    Your MBP will be perfectly compatible with your existing network. The MBP will connect to your wireless router, ask it for an IP address (query the DHCP server), and be able to access internet services just as all the other computers on the network. You will even, depending on the setup of your network, be able to share files with the MBP using the shared folder system. The era of Mac incompatibility is long gone.

  • Why is Firefox contacting the Department of Defense through an unknown plugin?

    C:\Documents and Settings\Swerve>netstat -v -b -n
    Active Connections
    Proto Local Address Foreign Address State PID
    TCP 26.36.110.133:4021 64.212.100.19:80 ESTABLISHED 2012
    C:\WINDOWS\system32\WS2_32.dll
    C:\WINDOWS\system32\WININET.dll
    -- unknown component(s) --
    [PSANHost.exe]
    TCP 127.0.0.1:2973 127.0.0.1:2974 ESTABLISHED 5536
    C:\WINDOWS\system32\WS2_32.dll
    C:\Program Files\Mozilla Firefox\nspr4.dll
    C:\Program Files\Mozilla Firefox\xul.dll
    [firefox.exe]
    TCP 127.0.0.1:2974 127.0.0.1:2973 ESTABLISHED 5536
    C:\WINDOWS\system32\mswsock.dll
    C:\WINDOWS\system32\WS2_32.dll
    C:\Program Files\Mozilla Firefox\nspr4.dll
    C:\Program Files\Mozilla Firefox\xul.dll
    [firefox.exe]
    TCP 127.0.0.1:2977 127.0.0.1:2978 ESTABLISHED 5536
    C:\WINDOWS\system32\WS2_32.dll
    C:\Program Files\Mozilla Firefox\nspr4.dll
    C:\Program Files\Mozilla Firefox\xul.dll
    [firefox.exe]
    TCP 127.0.0.1:2978 127.0.0.1:2977 ESTABLISHED 5536
    C:\WINDOWS\system32\mswsock.dll
    C:\WINDOWS\system32\WS2_32.dll
    C:\Program Files\Mozilla Firefox\nspr4.dll
    C:\Program Files\Mozilla Firefox\xul.dll
    [firefox.exe]
    TCP 26.36.110.133:4020 184.24.130.151:80 CLOSE_WAIT 5536
    C:\WINDOWS\system32\mswsock.dll
    C:\WINDOWS\system32\WS2_32.dll
    C:\Program Files\Mozilla Firefox\nspr4.dll
    C:\Program Files\Mozilla Firefox\xul.dll
    C:\WINDOWS\system32\WININET.dll
    -- unknown component(s) --
    [firefox.exe]
    You Searched for: 26.36.110.133
    26.36.110.133
    Record Type: IP Address
    # Query terms are ambiguous. The query is assumed to be:
    # "n 26.36.110.133"
    # Use "?" to get help.
    # The following results may also be obtained via:
    # http://whois.arin.net/rest/nets;q=26.36.110.133?showDetails=true&showARIN=false
    NetRange: 26.0.0.0 - 26.255.255.255
    CIDR: 26.0.0.0/8
    OriginAS:
    NetName: DISANET26
    NetHandle: NET-26-0-0-0-1
    Parent:
    NetType: Direct Allocation
    RegDate: 1995-05-01
    Updated: 2009-06-19
    Ref: http://whois.arin.net/rest/net/NET-26-0-0-0-1
    OrgName: DoD Network Information Center
    OrgId: DNIC
    Address: 3990 E. Broad Street
    City: Columbus
    StateProv: OH
    PostalCode: 43218
    Country: US
    RegDate:
    Updated: 2010-08-25
    Ref: http://whois.arin.net/rest/org/DNIC
    OrgTechHandle: REGIS10-ARIN
    OrgTechName: Registration
    OrgTechPhone: +1-800-365-3642
    OrgTechEmail: [email protected]
    OrgTechRef: http://whois.arin.net/rest/poc/REGIS10-ARIN
    OrgTechHandle: MIL-HSTMST-ARIN
    OrgTechName: Network DoD
    OrgTechPhone: +1-614-692-6337
    OrgTechEmail: [email protected]
    OrgTechRef: http://whois.arin.net/rest/poc/MIL-HSTMST-ARIN

    Guess I'm royally screwed since my Cable Modem is made by Cisco. Anyway, they are using it to play HTML5 videos encoded in H.264 on operating systems that do not have the codec: http://en.wikipedia.org/wiki/OpenH264
    Might look at this thread for how to get rid of it: http://forums.mozillazine.org/viewtopic.php?f=38&t=2888681

  • AD intigrated DNS servers don't look the same but function perfectly, What am I missing?

    I have a fully functional Active Directory network with integrated DNS servers (2). When I look at one of the DNS servers (both 2008R2 Domain Controllers)  under the forward lookup zones I see all of my workstations, servers and other network devices
    as I would expect to see them however when I look at the other DNS server all I see is what appears to be stub zone data.
    On the questionable server I see
    SOA start of authority listing
    Name server  XXXXXXXXX
    Name Server XXXXXXXXX
    and one host(A) record for a server
    But there are no workstation or other servers in my network listed.
    If I query the questionable server it replys with the correct DNS information as though it is resolving the address query but I just see no workstation or server listings under Forward lookup zones.
    I can run dcdiag /test:dns and it all passes with the exception of a few failed external root servers which I see now and then. DNS testing tells me it is all working and I have no errors in my system logs.
    Shouldn't I be seeing an exact copy of DNS records on both servers or did something change?
    All DNS tests I have run tell me everything is well and good but I am not seeing what I think I should be seeing.
    HELP

    Hi,
    If your qeustionable DNS server and the another DNS sever are in the same domain and both of them are the AD integrated zone, we should see the exact copy of DNS records on both servers.
    Please try to trigger the replication of the domain controller then reload and refresh the DNS zone.
    If it doesn't work, please try to create a test record on the questionable server, then check if the record has been replicated to the another server.
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Batch Query with Batch but need address lines split by column

    Hi folks,
    I have the following query I created with the batch number of the sales order:
    SELECT T0.[DocDate] as "Date", T1.[DocNum] as "Sales Order Number",  T0.[CardCode] as "Customer Code", T0.[CardName] as "Customer Name",T1.[Address2], T0.[ItemCode],  T0.[ItemName], T0.[BatchNum], T0.[Quantity], T1.pickrmrk FROM IBT1 T0, ORDR T1 WHERE T0.[BaseNum] = T1.[DocNum] and T1.docstatus = 'O' and T0.WHSCODE = '01' order by T0.BaseNum
    Now I need to split the address by column so need street, block, city, county, country and zipcode fields from CRD1, but would either need the ship to address of the sales order it is selected or even just the default ship to address of the sales order.  In above query T1.[Adress2] is not quite right for our needs, as this file will have to be exported to 3rd party.  So I have gotten this far:
    SELECT T0.[DocDate] as "Date", T1.[DocNum] as "Sales Order Number",  T0.[CardCode] as "Customer Code", T0.[CardName] as "Customer Name",T1.[Address2], T2.[Street], T2.[Street], T2.[Block], T2.[City], T2.[County], T2.[Country], T2.[Zipcode], T0.[ItemCode],  T0.[ItemName], T0.[BatchNum], T0.[Quantity], T1.pickrmrk FROM IBT1 T0, ORDR T1, CRD1 T2 WHERE T0.[BaseNum] = T1.[DocNum] and T1.docstatus = 'O' and T0.WHSCODE = '01' and T0.[CardCode] = T2.[CardCode] and T2.[AdresType] = 'S' order by T0.BaseNum
    but will split into multiples if a business partner have more than one shipping address.
    Can someone please advise on this one?
    Many thanks in advance,

    Thanks Agustin, tried it with RDR12 as the following query:
    SELECT T0.[DocDate] as "Date", T1.[DocNum] as "Sales Order Number",  T0.[CardCode] as "Customer Code", T0.[CardName] as "Customer Name",T1.[Address2], T2.[StreetS], T2.[BlockS], T2.[CityS], T2.[ZipCodeS], T2.[CountyS], T2.[CountryS], T2.[ZipCodeS], T0.[ItemCode],  T0.[ItemName], T0.[BatchNum], T0.[Quantity], T1.pickrmrk FROM IBT1 T0, ORDR T1, RDR12 T2 WHERE T0.[BaseNum] = T1.[DocNum] and T1.docstatus = 'O' and T0.WHSCODE = '01' order by T0.BaseNum
    but has multiple lines for different addresses (and not just shipping addresses of that businss partner sales order).
    Anymore ideas or can you spot error in the query?
    Thanks again,

  • Ip igmp snooping querier on Nexus, what source IP address to use?

    Am looking at a problem with servers in the same vlan across multiple switches that are unable to communicate using multicast. I have found that in the systen I'm to set up I need to apply the ip igmp snooping querier command, in the vlan, but it needs a source IP address.
    Different documents make conflicting recommendations for this address, one suggests that any unused address will do, another suggests to use the IP address that is configured on the SVI for the vlan.
    Which is correct?

    Eventually I had to ask Cisco TAC, the response was that any IP address within the subnet could be used. The recommendation was to allocate an unused address in the vlan subnet for this purpose, use the same address on multiple switches should resiliance be required.

  • CUCM SQL Query - MGCP EPs IP Addresses

    Hello,
    CUCM 9.x.
    Could you please advice me the CLI sql query to get registered MGCP endpoints IP addresses?
    Thank you in advance.

    Hi,
    these IP's aren't stored in the SQL DB.
    Try RISDB:
    admin:show risdb query gateway
    ----------- Gateway Information -----------
    Number of Gateway entries: 412
    #registered, #unregistered, #rejected, StateId, #ExpUnreg
    216, 14, 182, 13605, 0
    Seq#, Gateway Name, IPAddress, IPv6Address, Desription, DChannel #, DChannel Status, Perf Object, Reg Status, Model Type, Http Support, #Reg Attempts, Prod Id, Box Prod Id, RegStatChg TimeStamp
    1, BRI/S0/SU0/[email protected], 10.14.71.44, , BRI/S0/SU0/[email protected], 0, UP, 12, unr, 121, no, 0, 90, 30060, 1425375416
    Regards
    Andre

  • When entering an address, I am always queried to allow forwarding or not. Does that mean I have a key-logger attached to my searches?

    When entering an address, I am always queried to allow forwarding or not. Does that mean I have a key-logger attached to my searches? The message says Firefox prohibited redirection to another page, even when I open my home page. Please advise.

    I would recommend posting in the iTunes forum: https://discussions.apple.com/community/itunes/itunes_for_mac

Maybe you are looking for