Windows 8.1 MDM not responding to first SyncML from MDM server per session

Here is the behaviour which I face after enrolling Windows 8.1
1) Device is enrolled
2) Client initiates the connection with the MDM server defined in provisioning XML during enrollment.
3) MDM Server sends some commands as a SyncML response.
 4) Client doesn't respond to these commands or not sending any SyncML. 
The same is being repeated in all client request. 
Below is the SyncML
for which I am expecting the response from the DM client:
<SyncML xmlns="SYNCML:SYNCML1.2">
    <SyncHdr>
        <VerDTD>1.2</VerDTD>
        <VerProto>DM/1.2</VerProto>
        <SessionID>1</SessionID>
        <MsgID>1</MsgID>
        <Target>
            <LocURI>{DevID}</LocURI>
        </Target>
        <Source>
            <LocURI>https://#####</LocURI>
        </Source>
    </SyncHdr>
    <SyncBody>
        <Status>
            <CmdID>1</CmdID>
            <MsgRef>1</MsgRef>
            <CmdRef>0</CmdRef>
            <Cmd>SyncHdr</Cmd>
            <TargetRef>{DevID}</TargetRef>
            <Data>212</Data>
        </Status>
        <Status>
            <CmdID>2</CmdID>
            <MsgRef>1</MsgRef>
            <CmdRef>2</CmdRef>
            <Cmd>Alert</Cmd>
            <Data>200</Data>
        </Status>
        <Status>
            <CmdID>3</CmdID>
            <MsgRef>1</MsgRef>
            <CmdRef>3</CmdRef>
            <Cmd>Replace</Cmd>
            <TargetRef>./devinf12</TargetRef>
            <Data>200</Data>
        </Status>
        <Get>
            <CmdID>75</CmdID>
            <Item>
                <Target>
                    <LocURI>./DevDetail/SwV</LocURI>
                </Target>
            </Item>
        </Get>
    </SyncBody>
</SyncML>
Here we had tried sending 
 <Target>
            <LocURI>0</LocURI>
        </Target>
But it didn't worked. Thanks in advance.

Thanks Obaid for the information but still my question is not answered. Here are more details about it:
I completed enrollment for a win8.1 device successfully, and got first SyncML message from device, but in the SyncML message,
the the url of mdm server was  http://localhost:8000/handler.ashx as you mentioned, while the uri of device was 0,
actually it should be the device Id. I responded a SyncML message to the device, but got no response from device any more. I’ve checked all registries after enrollment, all registries were well applied. Can give me some hints for such issue.
Looking forward to your reply. Thanks a lot.
The first message got from win8.1 device after enrollment is:
<SyncML xmlns="SYNCML:SYNCML1.2">
    <SyncHdr>
        <VerDTD>1.2</VerDTD>
        <VerProto>DM/1.2</VerProto>
        <SessionID>1</SessionID>
        <MsgID>1</MsgID>
        <Target>
            <LocURI>http://localhost:8000/handler.ashx</LocURI>
        </Target>
        <Source>
            <LocURI>0</LocURI>
        </Source>
    </SyncHdr>
    <SyncBody>
        <Alert>
            <CmdID>2</CmdID>
            <Data>0</Data>
        </Alert>
        <Replace>
            <CmdID>3</CmdID>
            <Item>
                <Source>
                    <LocURI>./DevInfo/DevId</LocURI>
                </Source>
                <Data>16313492</Data>
            </Item>
            <Item>
                <Source>
                    <LocURI>./DevInfo/Man</LocURI>
                </Source>
                <Data>Microsoft Corporation</Data>
            </Item>
            <Item>
                <Source>
                    <LocURI>./DevInfo/Mod</LocURI>
                </Source>
                <Data>Microsoft Windows NT Workstation 6.3 (Tablet Edition)</Data>
            </Item>
            <Item>
                <Source>
                    <LocURI>./DevInfo/DmV</LocURI>
                </Source>
                <Data>1.2</Data>
            </Item>
            <Item>
                <Source>
                    <LocURI>./DevInfo/Lang</LocURI>
                </Source>
                <Data>en-IN</Data>
            </Item>
        </Replace>
        <Final />
    </SyncBody>
</SyncML>
This message sent to device for which no response was received:
<SyncML xmlns="SYNCML:SYNCML1.2">
    <SyncHdr>
        <VerDTD>1.2</VerDTD>
        <VerProto>DM/1.2</VerProto>
        <SessionID>1</SessionID>
        <MsgID>1</MsgID>
        <Target>
            <LocURI>0</LocURI>
        </Target>
        <Source>
            <LocURI>http://localhost:8000/handler.ashx</LocURI>
        </Source>
    </SyncHdr>
    <SyncBody>
        <Status>
            <CmdID>1</CmdID>
            <MsgRef>1</MsgRef>
            <CmdRef>0</CmdRef>
            <Cmd>SyncHdr</Cmd>
            <TargetRef>0</TargetRef>
            <Data>212</Data>
        </Status>
        <Status>
            <CmdID>2</CmdID>
            <MsgRef>1</MsgRef>
            <CmdRef>2</CmdRef>
            <Cmd>Alert</Cmd>
            <Data>200</Data>
        </Status>
        <Status>
            <CmdID>3</CmdID>
            <MsgRef>1</MsgRef>
            <CmdRef>3</CmdRef>
            <Cmd>Replace</Cmd>
            <TargetRef>./devinf12</TargetRef>
            <Data>200</Data>
        </Status>
        <Get>
            <CmdID>75</CmdID>
            <Item>
                <Target>
                    <LocURI>./DevDetail/SwV</LocURI>
                </Target>
            </Item>
        </Get>
    </SyncBody>
</SyncML>

Similar Messages

  • Windows 8.1 MDM not responding to more than one SyncML from MDM server per session

    Here is the behaviour i see, which was not expected by Windows 8.1.
    1) Device is enrolled
    2) Client initiates the connection with the MDM server defined in provisioning XML during enrollment.
    3) MDM Server sends some commands as a SyncML response.
    4) Client accepts the commands and sends Status and results.
    5) Again MDM Server sends some commands as a SyncML response.
    6) Client doesn't respond to these commands or not sending any SyncML. Here is the problem that i am referring to.
    We are capturing the traffic in fiddler and found that device is not sending the next request where we are expecting the status for these commands. 
    The same is being repeated in all the requests client initiates. DM Client responds back only for one syncML sent by the MDM server per session.
    Is this the expected behaviour with Windows 8.1? Or are we doing something wrong to see this behaviour?
    Below is the SyncML for which I am expecting the response from the DM client. (Note: I got the response for the same SyncML in the first connection, but not in the second.)
    <SyncML xml:lang="en" xmlns="syncml:SYNCML1.2">
      <SyncHdr>
        <VerDTD>1.2</VerDTD>
        <VerProto>DM/1.2</VerProto>
        <SessionID>1</SessionID>
        <MsgID>1</MsgID>
        <Target>
          <LocURI>0</LocURI>
        </Target>
        <Source>
          <LocURI>https://####</LocURI>
          <LocName>AfariaWinPhoneProvider</LocName>
        </Source>
        <RespURI>https://####</RespURI>
      </SyncHdr>
      <SyncBody>
        <Status>
          <CmdID>1</CmdID>
          <MsgRef>2</MsgRef>
          <CmdRef>0</CmdRef>
          <Cmd>SyncHdr</Cmd>
          <TargetRef>https://####</TargetRef>
          <SourceRef>0</SourceRef>
          <Data>200</Data>
        </Status>
        <Get>
          <CmdID>2</CmdID>
          <Item>
            <Target>
              <LocURI>./cimv2/Win32_ComputerSystemProduct</LocURI>
            </Target>
          </Item>
        </Get>
        <Final />
      </SyncBody>
    </SyncML>

    Hello Sreekanth,
    I am facing similar issue, here is the behaviour description:
    1) Device is enrolled
    2) Client initiates the connection with the MDM server defined in provisioning XML during enrollment.
    3) MDM Server sends some commands as a SyncML response.
     4) Client doesn't respond to these commands or not sending any SyncML. 
    The same is being repeated in all client request. 
    Below is the SyncML
    for which I am expecting the response from the DM client:
    <SyncML xmlns="SYNCML:SYNCML1.2">
        <SyncHdr>
            <VerDTD>1.2</VerDTD>
            <VerProto>DM/1.2</VerProto>
            <SessionID>1</SessionID>
            <MsgID>1</MsgID>
            <Target>
                <LocURI>9302116</LocURI>
            </Target>
            <Source>
                <LocURI>https://#####</LocURI>
            </Source>
        </SyncHdr>
        <SyncBody>
            <Status>
                <CmdID>1</CmdID>
                <MsgRef>1</MsgRef>
                <CmdRef>0</CmdRef>
                <Cmd>SyncHdr</Cmd>
                <TargetRef>9302116</TargetRef>
                <Data>212</Data>
            </Status>
            <Status>
                <CmdID>2</CmdID>
                <MsgRef>1</MsgRef>
                <CmdRef>2</CmdRef>
                <Cmd>Alert</Cmd>
                <Data>200</Data>
            </Status>
            <Status>
                <CmdID>3</CmdID>
                <MsgRef>1</MsgRef>
                <CmdRef>3</CmdRef>
                <Cmd>Replace</Cmd>
                <TargetRef>./devinf12</TargetRef>
                <Data>200</Data>
            </Status>
            <Get>
                <CmdID>75</CmdID>
                <Item>
                    <Target>
                        <LocURI>./DevDetail/SwV</LocURI>
                    </Target>
                </Item>
            </Get>
        </SyncBody>
    </SyncML>
    Here
    we had tried sending 
     <Target>
                <LocURI>0</LocURI>
            </Target>
    But it didn't worked.

  • Windows 8.1 hyperlinks not responding to touch screen

    I was running with the beta version 3 34. Running on surface pro 2 windows 8.1. Hyperlinks on pages do not respond to touch, however I am able to scroll up and down and do other things. Under mouse control the hyperlinks are slow to respond. I just uninstalled the beta and downloaded the current version of the site. Having the same problem. Explorer works find, both the app and the full version. Firefox was working fine until an update yesterday. Suggestions please.

    Hello, try '''disabling graphics hardware acceleration'''.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    Open Firefox ''Options'' window as follows:
    * Click the menu button [[Image:New Fx Menu]] and select ''Options''
    * In the Firefox Options window, click the ''Advanced'' tab, then select ''General''.
    * In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    * Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Opened the pop up password recovery window and it said not responding and when started responding all my passwords from the laptop and desktop were gone

    I opened the options>>security>>saved passwords pop up and clicked on show passwords and it said *not responding* for a bit and when it started responding my 100+ passwords and user names were all gone and the window was totally clear....any idea how to recover all those passwords?

    You need a backup copy or previous versions of the key3.db and signons.sqlite files to restore the passwords stored via the Password Manager.
    *http://windows.microsoft.com/en-US/windows-vista/Previous-versions-of-files-frequently-asked-questions
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Finder opened multiple windows and now will not respond.

    I was importing music from back up disks onto my new iMac and when I clicked into a folder in my iTunes Music folder finder opened all the band's (maybe 30 total) folders and now Finder is not responding at all. I have tried a relaunch, I have tried force quit, I have even hard restarted using the power on/off button as choosing power down from the apple menu is not working. I can not access the library folder to make any changes to files located within it. I'm unsure of where else to go from here. It's been almost 5 years since I've owned a computer at all and I've never encountered this issue.

    Hi Colin,  I was hopeful this might work, but no joy at all.  Tried it several times, including after a restart.  Still the same problem.  I get window with 2 options, Restore windows/Do not restore windows.  Irrespective of which one I choose, mail tries to open properly and then crashes.  I see my mail window, with all my folders, it attempts to restore the mobileme folder, then crashes.  Thanks for the suggestion anyway.  I have moved across to Postbox until a fix is found.

  • Just downloaded a new version of itunes on windows 7 and is not responding

    Just downloaded a new version of itunes on windows 7 and is not responding

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Lion Clients 10.7.4 show network accounts are unavailable and server is not responding when binding to Snow Leopard server 10.6.8

    Hello,
    I am running Snow Leopard Server 10.6.8 and my clients are Lion 10.7.4.  While testing I had no issues binding 10.7.4 to our 10.6.8 server's OD.  I created a 10.7.4 image to push to all of our machines and in the beginning of last week I was able to push the image and get the machines to bind with OD and apply preferences on these machines through workgroup manager.  Towards the end of the week though this stopped working.  Now any time I bind a 10.7.4 client to OD it allows me to perform an authenticated bind and the machine shows up in workgroup manager but immediatley after binding the client the status jelly next to the OD server in the directory list is red and says "This server is not responding".  If I reboot the client I get a notification that "Network accounts are unavailable" at the login screen.  My preferences from workgroup manager are also not applying, which is my main concern because without workgroup manager my mac server is somewhat pointless as we use it for very little else. 
    I've since tried to bind a snow leopard machine (10.6.8) and this still is working with a green status jelly.  I've also built a lion machine from scratch, updated to the 10.7.4 combined update and am still getting the same issue where it shows the server is not responding when binding to OD.  I then applied the subsiquent OS update after the 10.7.4 combined update but the problem still persists.
    Is anyone else having this issue?  Any help would help me keep my sanity.
    Thanks,
    Dane

    Have you had any luck finding a solution to this?  The only thing I have found was to unbind and then bind without authentication.  Any help with progress on your end would be appreciated!
    Nick.

  • Just resolved Back to my Mac issue called Apple Suppport in the UK and they were really helpful if the error DNS server not responding the problem is with Apple server not your server ( I had tried to reboot by router, restart my laptop etc.

    I was having problem with my Back to my Mac as message was saying DNS Server not responding . I tried to turn my WIFI off, then my router  to no avail. Decided to call Apple Support line in the UK . I got a call back immediatly and great support.  The advisor took over my screen and we check that my laptop was synchronising   with I phots and it was.  The adviser also told that when the message DNS server is not responding next to Back to my Mac is has to do with Apple Server not mine , router etc... Hope this save others some time! Rather than spending time truining on and off changing IP address etc...

    Thanks for your thorough post. I too need to use BTMM on almost a daily basis for my job, and it has fallen short countlness times. I too have taken great pains to check all of the typical trouble shooting steps within iCloud and in the Apple keychain on each Mac etc, but after the latest rounds of system updates from Apple a few weeks ago to Mountain Lion, BTMM on one of my Macs is completely broken and unusable. I would concur that if you need remote access for "real" mission critical use, just bite the bullet and pay for a service like LogMeIn. You won't regret it and you will get real software support.

  • Not responding when download apps from ovi store o...

    When i go to ovi store on my 5230 to download apps, most of the time when i click on download, it's not responding, anyone know why?

    N900lover wrote:
    English translation = Even if I don't restore my settings I can't manage to connect to the Ovi store.  I installed the update using the Nokia software updater three times. Do you have a solution?  Thank you.
    I'm guessing that it is a regional issue.. try opening store.ovi.com in the browser.. I've not tried the ovi icon recently, but it didn't work a few days ago where as opening that link in the browser did work
    N900lover, if you could do the honours

  • HP C6180 not responding with wireless print from Mac OS X 10.9

    My Printer does not work with wireless printing from my Macbook Air OS X 10.9
    I tried all the normal stuff I can find.
    The text that is there is: The Printer is not responding.

    Hi XavierMaassen,
    I understand you have a Photosmart C6180 that you're having issues using in Mac 10.9. I'm sorry to hear this has been happening, but I will certainly do my best to assist you.
    I'm wondering how you installed the printer. If you had it installed prior to upgrading to 10.9 that could be part of the problem. There are currently no HP drivers available for this printer for 10.9, so you need to uninstall the HP software and install the printer via the Apple updates. Once you do that you should be able to print normally and scan using 3 different methods.
    Hope this helps, have a great day!!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • Not able to get file from application server with read dataset

    Hi,
    Firstly i download a file from application server from read data set and then i sent this file as attachment. But problem is that i am able to send .jpg .bmp file but i am not able to send .pdf or .doc file so what can i do for that. ?
    My code is like below...
      DATA : PATH TYPE STRING.
      DATA: E_FILE LIKE RLGRAP-FILENAME.
      CONCATENATE '/tmp/'  NAME_WITH_EXT INTO E_FILE SEPARATED BY SPACE.
      CONDENSE E_FILE NO-GAPS.
      IF EXTENSION = 'TXT'.
        OPEN DATASET E_FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT WITH WINDOWS LINEFEED . " MESSAGE MSG.
        IF SY-SUBRC <> 0.
       WRITE: SY-SUBRC, MSG, ' LIKE ', C_FNAME.
        ELSE.
          WHILE SY-SUBRC = 0.
            READ DATASET E_FILE INTO WA_C.
            IF SY-SUBRC <> 0.
              EXIT.
            ENDIF.
            APPEND WA_C TO IT_C.
          ENDWHILE.
          CLOSE DATASET E_FILE.
        ENDIF.
      ELSE.
        OPEN DATASET E_FILE FOR INPUT IN BINARY MODE. " ENCODING DEFAULT. "    INPUT IN  BINARY MODE . " TEXT MODE ENCODING   NON-UNICODE.
        IF SY-SUBRC = 0.
          DO .
            READ DATASET E_FILE INTO GS_PDF_TAB.
            IF SY-SUBRC = 0.
              APPEND GS_PDF_TAB TO GT_PDF_TAB.
            ELSE.
              EXIT.
            ENDIF.
          ENDDO.
          CLOSE DATASET E_FILE.
        ENDIF.
      ENDIF.
    Regards,
    Gurprit Bhatia

    delete this line DEFAULT WITH WINDOWS LINEFEED  and check this..

  • Windows XP, Java and long filenames when running application from a server

    Hi,
    I've been struggling with this for a while, can't understand why Windows XP seems to give me 8.3-filenames with ~ (tilde) instead of the full file- and path-names.
    I've added a key in the registry, when a user right-clicks on a txt-file they get an option to open the file using my program. The key maps to:
    javaw.exe -jar "\\networkdrive\automapper.jar"  "\\networkdrive\Automapper.cfg" "%1"This basically means that javaw will be used to execute my automapper.jar and the automapper.cfg and filename/path will be added as parameters to my java-program. Notice that my jar-file resides on a network-server and not on my local machine. This works just fine though.
    However, when I read the supplied filename in my java-code it is always in Windows 8.3-format using ~ to represent the missing chars. This is not a huge problem since everything works. The problem is that I convert the file and save it with a different file-ending, but with the same name (before the suffix). This means that the user runs my program on:
    this_is_a_long_file_name.txtand ends up with his original file and my new file named something like:
    this_i~1.qqqwhich admittedly looks ugly.
    If I run the application locally on my machine everything works fine and the long file names seems to handled correctly. The problem only arises because the program is run from a server. This is a microsoft network, I do not know anything else about it, sorry.
    Now I know, this is not strictly java-related, but I'm running out of options here and thought that perhaps one of you have solved this before. An option would be that I myself convert the short-filename to a long one, if that is possible? Any pointers would be greatly appreciated! If you don't know the answer, but know a good place to ask I would appreciate that as well.

    It seems to me that if a File (in the java-sense) is created with a 8.3-path it retains that path, meaning that this code will always give the same result in both printLn-statements:
       System.out.Println("input: " + args[2]);
       File file = new File(args[2]
       System.out.Println("output: " + file.getName());will give the output
    input: very_long_file_name_here.txt
    output: very_long_file_name_here.txt
    or
    input: very_~1.txt
    output: very_~1.txt
    regards,
    martin

  • Not getting all e-mails from Exchange server w/ OS Mavericks

    Hello all,
    After I installed OS Mavericks and opened up the mail app, only a small portion of my inbox (and other folders) populates in the app. Instead of all 50 e-mails in my inbox it is only showing 8. Looking back at my inbox on my iPhone and it still has all my e-mails. Is there anyway to fix this?
    Thanks..

    I'm having the same issue and have tried deleting the account and adding again but I only have emails that came in yesterday after Mavericks installed. My thousands of emails from the server did not load. They are everywhere else but on the updated Mavericks computer.

  • Not able to access HTMLDB from another server running HTTP_SERVER

    Hi
    I had htmldb installed and running from dataabse server but then I moved APACHE server to another server. Here Apache is running from OEM 10g grid control
    I set up dad.conf and marvel.conf files for connection to htmldb server. Also I created marvel directory and copied images diretory from htmldb server to this Apache server marver directory. It did not work
    Here' the details from dads.conf file
    Alias /i/ "/opt/oracle/product/10.2.0_oem/oms10g/Apache/marvel/images/"
    <Location /pls/htmldb>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername htmldb_public_user
    PlsqlDatabasePassword @BfNvzBYH8alwoDCIEVVlTPg=
    PlsqlDatabaseConnectString ods1_dev.whq.ual.com TNSFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
    PlsqlAuthenticationMode Basic
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_manager.process_download
    PlsqlPathAliasProcedure htmldb.wwpth_api_alias.process_download
    PlsqlDefaultPage htmldb
    </Location>
    Also I see following errors in Apache Log
    File does not exist : /opt/oracle/product/10.2.0_oem/oms10g/Apache/Apache/htdocs/portal/pls/htmldb
    Please help.
    Thanks
    Sunil

    In httpd.conf I have oracle_apache.conf file included
    In oracle_apche.conf I have <oracle home>/Apache/modplsql/conf/plsql.conf included
    And in plsql.conf I have
    <oracle home>/Apache/modplsql/conf/dads.conf file included.
    http_server is running and did not give any errors during startup

  • DHCP does not load as a service from the Server Admin

    Dear friends,
    I have faced the following problem.
    The task is to do internet sharing among other services on mac mini server.
    Started with the clean install of OS X Lion, upgraded it to Server and then installed all updates.
    USB Ethernet (en2) is looking into ISP with static IP, Ethernet (en0) is LAN.
    Since I need specific address scope for the LAN I have actived DHCP from the Server admin and configured it to provide
    192.168.8.11 to 192.168.8.200 as an adress scope, mask 255.255.0.0 on the interface en0.
    Everything was working just fine for a couple of minutes and the LAN clients got their  IP addresses from the DHCP scope. In a very short time Server Admin popped up and error message:
    Try to refresh the view (aserver.local./Server). (kReceivedUnknownError)
    Niether grey nor green bubble apears near the DHCP on the service list.
    I keep recieving this error for all other services until I manage to disable dhcp on the services tab of server settings. After all I cant make it run again. I tried to restart dhcp from the terminal but it does not help. "sudo serveradmin fullstatus dhcp shows nothing".
    Do you have any ideas how to make it work?

    So you're not using NAT between the two? Even though you're using 255.255.0.0 so both network can talk (basically you have a class B network setup using Class C ip addresses), your network masks for each should be something like 255.255.255.xxx depending on how many subnets you need.  NAT or Network Address Translation should be running and that will provide the interconnectivity between the two.  
    Your DHCP server should be set up only with 255.255.255.0 for the DHCP service since you are only serving IP addresses to the one subnet 192.168.8.x. Your starting address in DHCP setup is 192.168.8.11 ending address 192.168.8.200 and the netmask should be 255.255.255.0.  

Maybe you are looking for

  • Implementing logout. Single Sing Off

    Hi I have developed an application using SSO. These are the steps I followed: 1.     In the Orion-application.xml: <jazn provider="LDAP" location="ldap://hn-apli-dev.bcie.org:389" default-realm="jazn.com"> <jazn-web-app auth-method="SSO"/> </jazn> 2.

  • Can I use my 24 inch' 2007 imac as an external monitor for my PC

    can I use my 24 inch' 2007 imac as an external monitor for my PC

  • Is it possible to exclude white space from creating records using UNPIVOT

    SELECT         FROM             Table1             UNPIVOT EXCLUDE NULLS                 NEW_COLUMN                 FOR COLUMN_NAME IN                    FIELD1, field2, --------------FIELD20             )I don't want to create row for whitespace (em

  • Best Way to Export After Effects File and Save Transparency

    Hi all- A pretty simple question. I need to export a file from After Effects and keep the alpha channel so I can superimpose it on some video in FCE. What is the best way to export it? I recall hearing people mention that the Animation Codec with "Mi

  • SDB tree view in SAP ERP 4.7

    Hello I have the view for my symptoms and solutions in Solution Database in tcode IS02. Is there any way to display this hierarchy in tree? any tcode? Regards Radek