Need help to setup iis with iisproxy.dll

I have create an iisproxy.xml and i have this error in the iisproxy.dll when a try to access to the virtual directory of the portal :
18:39:44 Global E-Init   IisProxy Extension 1.6.2.0 initializing.
18:39:48 Global Init   E LoadFromFile(
?\D:\Inetpub\Scripts\IisProxy.xml ): XML Error 0x80070035 at line 0, char 0:
in "(null)"
The network path was not found.
18:39:48 Global E-Init E Failed to load config file '
?\D:\Inetpub\Scripts\IisProxy.xml'.
I have 2 directory in d:\inetpub :
-Scripts with iisproxy.dll iisproxy.xml and iisproxy.pdb
-IisProxy which is the virual folder for accessing to the portal.
On Script i have check this :
Read
Execution permission : Execute
Application pool : DefaultAppPool
On IisProxy i have the same configuration except that
the wildcard application map point to iisproxy.dll
The iisproxy.xml look like this :
  <?xml version="1.0" encoding="utf-8" ?>
<ISAPI-config version="1.6">
  <filter name="IisProxy filter" log-level="3" log-flags="0" debug-flags="0" priority="high" extension-url="/Scripts/IisProxy.dll" authentication="normal" remote-address="skip" />
  <extension name="IisProxy extension" log-level="3" log-flags="0" debug-flags="0" access="filter" />
<mapping name="IisProxy samples" log-level="3" log-flags="0" debug-flags="0" keep-alive="true" use-continue="true" close-socket="true" close-socket-delay="1000" thread-count="100" max-socket-age="37">
<mapping name="ep60sp2">
<source>
  <protocol>http</protocol>
  <prefix>/irj</prefix>
  </source>
<source>
  <protocol>http</protocol>
  <prefix>/logon</prefix>
  </source>
<target>
  <protocol>http</protocol>
  <host>localhost</host>
  <port>50000</port>
  </target>
  </mapping>
  <compress-types min-size="1024">text/html, text/plain</compress-types>
  </mapping>
<config>
<source access="filter">
  <protocol>http</protocol>
  <host>localhost</host>
  <prefix>/IisProxy</prefix>
  </source>
  </config>
  </ISAPI-config>
Using :
Windows 2003
MSXML 3 SP4
IIS 6
EP6SP11
Regards, L.Mouillart

I implemented SSO succesfully with EP 6 SP9 using Windows integrated authentication. Used IISProcy 1.5.0.
It is two step prcoes.
1) Configure ISAPI filter for IRJ
2) Configure WebAS for Logon Module Stack. Create new module called HeaderVariableLoginModule.
Complete following steps.
1) Make sure you have IIS installed. Take a backup before the changes
2) Installl ISAPI filter called IRJ.
3) COpy IISPrxy files into the directory under Inetpub.
4) Map ISAPI filter IRJ to the IISProcy ditrectory.
5) Restart website to test ISAPI filter.
6) Please make sure to add logging for IISProcy filter. This gives very good info.
7) You can check the IisProxy.log file in the directory where you copied the IISProxy files.
8) CHeck and make sure REMOTE_USER is populated in the IisProxy.log file.
Configuration of WebAS server:
1) Create new login module called HeaderVariableLoginModule
2) Add this to the stack called ticket.
3) Change BasicPasswordLoginModule to optional.
Please use following URL for more details.
http://help.sap.com/saphelp_nw04/helpdata/en/d0/a3d940c2653126e10000000a1550b0/frameset.htm
This should fix all your problems. Let me know how it went.
Give me the points.
<?xml version="1.0" encoding="utf-8" ?><!DOCTYPE ISAPI-config[     <!ELEMENT ISAPI-config ( filter, extension, ( mapping | config )* )>     <!ATTLIST ISAPI-config           version CDATA #REQUIRED     >     <!ELEMENT filter (log-path?)>     <!ATTLIST filter           name CDATA #IMPLIED          log-level CDATA "3"          log-flags CDATA "0"          debug-flags CDATA "0"          priority ( high | medium | low ) "high"          extension-url CDATA "/scripts/IisProxy.dll"          authentication ( skip | normal | forward ) "normal"          remote-address ( skip | forward ) "skip"     >     <!ELEMENT extension (          keystore-dir?,          log-path?,          data-path?,          trace-path? )>     <!ATTLIST extension           name CDATA #IMPLIED          log-level CDATA "1"          log-flags CDATA "0"          debug-flags CDATA "0"          access ( filter | direct | both ) "filter"     >          <!ELEMENT keystore-dir (#PCDATA)>     <!ELEMENT log-path (#PCDATA)>     <!ELEMENT data-path (#PCDATA)>     <!ELEMENT trace-path (#PCDATA)>     <!ELEMENT mapping (          source+,          target,          compress-types*,           protocol-header?,          certificate-header?,          cert-chain-header?,          cipher-header?,          keysize-header?,          keystore-path?,          log-path?,          data-path? )>     <!ATTLIST mapping           name CDATA #IMPLIED          log-level CDATA "1"          log-flags CDATA "0"          debug-flags CDATA "0"          keep-alive ( true | false ) "true"          use-continue ( true | false ) "true"          close-socket ( true | false ) "true"          close-socket-delay CDATA "1000"          thread-count CDATA "100"          max-socket-age CDATA "37"     >     <!ELEMENT source (protocol, host?, port?, prefix, new-prefix?)>     <!ATTLIST source          access ( filter | direct | both ) "filter"     >     <!ELEMENT protocol (#PCDATA)>     <!ELEMENT host (#PCDATA)>     <!ELEMENT port (#PCDATA)>     <!ELEMENT prefix (#PCDATA)>     <!ELEMENT new-prefix (#PCDATA)>     <!ELEMENT target (protocol, host, port)>     <!ELEMENT compress-types (#PCDATA)>     <!ATTLIST compress-types           min-size CDATA "1024"     >     <!ELEMENT protocol-header (#PCDATA)>     <!ELEMENT certificate-header (#PCDATA)>     <!ELEMENT cert-chain-header (#PCDATA)>     <!ELEMENT cipher-header (#PCDATA)>     <!ELEMENT keysize-header (#PCDATA)>     <!ELEMENT keystore-path (#PCDATA)>     <!ELEMENT config ( source+ )>]><ISAPI-config version="1.6">     <filter name="IisProxy filter" log-level="3" authentication="forward" />     <extension name="IisProxy extension" />     <mapping name="IisProxy" log-level="3" debug-flags="-1">          <source>               <protocol>http</protocol>               <prefix>/irj/</prefix>          </source>          <source>               <protocol>http</protocol>               <prefix>/logon/</prefix>          </source>          <target>               <protocol>http</protocol>               <host>slcserver.pacificorp.us</host>               <port>50000</port>          </target>               <compress-types>text/html, text/plain</compress-types>     </mapping>     <config>          <source>               <protocol>http</protocol>               <host>localhost</host>               <prefix>/IisProxy/</prefix>          </source>          <source>               <protocol>https</protocol>               <host>localhost</host>               <prefix>/IisProxy/</prefix>          </source>     </config></ISAPI-config>

Similar Messages

  • Need help in setup vpn with IGMP enabled !

    hi all
    i hve cisco 2901 router and i want to setup vpn that allow IGMP ,
    can somebody help me with it or at least sample configuration ?
    can it be done from http gui ? or it is mandatory from cli ?
    regards

    Hello,
    So you plan to send multicast traffic over the tunnel?
    It could be possible to do it via both ways, thing is is harder to get assistance via GUI as for example I have no access to any router. I reply based on commands that I remember so CLI is a must.
    I would recommend using a GRE tunnel to send the Multicast traffic through it
    Looking for some Networking Assistance? 
    Contact me directly at [email protected]
    I will fix your problem ASAP.
    Cheers,
    Julio Carvajal Segura
    http://laguiadelnetworking.com

  • Need help on setup VNC with VZW broadband card on Win XP

    Currently I have 2 PCs on Win XP.  
    1st PC use 3G broadband card at home
    2nd PC use 4G broadband card
    Want to access 1st PC from remote.   Run the tightVNC but it did not work.  Any suggestion or any freeware that might work for this case?
    Thank you

    Here's a link to the forementioned patch:
    http://www.microsoft.com/downloads/details.aspx?familyid=662BB74D-E7C1-48D6-95EE -1459234F4483&displaylang=en
    Hope it helps

  • Need help on struts configuration with ColdFusion 10 using IIS

    We need help on struts configuration with ColdFusion 10 using IIS.
    Earlier we were using ColdFusion 8 with IIS 6 for one of our application.  This application internally calls struts. After upgrading to ColdFusion 10 struts calls are not loading. We get 404 error.
    In ColdFusion 8 struts were configured using  actions extension .do in IIS from this file-
    C:\ColdFusion8\runtime\lib\wsconfig\jrun_iis6.dll.
    But in ColdFusion 10 this file is not present as ColdFusion 10 uses Tomcat in place of Jrun.
    Also there is no information in ColdFusion log file.

    Duane wrote:
    doctormirabilis, Welcome to the discussion area!
    1) how can i configure the time capsule in order to operate as a remote base station synchronizing with the relay using the ethernet port?
    Configure the Time Capsule to act as a bridge (not distributing IP addresses). Also configure the Time Capsule to create an 802.11n wireless network with a unique network name (SSID). That's it.
    2) how can i avoid that my powerbook while accessing my wireless network does connect through the relay station instead of using the time capsule?
    Configure the Time Capsule to use a different network name than the WDS link between the 2 AirPort Express (AX). Configure the PowerBook to use the Time Capsule network.
    There are 2 pieces of information that you should be aware of...
    (1) None of the PowerBooks are capable of 802.11n.
    (2) The WDS link cuts your available bandwidth in half. So the wireless link to your neighbor's has a maximum potential of 27 Mbps.
    Let's for a minute assume that you have a Mac compatible with 802.11n. In your configuration the time you could take advantage of the 802.11n speed is when the Mac is sending/recieving data directly from/to the Time Capsule.
    There would be NO speed increase in Internet access. The speed of Internet access is going to be controlled by the slowest link in the path to the Internet. That is probably the connection to the ISP. The next slowest path is the WDS link to your neighbor's.
    Duane,
    I am in a similar situation, sharing internet with my neighbor. Do you think it would be plausible to hook up a vonage phone adapter to time capsule's ethernet port if time capsule is bridging from my neighbor's router in the configuration you have described? A check of my upload speed shows 1.67Mbps (powerbookG4 w/ airport extreme). Vonage reccommends 90kbps minimum upload speed. Am I going to lose some speed putting the Vonag adapter behind time capsule?
    Thank you

  • I have misplaced my iPod Touch 4th Generation. According to Find my iPhone, it should show up in offline mode. I need help on locating it with a software or some other way. Help?

    I have misplaced my iPod Touch 4th Generation. According to Find my iPhone, it should show up in offline mode. I need help on locating it with a software or some other way. Help?

    There is no other way.
    Sorry

  • Need help re-synching iPods with new computer and getting iTunes to...

    Need help re-synching iPods with new computer and getting iTunes to recognize our iPods (it doesn't even recognize them when they're plugged in).
    Hubby wiped my harddrive for me, so now I need to get everything back in proper places. I'm using windows XP and installed iTunes once again (I believe it's version 8). I also installed all of my iTunes songs. Now I need to know where to go from here. We have 3 iPods and I need to get them all synched once again. I know how to create different libraries for each of us, but I can't figure out how to get our songs back into our iTunes libraries. When I open iTunes and plug in an iPod, iTunes doesn't even show that an iPod is plugged in.
    What do I do now to get each of our iPods synched with our own libraries?
    TIA
    Brandy

    Thanks Zevoneer. The "Restart ipod service" worked and itunes is now recognizing my ipod! Hooray!
    Okay, now how do I synch all of our ipods with our individual libraries (I don't want all of my kids' songs and vice versa)? We each have hundreds of songs on our ipods that we don't want to lose.
    Thanks again!

  • Need help to create report with jpeg/gif image

    Hello,
    I need help with creating a form with a special jpeg/gif seal. I never done this Java. Until now, I created all forms with ansi C++ with HP escape characters to draw lines, boxs, and text. This form will contain boxes which is populated with database information read from a text file.
    Since this form contains a special seal on the upper right, I don't think it can be done with old fashion ansi C++. How can I create a form with Java and create it as a simple exe to just print the form to a specified printer.
    Thanks,
    John

    Hi,
    I am creating a form with boxes (lines and text). What is special about this form is that it has an image jpeg or gif at the top right corner. Is is a state department seal. Up to this form, I had used ansi C++ and print out escape HP character to print out the lines, boxes, and text. I have no idea how to print out the image. I am new to JAVA and only 1 class in it. Is there sample code out there to create this type of form with the image? I need a starting point.
    Thanks,
    John

  • NEED HELP!!! with my Micro Photo

    i need help i was having problems with my computer recognizing my Micro Photo so i was in to recovery menu so then i accidentally hit the reload firmware option and now i cant get it to work it only goes onto the Recovery Menu and i cant get the firmware updater to work and i cnat find no files of the firmware itself...but the weird thing is i can access the Micro Photo itself through my computer and browse it but idk wat to do some plzzz help me

    themagooshow,
    You don't need USB2.0 but you will need to have at least Service Pack for your Windows XP and Windows Media Player 0 installed.
    Jason

  • Need help - I2C write/read with TAOS TCS3414 light sensor using USB-8451

    Hello, I'm new to labview and need help setting up a vi that will allow me to communicate with a digital light sensor (TAOS TCS3414) using a USB-8451. I need to use the sensor to measure light from a light source that I designed and built as part of a project im working on. I've tried looking at several labview I2C exampled but find them to be very confusing. I've used an arduino to interface with the sensor successfully but need to use labview and dont understand how to write the program. The actions are simple; I need initialize the sensor with a simple command and then request data from 8 data registers and then read that data. The data will then be used in further calculations. The portion i need help with is writing and reading from the sensor. I've attached the datasheet for the sensor as a guide. I can also provide the arduino code that i use to read data from the sensor if that would help. 
    Pleae keep in mind that i am completely new to labVIEW. I really do want to learn from this but need quick results so the more help the better. It would greately appreciate any help or explaination. 
    Attachments:
    TCS3414_Datasheet_EN_v1.pdf ‏1806 KB

    Hi Aaron,
    Here you go, this is made with a USB-8452.
    When you run the code tick the power en dac enable box on.
    Maybe you can help me with my problem, I want to use a fiber to sense light from a led.
    Do you use any fiber hardware with the TCS3414?
    gr,
    Attachments:
    TCS3414.vi ‏63 KB

  • Need help in text field with 2D array

    text field with 2D array
    Hi
    I need help to represent (i) in from field and (j) in to field
    I and j are 2D an array indices.
    This code are not complated
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    //declaring class
    public class test3 extends Applet implements ActionListener
    { //declaring the TextField
    private TextField fromField ,toField;
    //declaring an array
    int weight[][];
    int m = 99; // m is infinity
    int N; // Set of Nodes
    int d; // distance
    int i; // source Node
    int j; // destition Node
    //declaring values of text field
    private int from = i; // start Node
    private int to = j; // end node
    public void init()
    setBackground(Color.white);
    setForeground(Color.red);
    //giving labels
    Label TITLE2,TITLE1;
    TITLE1 = new Label("from:");
    add(TITLE1);
    fromField = new TextField(5);
    add(fromField);
    // register listener using void add actionListener
    fromField.addActionListener(this);
    TITLE2 = new Label("to");
    add(TITLE2);
    toField = new TextField(5);
    add(toField);
    // register listener using void add actionListener
    toField.addActionListener(this);
    // event handler methods
    public void actionPerformed(ActionEvent event) {
    //declaring textfield
    from=Integer.parseInt(fromField.getText());
    to=Integer.parseInt(toField.getText());
    weight =new int[7][7];
    weight[1][1] = 0; weight[2][1]= 2;
    weight[1][2]= 2; weight[2][2]= 0;
    weight[1][3]= 5; weight[2][3]= 3;
    weight[1][4]= 1; weight[2][4]= 2;
    weight[1][5]= 99; weight[2][5]= 99;
    weight[1][6]= 99; weight[2][6]= 99;
    weight[3][1]= 5;
    weight[3][2]= 3;
    weight[3][3]= 0;
    weight[3][4]= 3;
    weight[3][5]= 1;
    weight[3][6]= 5;
    for (int i=1; i<7; ++i) {
    for (int j=1; j<7; ++j)

    all your base are belong to us

  • Problem with iisproxy.dll?

    Hi
    I must install iis proxy module, but I don't know where to find iisproxy.dll.(Where from can I download this file ? )
    Thanks for reply.
    Jakub Krecicki

    Hi,
    You can download it from service.sap.com/swdc and do a search for all categories on iisproxy
    Eddy

  • New and need help - drag and drop with dynamic text

    So I'm doing this project and as an animator I'm not familiar with the whole action script side of flash
    Okay so far I've managed to create the whole Drag and Drop feature and it works well, the thing is I want to make it so when you drag in object in the correct spot and new text appears, and I need like six different object with the dynamic text. but I have no idea how to integrated it in my code or where I should start!
    So i based myself on some tutorial so theres some code in there that had dynamic text, but not exactly what i wanted
    Your help would be much appreciated!
    This is my code:
    var counter:Number = 0;
    var startX:Number;
    var startY:Number;
    six_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    six_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    five_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    five_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    four_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    four_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    three_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    three_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    two_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    two_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    one_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    one_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void {
        event.target.startDrag(true);
    reply_txt.text = "";
    event.target.parent.addChild(event.target);
    startX = event.target.x;
    startY = event.target.y;
    function dropIt(event:MouseEvent):void {
        event.target.stopDrag();
    var myTargetName:String = "target" + event.target.name;
    var myTarget:DisplayObject = getChildByName(myTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == myTarget){
        reply_txt.text = "Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    event.target.x = myTarget.x;
    event.target.y = myTarget.y;
    } else {
    reply_txt.text = "Try Again!";
    event.target.x = startX;
    event.target.y = startY;
        if(counter == 6){
            reply_txt.text = "Congrats, you're finished!";
    six_mc.buttonMode = true;
    five_mc.buttonMode = true;
    four_mc.buttonMode = true;
    three_mc.buttonMode = true;
    two_mc.buttonMode = true;
    one_mc.buttonMode = true;

    where you have
    xxx.text = ....
    is where you're assigning text.

  • Need help on ammount formating with num{$z,zzz,zz9.99}

    Hi All
    Need help in formating the amount fields.
    Currently I am using num{$z,zzz,zz9.99} Its working fine for positive ammount value.
    But for negative amount its giving output as $-18,970.50
    Expected out is -$18,970.50
    need '-' sign before $
    Thanks,
    Abhijit

    issue resolved by setting pattern as  = num{z$z,zzz,zz9.99}

  • Need Help ASAP!! with iPod Classic 80GB

    This is my first apple product and it is not giving a good impression. I need help eargently!
    I Sync 2969 songs onto my ipod for first time 2 days ago using latest Itunes it worked great and i was happy just my ipod didnt have all the album art, so the next day i plugged it in and put all the album art to the correct albums which went fine, then i wanted to add another album. I clicked sync to update the library on my ipod and it started transfering at a sluggish speed simular to this 1....2....3....4....5....6 etc it eventually got to 196 out of 1248 and stopped and 2 mins later itunes crashed. so the only way i could remove my ipod was to pull it out without ejecting it i then tried to look for the songs and what do you know it said on my Ipod 0 Music..... I was gob smacked i put it back in, in hope for it to sync again but ever since then it continues to do that, but i can manually transfer max 4 albums by drag and drop, at a time before itunes crashes. I am seriously going to throw it in the bin soon if i cant get it working and i will never ever buy an apple product again, i love the idea of the iPod but there to faffy! compared to a standard MP3 player..
    PLEASE HELP ME i have tried restoring it many times, ive tried resetting it holding menu button and select button. and i have also tried another way were you restard the ipod and during the apple logo you quickly hold play which formats it..
    please help me!! apples help lines are useless!

    You do understand that this is a user-to-user forum? That we're all volunteers? And this is a weekend? You may need to be a bit more patient.
    If I had an answer I would be happy to try to help. When you say you've tried "restoring" it, do you mean that you've hooked it up to your computer and pressed the "Restore" button in iTunes? If not, that's the next thing you should try.
    I know you've tried a few things but it wouldn't hurt to go through the standard trouble shooting steps:
    http://www.apple.com/support/ipod/five_rs/
    Best of luck.

  • Need Help some WPA2 problems with only certain Macs

    I've done some searching on the various forums here but can't quite find something that fits the issues I'm having.
    We've got 4 Macs on a home wireless network. The specific models are:
    iMac 20" Core2Duo
    12" PB 1.33Ghz
    12" iBook 1.2Ghz
    Mac Mini G4 1.42 Ghz
    We use to run WPA on a D-Link router (DI-624) and everyone could connect just fine. Then with 10.4.8 all of the sudden my iMac started to have major issues connecting to the wireless network. I did a bunch of reading and found most people saying it was related to using WPA instead of WPA2.
    So I went ahead and updated my firmware on the router (it now handles WPA2) and am in the process of getting all the computer back online. I've changed both the network name and the passphrase (and am using WPA2 Personal with AES) and have then set up the new network name along with WPA2 Personal and the correct passhphrase as a Preferred Network on all the machines.
    However...
    Only the iMac connects to the new WPA2 network.
    Both laptops and the Mini have an AirPort Extreme card with firmware version 405.1 (3.90.34.0.p18).
    What gives? From what I've read these airport extreme cards should be able to work with WPA2. Oh and all the machines are running 10.4.9.

    No help, but i agree with skullcracker!!! Return it ASAP!! You will thank us for this vital information!!!Message Edited by HaZe303 on 05-4-2006 06:29 AM

Maybe you are looking for

  • Help! I can't download anything from safari on my iPod touch

    Please help me! I am trying to download maps for minecraft pe on my iPod touch and I don't want to download an app like iexplorer, ifile, or anything like that! Is it possible?!? (Note:Your reply can include using a computer for downloading, but I do

  • Photoshop and monitor profile (Samsung SyncMaster 244T with EyeOne Display 2)

    I've just calibrated my Samsung SyncMaster 244T with EyeOne Display 2 and created a monitor profile. Should I use it as the Photoshop working color space now? Thanks.

  • Updating iTunes from 10.1 to 11.whatever. Desperate for help

    I have seriously avoided update for a while now. I guess I still have 10.1 from 2010, and I really want to update it to the newest 11.1 or whatever it is. I tried just redownloading the whole program from online, and it said I need at least 10.5 to u

  • A little help plea

    Hello, I just bought a Vision: M today. Ive been charging it on the USB for about 30 mins and it will not start up. Is this normal for the USB charge out of the box? Or do I have a problem with the unit's Thanks for any help.

  • Easy DMS Roles

    Hi Everybody,               I need the roles for accessing the DMS through Easy DMS. Thanks, Rajesh